bitwarden-estensione-browser/src/index.html

49 lines
1.7 KiB
HTML
Raw Normal View History

2015-12-09 04:35:05 +01:00
<!DOCTYPE html>
2018-06-05 03:55:38 +02:00
<html>
2015-12-09 04:35:05 +01:00
2018-06-05 03:55:38 +02:00
<head>
2018-07-19 04:53:16 +02:00
<meta charset="utf-8">
2018-08-02 04:02:32 +02:00
<meta name="viewport" content="width=1010">
2020-05-05 22:59:33 +02:00
<meta name="theme-color" content="#175DDC">
2018-06-05 03:55:38 +02:00
2018-06-06 15:43:28 +02:00
<title page-title>Bitwarden Web Vault</title>
2018-06-05 03:55:38 +02:00
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
<script>
(function () {
// Set theme on page load
// This is done outside the Angular app to avoid a flash of unthemed content before it loads
let theme = window.localStorage.getItem('theme');
if (theme?.indexOf('system') > -1) {
theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
} else if (theme?.indexOf('dark') > -1) {
theme = 'dark';
}
else {
theme = 'light';
}
document.documentElement.classList.add('theme_' + theme);
})();
</script>
2018-06-06 15:43:28 +02:00
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
2020-05-05 22:59:33 +02:00
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#175DDC">
2018-06-06 15:43:28 +02:00
<link rel="manifest" href="manifest.json">
2015-12-09 04:35:05 +01:00
</head>
2018-07-06 22:36:51 +02:00
<body class="layout_frontend">
2018-06-05 05:10:41 +02:00
<app-root>
2018-07-06 22:36:51 +02:00
<div class="mt-5 d-flex justify-content-center">
<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
<img class="mb-4 logo" alt="Bitwarden">
2018-07-06 22:36:51 +02:00
<p class="text-center">
2019-10-11 16:35:24 +02:00
<i class="fa fa-spinner fa-spin fa-2x text-muted" title="Loading" aria-hidden="true"></i>
2018-07-06 22:36:51 +02:00
</p>
</div>
</div>
2018-06-05 05:10:41 +02:00
</app-root>
2015-12-09 04:35:05 +01:00
</body>
2018-06-05 03:55:38 +02:00
2018-06-06 15:43:28 +02:00
</html>