Fix colors of tables

This commit is contained in:
Travis Ralston 2019-04-14 16:23:57 -06:00
parent 1e98d60cf1
commit 5aca4fde93
2 changed files with 22 additions and 20 deletions

View file

@ -54,5 +54,5 @@ button {
} }
.error-text { .error-text {
color: #bd362f; color: #bd362f !important;
} }

View file

@ -1,29 +1,31 @@
@import "../themes/themes"; @import "../themes/themes";
@include themifyRoot() { @include themifyRoot() {
a { .main-app {
color: themed(anchorColor); a {
} color: themed(anchorColor);
}
table, td, th { table, td, th {
border-color: themed(tableBorderColor) !important; border-color: themed(tableBorderColor);
color: themed(defaultFgColor) !important; color: themed(defaultFgColor);
} }
code { code {
background-color: themed(codeBgColor); background-color: themed(codeBgColor);
} }
*.text-muted { *.text-muted {
color: themed(altMutedColor) !important; color: themed(altMutedColor) !important;
} }
.form-control { .form-control {
color: themed(formControlFgColor); color: themed(formControlFgColor);
background-color: themed(formControlBgColor); background-color: themed(formControlBgColor);
} }
.form-control::placeholder { .form-control::placeholder {
color: themed(formControlPlaceholderColor); color: themed(formControlPlaceholderColor);
}
} }
} }