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 {
color: #bd362f;
color: #bd362f !important;
}

View file

@ -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);
}
}
}