bitwarden-estensione-browser/src/app/settings/options.component.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

146 lines
4.5 KiB
HTML
Raw Normal View History

2018-06-25 22:44:06 +02:00
<div class="page-header">
<h1>{{ "options" | i18n }}</h1>
</div>
2018-06-25 23:17:55 +02:00
<p>{{ "optionsDesc" | i18n }}</p>
2018-06-26 15:04:12 +02:00
<form (ngSubmit)="submit()" ngNativeValidate>
<div class="row">
<div class="col-6">
2021-09-10 15:27:00 +02:00
<app-vault-timeout-input
[vaultTimeouts]="vaultTimeouts"
[formControl]="vaultTimeout"
ngDefaultControl
>
</app-vault-timeout-input>
</div>
2021-12-17 15:57:11 +01:00
</div>
<div class="form-group">
<label>{{ "vaultTimeoutAction" | i18n }}</label>
<div class="form-check form-check-block">
<input
class="form-check-input"
type="radio"
name="vaultTimeoutAction"
id="vaultTimeoutActionLock"
value="lock"
[(ngModel)]="vaultTimeoutAction"
/>
<label class="form-check-label" for="vaultTimeoutActionLock">
{{ "lock" | i18n }}
<small>{{ "vaultTimeoutActionLockDesc" | i18n }}</small>
</label>
</div>
2018-06-26 15:04:12 +02:00
<div class="form-check mt-2 form-check-block">
2018-07-19 19:56:44 +02:00
<input
2019-02-21 22:50:37 +01:00
class="form-check-input"
type="radio"
name="vaultTimeoutAction"
id="vaultTimeoutActionLogOut"
2019-02-21 22:50:37 +01:00
value="logOut"
[(ngModel)]="vaultTimeoutAction"
2019-02-21 22:50:37 +01:00
(ngModelChange)="vaultTimeoutActionChanged($event)"
2018-07-19 19:56:44 +02:00
/>
2018-06-26 15:04:12 +02:00
<label class="form-check-label" for="vaultTimeoutActionLogOut">
{{ "logOut" | i18n }}
<small>{{ "vaultTimeoutActionLogOutDesc" | i18n }}</small>
2018-06-25 22:44:06 +02:00
</label>
</div>
2021-12-17 15:57:11 +01:00
</div>
2018-06-26 15:04:12 +02:00
<div class="row">
<div class="col-6">
<div class="form-group">
<div class="d-flex">
<label for="locale">{{ "language" | i18n }}</label>
2021-12-17 15:57:11 +01:00
<a
2018-06-26 15:04:12 +02:00
class="ml-auto"
2019-02-21 22:50:37 +01:00
href="https://help.bitwarden.com/article/localization/"
target="_blank"
rel="noopener"
2019-10-11 16:35:24 +02:00
appA11yTitle="{{ 'learnMore' | i18n }}"
>
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
2018-07-19 19:56:44 +02:00
</a>
2018-06-26 15:04:12 +02:00
</div>
<select id="locale" name="Locale" [(ngModel)]="locale" class="form-control">
<option *ngFor="let o of localeOptions" [ngValue]="o.value">{{ o.name }}</option>
</select>
<small class="form-text text-muted">{{ "languageDesc" | i18n }}</small>
</div>
2018-06-25 22:44:06 +02:00
</div>
2021-12-17 15:57:11 +01:00
</div>
2018-07-31 05:52:04 +02:00
<div class="form-group">
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input
class="form-check-input"
type="checkbox"
id="disableIcons"
name="DisableIcons"
[(ngModel)]="disableIcons"
/>
2018-07-31 06:02:09 +02:00
<label class="form-check-label" for="disableIcons">
{{ "disableIcons" | i18n }}
2018-07-31 05:52:04 +02:00
</label>
2019-10-11 16:35:24 +02:00
<a
href="https://help.bitwarden.com/article/website-icons/"
target="_blank"
rel="noopener"
appA11yTitle="{{ 'learnMore' | i18n }}"
>
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
2018-07-31 05:52:04 +02:00
</a>
</div>
<small class="form-text text-muted">{{ "disableIconsDesc" | i18n }}</small>
2021-12-17 15:57:11 +01:00
</div>
Dark Theme (#1017) * Stylesheets * Theme Configuration * Options Area * swal2 style * Icon styling * Fix theme not saving * Update English * Update messages.json * dropdown and login logo * btn-link and totp fix * Organisation Styling * Update webauthn-fallback.ts * Fix contrast issues * Add Paypal Container and Loading svg file * Password Generator contrast fix * Dark Mode Fix buttons and foreground * Fix button hover * Fix Styles after rebase * Add hover on nav dropdown-item * Disable Theme Preview * Options Fix for Default Theme Changes * Updated Colour Scheme * Toast fix * Button and Text Styling * Options Update and Messages Fix * Added Search Icon and Fixed Callout styling * Add theme styling to Stripe * Refactor logic for setting color * Reorder logic to avoid race condition * PayPal Loading and Misc Fix * text-state bug fix * Badge Colour Fix * Remove PayPal Tagline The colour cannot be styled so it's not visible on a dark theme * Adding the Styling from #1131 * Update to New Design * Form and Nav restyle * Modal Opacity and Callout * Nav Colours * Missing Borders * Light theme fix * Improved border for listgroup * Change Org Nav Colour * Save theme to localStorage for persistence * Undo change to Wired image * !Important removal and tweaks * Fix regression with navbar * Light theme by default * Refactor to use getEffectiveTheme * Refactor theme constants to use enum * Set theme in index.html before app loads * Use scss selector to set logo image * Export Sass to TS * Update jslib Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
2021-09-30 00:06:20 +02:00
<div class="form-group">
<div class="form-check">
2021-12-17 15:57:11 +01:00
<input
class="form-check-input"
type="checkbox"
id="enableGravatars"
2018-07-31 06:02:09 +02:00
name="enableGravatars"
[(ngModel)]="enableGravatars"
2021-12-17 15:57:11 +01:00
/>
<label class="form-check-label" for="enableGravatars">
2018-07-31 06:02:09 +02:00
{{ "enableGravatars" | i18n }}
2021-12-17 15:57:11 +01:00
</label>
<a
href="https://gravatar.com/"
2019-02-21 22:50:37 +01:00
target="_blank"
2019-10-11 16:35:24 +02:00
rel="noopener"
appA11yTitle="{{ 'learnMore' | i18n }}"
2021-12-17 15:57:11 +01:00
>
2019-10-11 16:35:24 +02:00
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
2021-12-17 15:57:11 +01:00
</a>
2018-07-31 05:52:04 +02:00
</div>
Dark Theme (#1017) * Stylesheets * Theme Configuration * Options Area * swal2 style * Icon styling * Fix theme not saving * Update English * Update messages.json * dropdown and login logo * btn-link and totp fix * Organisation Styling * Update webauthn-fallback.ts * Fix contrast issues * Add Paypal Container and Loading svg file * Password Generator contrast fix * Dark Mode Fix buttons and foreground * Fix button hover * Fix Styles after rebase * Add hover on nav dropdown-item * Disable Theme Preview * Options Fix for Default Theme Changes * Updated Colour Scheme * Toast fix * Button and Text Styling * Options Update and Messages Fix * Added Search Icon and Fixed Callout styling * Add theme styling to Stripe * Refactor logic for setting color * Reorder logic to avoid race condition * PayPal Loading and Misc Fix * text-state bug fix * Badge Colour Fix * Remove PayPal Tagline The colour cannot be styled so it's not visible on a dark theme * Adding the Styling from #1131 * Update to New Design * Form and Nav restyle * Modal Opacity and Callout * Nav Colours * Missing Borders * Light theme fix * Improved border for listgroup * Change Org Nav Colour * Save theme to localStorage for persistence * Undo change to Wired image * !Important removal and tweaks * Fix regression with navbar * Light theme by default * Refactor to use getEffectiveTheme * Refactor theme constants to use enum * Set theme in index.html before app loads * Use scss selector to set logo image * Export Sass to TS * Update jslib Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
2021-09-30 00:06:20 +02:00
<small class="form-text text-muted">{{ "enableGravatarsDesc" | i18n }}</small>
</div>
<div class="form-group">
<div class="form-check">
2021-12-17 15:57:11 +01:00
<input
class="form-check-input"
type="checkbox"
id="enableFullWidth"
name="enableFullWidth"
[(ngModel)]="enableFullWidth"
2021-12-17 15:57:11 +01:00
/>
<label class="form-check-label" for="enableFullWidth">
{{ "enableFullWidth" | i18n }}
2021-12-17 15:57:11 +01:00
</label>
</div>
2018-07-31 06:02:09 +02:00
<small class="form-text text-muted">{{ "enableFullWidthDesc" | i18n }}</small>
2021-12-17 15:57:11 +01:00
</div>
2018-06-26 15:04:12 +02:00
<div class="row">
<div class="col-6">
Dark Theme (#1017) * Stylesheets * Theme Configuration * Options Area * swal2 style * Icon styling * Fix theme not saving * Update English * Update messages.json * dropdown and login logo * btn-link and totp fix * Organisation Styling * Update webauthn-fallback.ts * Fix contrast issues * Add Paypal Container and Loading svg file * Password Generator contrast fix * Dark Mode Fix buttons and foreground * Fix button hover * Fix Styles after rebase * Add hover on nav dropdown-item * Disable Theme Preview * Options Fix for Default Theme Changes * Updated Colour Scheme * Toast fix * Button and Text Styling * Options Update and Messages Fix * Added Search Icon and Fixed Callout styling * Add theme styling to Stripe * Refactor logic for setting color * Reorder logic to avoid race condition * PayPal Loading and Misc Fix * text-state bug fix * Badge Colour Fix * Remove PayPal Tagline The colour cannot be styled so it's not visible on a dark theme * Adding the Styling from #1131 * Update to New Design * Form and Nav restyle * Modal Opacity and Callout * Nav Colours * Missing Borders * Light theme fix * Improved border for listgroup * Change Org Nav Colour * Save theme to localStorage for persistence * Undo change to Wired image * !Important removal and tweaks * Fix regression with navbar * Light theme by default * Refactor to use getEffectiveTheme * Refactor theme constants to use enum * Set theme in index.html before app loads * Use scss selector to set logo image * Export Sass to TS * Update jslib Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
2021-09-30 00:06:20 +02:00
<div class="form-group">
<label for="theme">{{ "theme" | i18n }}</label>
<select id="theme" name="theme" [(ngModel)]="theme" class="form-control">
<option *ngFor="let o of themeOptions" [ngValue]="o.value">{{ o.name }}</option>
</select>
<small class="form-text text-muted">{{ "themeDesc" | i18n }}</small>
</div>
</div>
2021-12-17 15:57:11 +01:00
</div>
2018-07-18 05:21:23 +02:00
<button type="submit" class="btn btn-primary">
2018-06-26 15:04:12 +02:00
{{ "save" | i18n }}
</button>
</form>