Improve styling, introduce FT dark style

This commit is contained in:
Matthias 2020-12-28 16:54:14 +01:00
parent c50fcccc3e
commit 19c6c77746
4 changed files with 63 additions and 6 deletions

View File

@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" data-theme="light">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>

View File

@ -40,6 +40,11 @@ export default {
description: 'Plain bootstrap default theme',
dark: false,
},
{
name: 'Bootstrap_dark',
description: 'Plain dark bootstrap default theme',
dark: true,
},
{
name: 'Cerulean',
description: 'A calm blue sky',
@ -161,9 +166,13 @@ export default {
if (this.activeTheme === themeName) {
return;
}
if (themeName.toLowerCase() === 'bootstrap') {
if (themeName.toLowerCase() === 'bootstrap' || themeName.toLowerCase() === 'bootstrap_dark') {
const styles = document.getElementsByTagName('style');
const bw = Array.from(styles).filter((w) => w.textContent.includes('bootswatch'));
document.documentElement.setAttribute(
'data-theme',
themeName.toLowerCase() === 'bootstrap_dark' ? 'dark' : 'light',
);
// Reset all bootswatch styles
bw.forEach((style, index) => {
bw[index].disabled = true;
@ -172,6 +181,7 @@ export default {
// Dynamic import for a different theme, to avoid loading ALL themes.
import(`bootswatch/dist/${themeName.toLowerCase()}/bootstrap.min.css`).then((mod) => {
console.log('theme', mod);
document.documentElement.removeAttribute('data-theme');
const styles = document.getElementsByTagName('style');
const bw = Array.from(styles).filter((w) => w.textContent.includes('bootswatch'));
bw.forEach((style, index) => {

View File

@ -3,3 +3,50 @@
// html, body, #app{
// }
[data-theme="dark"] {
$bg-dark: #3c3c3c;
$bg-darker: darken($bg-dark, 5%);
$fg-color: #dedede;
background-color: darken($bg-dark, 5%) ;
color: #eee !important;
.card {
border: 0;
}
.card-body {
background: $bg-dark;
color: $fg-color;
}
.card-header {
background: lighten($bg-dark, 5%);
color: $fg-color;
}
.table {
color: $fg-color;
}
.list-group-item {
color: $fg-color;
background: $bg-dark;
}
// .custom-select {
// color: $fg-color;
// // background: $bg-dark;
// }
.nav-link.active {
color: $fg-color;
background: $bg-darker;
}
.modal-content {
color: $fg-color;
background: $bg-dark;
}
.form-control {
color: $fg-color;
background: $bg-dark;
}
textarea {
color: $fg-color;
background: $bg-dark;
}
}

View File

@ -1,8 +1,8 @@
@import '_bootstrap_variables_ovw.scss';
@import 'bootstrap_variables_ovw';
@import '~bootstrap/scss/bootstrap.scss';
@import '~bootstrap-vue/src/index.scss';
@import '~bootstrap/scss/bootstrap';
@import '~bootstrap-vue/src/index';
@import 'variables';
@import 'styles_ovw';