From 5aca4fde9307e1aefc661c63708b8db6dbf1c690 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Sun, 14 Apr 2019 16:23:57 -0600 Subject: [PATCH] Fix colors of tables --- web/style/app.scss | 2 +- web/style/components/bootstrap_override.scss | 40 ++++++++++---------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/web/style/app.scss b/web/style/app.scss index e0bb9f9..f5b97b1 100644 --- a/web/style/app.scss +++ b/web/style/app.scss @@ -54,5 +54,5 @@ button { } .error-text { - color: #bd362f; + color: #bd362f !important; } \ No newline at end of file diff --git a/web/style/components/bootstrap_override.scss b/web/style/components/bootstrap_override.scss index 3f4bcaa..2c57574 100644 --- a/web/style/components/bootstrap_override.scss +++ b/web/style/components/bootstrap_override.scss @@ -1,29 +1,31 @@ @import "../themes/themes"; @include themifyRoot() { - a { - color: themed(anchorColor); - } + .main-app { + a { + color: themed(anchorColor); + } - table, td, th { - border-color: themed(tableBorderColor) !important; - color: themed(defaultFgColor) !important; - } + table, td, th { + border-color: themed(tableBorderColor); + color: themed(defaultFgColor); + } - code { - background-color: themed(codeBgColor); - } + code { + background-color: themed(codeBgColor); + } - *.text-muted { - color: themed(altMutedColor) !important; - } + *.text-muted { + color: themed(altMutedColor) !important; + } - .form-control { - color: themed(formControlFgColor); - background-color: themed(formControlBgColor); - } + .form-control { + color: themed(formControlFgColor); + background-color: themed(formControlBgColor); + } - .form-control::placeholder { - color: themed(formControlPlaceholderColor); + .form-control::placeholder { + color: themed(formControlPlaceholderColor); + } } } \ No newline at end of file