mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 06:03:40 +00:00
* add appearance option to disable animations * add check to only show the form after it's populated to avoid flash of inaccurate values * switch to form loading while waiting for form values
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<popup-page [loading]="formLoading">
|
|
<popup-header slot="header" [pageTitle]="'appearance' | i18n" showBackButton>
|
|
<ng-container slot="end">
|
|
<app-pop-out></app-pop-out>
|
|
</ng-container>
|
|
</popup-header>
|
|
|
|
<form [formGroup]="appearanceForm">
|
|
<bit-card>
|
|
<bit-form-field>
|
|
<bit-label>{{ "theme" | i18n }}</bit-label>
|
|
<bit-select formControlName="theme">
|
|
<bit-option
|
|
*ngFor="let o of themeOptions"
|
|
[value]="o.value"
|
|
[label]="o.name"
|
|
></bit-option>
|
|
</bit-select>
|
|
</bit-form-field>
|
|
|
|
<bit-form-control>
|
|
<input bitCheckbox formControlName="enableBadgeCounter" type="checkbox" />
|
|
<bit-label>{{ "showNumberOfAutofillSuggestions" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
|
|
<bit-form-control>
|
|
<input bitCheckbox formControlName="enableFavicon" type="checkbox" />
|
|
<bit-label>{{ "enableFavicon" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
|
|
<bit-form-control disableMargin>
|
|
<input bitCheckbox formControlName="enableAnimations" type="checkbox" />
|
|
<bit-label>{{ "showAnimations" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
</bit-card>
|
|
</form>
|
|
</popup-page>
|