mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
Various Dark Theme fixes per QA feedback (#1212)
* 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>
This commit is contained in:
@@ -3,6 +3,7 @@ const fs = require('fs');
|
||||
const webpack = require('webpack');
|
||||
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const HtmlWebpackInjector = require('html-webpack-injector');
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
@@ -80,8 +81,9 @@ const plugins = [
|
||||
new HtmlWebpackPlugin({
|
||||
template: './src/index.html',
|
||||
filename: 'index.html',
|
||||
chunks: ['app/polyfills', 'app/vendor', 'app/main'],
|
||||
chunks: ['theme_head', 'app/polyfills', 'app/vendor', 'app/main'],
|
||||
}),
|
||||
new HtmlWebpackInjector(),
|
||||
new HtmlWebpackPlugin({
|
||||
template: './src/connectors/duo.html',
|
||||
filename: 'duo-connector.html',
|
||||
@@ -222,6 +224,7 @@ const webpackConfig = {
|
||||
'connectors/duo': './src/connectors/duo.ts',
|
||||
'connectors/sso': './src/connectors/sso.ts',
|
||||
'connectors/captcha': './src/connectors/captcha.ts',
|
||||
'theme_head': './src/theme.js',
|
||||
},
|
||||
externals: {
|
||||
'u2f': 'u2f',
|
||||
|
||||
Reference in New Issue
Block a user