matrix-dimension/web/style/components/bootstrap_override.scss
2019-04-14 16:23:57 -06:00

31 lines
577 B
SCSS

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