1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

Update UI per Options page redesign

This commit is contained in:
Thomas Rittson
2021-05-14 11:23:46 +10:00
parent 13b0e09c2c
commit 998f633210
3 changed files with 18 additions and 18 deletions

View File

@@ -77,21 +77,6 @@
@include themify($themes) {
color: themed('mutedColor');
}
.sub-option {
margin-right: 5px;
margin-top: 10px;
display: flex;
justify-content: space-between;
select {
border: 1px solid #000000;
border-radius: $border-radius;
@include themify($themes) {
border-color: themed('boxBackgroundColor');
}
}
}
}
&.list {

View File

@@ -173,5 +173,17 @@
{{'enableAutoTotpCopyOnAutoFillDesc' | i18n}}
</div>
</div>
<div class="box">
<div class="box-content">
<div class="box-content-row" appBoxRow>
<label for="defaultAutofill">{{'defaultAutoFillOnPageLoad' | i18n}}</label>
<select id="defaultAutofill" name="DefaultAutofill" [(ngModel)]="autoFillOnPageLoadDefault"
(change)="updateAutoFillOnPageLoadDefault()" [disabled]="!enableAutoFillOnPageLoad">
<option *ngFor="let o of autoFillOnPageLoadOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
</div>
</div>
<div class="box-footer">{{'defaultAutoFillOnPageLoadDesc' | i18n}}</div>
</div>
</ng-container>
</content>