mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
[PM-26984] Use medium instead of semibold or bold (#17191)
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
*ngIf="!hasCustomFields && !isPartialEdit && allowNewField"
|
||||
(click)="addCustomField()"
|
||||
>
|
||||
<i class="bwi bwi-plus tw-font-bold" aria-hidden="true"></i>
|
||||
<i class="bwi bwi-plus tw-font-medium" aria-hidden="true"></i>
|
||||
{{ "addField" | i18n }}
|
||||
</button>
|
||||
</bit-card>
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
(click)="addUri({ uri: null, matchDetection: null }, true)"
|
||||
*ngIf="autofillOptionsForm.enabled"
|
||||
>
|
||||
<i class="bwi bwi-plus tw-font-bold" aria-hidden="true"></i>
|
||||
<i class="bwi bwi-plus tw-font-medium" aria-hidden="true"></i>
|
||||
{{ "addWebsite" | i18n }}
|
||||
</button>
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@
|
||||
data-testid="add-field-button"
|
||||
*ngIf="!isPartialEdit && !parentFormDisabled"
|
||||
>
|
||||
<i class="bwi bwi-plus tw-font-bold" aria-hidden="true"></i>
|
||||
<i class="bwi bwi-plus tw-font-medium" aria-hidden="true"></i>
|
||||
{{ "addField" | i18n }}
|
||||
</button>
|
||||
</bit-card>
|
||||
|
||||
@@ -72,7 +72,7 @@ export class NewItemNudgeComponent {
|
||||
|
||||
this.dismissalNudgeType = NudgeType.NewSshItemStatus;
|
||||
this.nudgeTitle = this.i18nService.t("newSshNudgeTitle");
|
||||
this.nudgeBody = `${sshPartOne} <a href="https://bitwarden.com/help/ssh-agent" class="tw-text-primary-600 tw-font-bold" target="_blank">${sshPartTwo}</a>`;
|
||||
this.nudgeBody = `${sshPartOne} <a href="https://bitwarden.com/help/ssh-agent" class="tw-text-primary-600 tw-font-medium" target="_blank">${sshPartTwo}</a>`;
|
||||
return NudgeType.NewSshItemStatus;
|
||||
}
|
||||
default:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
</bit-section-header>
|
||||
<bit-card>
|
||||
<p class="tw-mb-1 tw-text-xs tw-text-muted tw-select-all">
|
||||
<span class="tw-font-bold">{{ "lastEdited" | i18n }}:</span>
|
||||
<span class="tw-font-medium">{{ "lastEdited" | i18n }}:</span>
|
||||
{{ cipher.revisionDate | date: "medium" }}
|
||||
</p>
|
||||
<p
|
||||
@@ -14,7 +14,7 @@
|
||||
'tw-mb-0': !cipher.hasPasswordHistory,
|
||||
}"
|
||||
>
|
||||
<span class="tw-font-bold">{{ "dateCreated" | i18n }}:</span>
|
||||
<span class="tw-font-medium">{{ "dateCreated" | i18n }}:</span>
|
||||
{{ cipher.creationDate | date: "medium" }}
|
||||
</p>
|
||||
<p
|
||||
@@ -22,7 +22,7 @@
|
||||
class="tw-text-xs tw-text-muted tw-select-all"
|
||||
[ngClass]="{ 'tw-mb-3': cipher.hasPasswordHistory }"
|
||||
>
|
||||
<span class="tw-font-bold">{{ "datePasswordUpdated" | i18n }}:</span>
|
||||
<span class="tw-font-medium">{{ "datePasswordUpdated" | i18n }}:</span>
|
||||
{{ cipher.passwordRevisionDisplayDate | date: "medium" }}
|
||||
</p>
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user