mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* 15802 change table anchor color * 15802 make link color lighter * 15802 lighten table color * 15802 add comment --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
35 lines
602 B
SCSS
35 lines
602 B
SCSS
// Restore default foreground & background colors for <pre> blocks
|
|
pre {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
}
|
|
|
|
// Buttons
|
|
.btn {
|
|
// Tabler sets display: flex
|
|
display: inline-block;
|
|
}
|
|
.btn-sm {
|
|
// $border-radius-sm (2px) is too small
|
|
border-radius: $border-radius;
|
|
}
|
|
|
|
// Tabs
|
|
.nav-tabs {
|
|
.nav-link {
|
|
// Tabler sets display: flex
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
// Dropdown items
|
|
.dropdown-item {
|
|
// Tabler sets display: flex
|
|
display: inline-block;;
|
|
}
|
|
|
|
table a {
|
|
// Adjust table anchor link contrast as not enough contrast in dark mode
|
|
filter: brightness(110%);
|
|
}
|