mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
Fix colors of tables
This commit is contained in:
parent
1e98d60cf1
commit
5aca4fde93
@ -54,5 +54,5 @@ button {
|
||||
}
|
||||
|
||||
.error-text {
|
||||
color: #bd362f;
|
||||
color: #bd362f !important;
|
||||
}
|
40
web/style/components/bootstrap_override.scss
vendored
40
web/style/components/bootstrap_override.scss
vendored
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user