mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-09 00:58:16 -06:00
fixes #16649: feedback changes
This commit is contained in:
parent
4c1da53613
commit
17f21fe935
BIN
netbox/project-static/dist/netbox.css
vendored
BIN
netbox/project-static/dist/netbox.css
vendored
Binary file not shown.
@ -31,3 +31,6 @@ $bright-teal: #00F2D4;
|
|||||||
$dark-teal: #00857D;
|
$dark-teal: #00857D;
|
||||||
|
|
||||||
$primary: $dark-teal;
|
$primary: $dark-teal;
|
||||||
|
|
||||||
|
// Navbar active dropdown border color
|
||||||
|
$navbar-active-border-color: $bright-teal;
|
||||||
|
@ -35,13 +35,8 @@ pre {
|
|||||||
display: inline-block;;
|
display: inline-block;;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table th.orderable a {
|
||||||
a {
|
|
||||||
color: $dark-teal;
|
|
||||||
}
|
|
||||||
th.orderable a {
|
|
||||||
color: var(--#{$prefix}body-color);
|
color: var(--#{$prefix}body-color);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Override background color alpha value
|
// Override background color alpha value
|
||||||
@ -49,17 +44,6 @@ table {
|
|||||||
background-color: rgba(var(--tblr-primary-rgb),.48)
|
background-color: rgba(var(--tblr-primary-rgb),.48)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Side navigation
|
|
||||||
.navbar-vertical {
|
|
||||||
background-color: $rich-black;
|
|
||||||
.dropdown-item {
|
|
||||||
color: white!important;
|
|
||||||
}
|
|
||||||
.text-secondary {
|
|
||||||
color: $gray-400!important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dark mode colors
|
// Dark mode colors
|
||||||
@if $enable-dark-mode {
|
@if $enable-dark-mode {
|
||||||
@include color-mode(dark, true) {
|
@include color-mode(dark, true) {
|
||||||
@ -74,10 +58,17 @@ table {
|
|||||||
background: var(--#{$prefix}bg-surface);
|
background: var(--#{$prefix}bg-surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
// Altering background colors
|
||||||
.page, .page-tabs .nav-tabs .nav-link.active {
|
.page, .page-tabs .nav-tabs .nav-link.active {
|
||||||
background-color: var(--#{$prefix}bg-surface-tertiary)!important;
|
background-color: var(--#{$prefix}bg-surface-tertiary)!important;
|
||||||
}
|
}
|
||||||
|
.page-body .card .card-header {
|
||||||
|
background: var(--tblr-bg-surface-secondary)!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer .text-primary {
|
||||||
|
color: $rich-black!important;
|
||||||
|
}
|
||||||
|
|
||||||
// Dark mode overrides
|
// Dark mode overrides
|
||||||
body[data-bs-theme=dark] {
|
body[data-bs-theme=dark] {
|
||||||
@ -102,9 +93,6 @@ body[data-bs-theme=dark] {
|
|||||||
.btn {
|
.btn {
|
||||||
color: var(--#{$prefix}body-color);
|
color: var(--#{$prefix}body-color);
|
||||||
}
|
}
|
||||||
th.orderable a {
|
|
||||||
color: var(--#{$prefix}body-color);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjusting text colors
|
// Adjusting text colors
|
||||||
@ -116,4 +104,7 @@ body[data-bs-theme=dark] {
|
|||||||
color: $gray-400!important;
|
color: $gray-400!important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.footer .text-primary {
|
||||||
|
color: white!important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
// Navbar styling
|
// Navbar styling
|
||||||
.navbar-vertical.navbar-expand-lg {
|
.navbar-vertical.navbar-expand-lg {
|
||||||
|
background-color: $rich-black;
|
||||||
|
.dropdown-item {
|
||||||
|
color: white!important;
|
||||||
|
}
|
||||||
|
.text-secondary {
|
||||||
|
color: $bright-teal!important;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-collapse {
|
.navbar-collapse {
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
.dropdown-item {
|
.dropdown-item {
|
||||||
|
Loading…
Reference in New Issue
Block a user