mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
Improve styling, introduce FT dark style
This commit is contained in:
parent
c50fcccc3e
commit
19c6c77746
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en" data-theme="light">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
|
|
||||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -40,6 +40,11 @@ export default {
|
||||||
description: 'Plain bootstrap default theme',
|
description: 'Plain bootstrap default theme',
|
||||||
dark: false,
|
dark: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Bootstrap_dark',
|
||||||
|
description: 'Plain dark bootstrap default theme',
|
||||||
|
dark: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Cerulean',
|
name: 'Cerulean',
|
||||||
description: 'A calm blue sky',
|
description: 'A calm blue sky',
|
||||||
|
@ -161,9 +166,13 @@ export default {
|
||||||
if (this.activeTheme === themeName) {
|
if (this.activeTheme === themeName) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (themeName.toLowerCase() === 'bootstrap') {
|
if (themeName.toLowerCase() === 'bootstrap' || themeName.toLowerCase() === 'bootstrap_dark') {
|
||||||
const styles = document.getElementsByTagName('style');
|
const styles = document.getElementsByTagName('style');
|
||||||
const bw = Array.from(styles).filter((w) => w.textContent.includes('bootswatch'));
|
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
|
// Reset all bootswatch styles
|
||||||
bw.forEach((style, index) => {
|
bw.forEach((style, index) => {
|
||||||
bw[index].disabled = true;
|
bw[index].disabled = true;
|
||||||
|
@ -172,6 +181,7 @@ export default {
|
||||||
// Dynamic import for a different theme, to avoid loading ALL themes.
|
// Dynamic import for a different theme, to avoid loading ALL themes.
|
||||||
import(`bootswatch/dist/${themeName.toLowerCase()}/bootstrap.min.css`).then((mod) => {
|
import(`bootswatch/dist/${themeName.toLowerCase()}/bootstrap.min.css`).then((mod) => {
|
||||||
console.log('theme', mod);
|
console.log('theme', mod);
|
||||||
|
document.documentElement.removeAttribute('data-theme');
|
||||||
const styles = document.getElementsByTagName('style');
|
const styles = document.getElementsByTagName('style');
|
||||||
const bw = Array.from(styles).filter((w) => w.textContent.includes('bootswatch'));
|
const bw = Array.from(styles).filter((w) => w.textContent.includes('bootswatch'));
|
||||||
bw.forEach((style, index) => {
|
bw.forEach((style, index) => {
|
||||||
|
|
|
@ -3,3 +3,50 @@
|
||||||
// html, body, #app{
|
// 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
|
|
||||||
@import '_bootstrap_variables_ovw.scss';
|
@import 'bootstrap_variables_ovw';
|
||||||
|
|
||||||
@import '~bootstrap/scss/bootstrap.scss';
|
@import '~bootstrap/scss/bootstrap';
|
||||||
@import '~bootstrap-vue/src/index.scss';
|
@import '~bootstrap-vue/src/index';
|
||||||
|
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
@import 'styles_ovw';
|
@import 'styles_ovw';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user