matrix-dimension/web/style/components/bootstrap_override.scss

35 lines
629 B
SCSS
Raw Normal View History

@import "../themes/themes";
@include themifyRoot() {
2019-04-14 22:23:57 +00:00
.main-app {
a {
color: themed(anchorColor);
}
2019-04-14 22:23:57 +00:00
table, td, th {
border-color: themed(tableBorderColor);
color: themed(defaultFgColor);
}
2019-04-14 22:23:57 +00:00
code {
background-color: themed(codeBgColor);
}
2019-04-14 22:23:57 +00:00
*.text-muted {
color: themed(altMutedColor) !important;
}
2019-04-14 22:23:57 +00:00
.form-control {
color: themed(formControlFgColor);
background-color: themed(formControlBgColor);
}
2019-04-14 22:23:57 +00:00
.form-control::placeholder {
color: themed(formControlPlaceholderColor);
}
.toast:not(.show) {
display: flex;
}
}
}