mirror of
https://github.com/bitwarden/web
synced 2025-12-10 05:13:40 +00:00
* Fix CORS issue on in-line theming javascript * Fix date picker icon color * Add comment * Fix table theming in dark mode * Selfhosted navbar fix * Rename selector to avoid clashing with bootstrap * Do not set initial theme if default * Fix .text-danger style in dropdown lists * Fix toast style, restructure toast and card scss * Fix table and dropdown list hover color * Use callout component for Disable Send warning * Remove unneeded theming for hovering over links * Undo changes to register enterprise2 layout * Apply theming to Safari input field icons e.g. Caps lock, password autofill * Selectively apply themed logo CSS * Fix unrelated linting * Fix webpack config to bundle theme.js Co-authored-by: Danny Murphy <6512845+dltmurphy@users.noreply.github.com>
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html class="theme_light">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=1010">
|
|
<meta name="theme-color" content="#175DDC">
|
|
|
|
<title page-title>Bitwarden Web Vault</title>
|
|
|
|
<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">
|
|
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#175DDC">
|
|
<link rel="manifest" href="manifest.json">
|
|
</head>
|
|
|
|
<body class="layout_frontend">
|
|
<app-root>
|
|
<div class="mt-5 d-flex justify-content-center">
|
|
<div>
|
|
<img class="mb-4 logo logo-themed" alt="Bitwarden">
|
|
<p class="text-center">
|
|
<i class="fa fa-spinner fa-spin fa-2x text-muted" title="Loading" aria-hidden="true"></i>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
|
|
</html>
|