mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Added UI scaling tickbox to options menu
This commit is contained in:
parent
ca771eb04c
commit
eb5ad7c6dc
@ -76,6 +76,16 @@
|
||||
</a>
|
||||
</div>
|
||||
<small class="form-text text-muted">{{'enableGravatarsDesc' | i18n}}</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="enableUIScaling" name="enableUIScaling"
|
||||
[(ngModel)]="enableUIScaling">
|
||||
<label class="form-check-label" for="enableUIScaling">
|
||||
{{'enableUIScaling' | i18n}}
|
||||
</label>
|
||||
</div>
|
||||
<small class="form-text text-muted">{{'enableUIScalingDesc' | i18n}}</small>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{'save' | i18n}}
|
||||
|
@ -1044,6 +1044,13 @@
|
||||
"enableGravatarsDesc": {
|
||||
"message": "Use avatar images loaded from gravatar.com."
|
||||
},
|
||||
"enableUIScaling": {
|
||||
"message": "Enable UI Scaling",
|
||||
"description": "Allows scaling the web vault UI's width"
|
||||
},
|
||||
"enableUIScalingDesc": {
|
||||
"message": "Allows expanding the web vault view to fill the full width of the browser window."
|
||||
},
|
||||
"default": {
|
||||
"message": "Default"
|
||||
},
|
||||
|
@ -1044,6 +1044,13 @@
|
||||
"enableGravatarsDesc": {
|
||||
"message": "Use avatar images loaded from gravatar.com."
|
||||
},
|
||||
"enableUIScaling": {
|
||||
"message": "Enable UI Scaling",
|
||||
"description": "Allows scaling the web vault UI's width"
|
||||
},
|
||||
"enableUIScalingDesc": {
|
||||
"message": "Allows expanding the web vault view to fill the full width of the browser window."
|
||||
},
|
||||
"default": {
|
||||
"message": "Default"
|
||||
},
|
||||
|
@ -192,6 +192,10 @@ input, select, textarea {
|
||||
max-width: none !important;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
&.full-width {
|
||||
min-width: 980px;
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
.page-content {
|
||||
|
Loading…
Reference in New Issue
Block a user