1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Files
netbox-community-netbox/netbox/project-static/styles/overrides/_tabler.scss
Arthur Hanson 3d4bb209ee 15802 change table anchor color (#15841)
* 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>
2024-05-02 16:06:05 -04:00

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