mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-18 04:56:29 -06:00

* 16649 general contrast issues (#16759) * fixes #16647: navigation contrast issues updated * fixes #16651: table contrast issues new * fixed #16649: general contrast issues * fixes #16649: feedback changes --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.broadband> * 16648 dashboard contrast issues (#16824) * fixed #16648: dashboard contrast issues * reinstate amendment to 16649 * fixed #16648: created gridstack override and removed inline bug fix --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> * fixed #16853: accessibility issues * fixed #16847: updated font (#16848) * fixed #16847: updated font * fixed #16847: changed font to local and added current font as fallback * fixed #16847: removed inter and added padding to page header --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16849 document hierarchy issues (#16875) * fixed #16849: h elements not in sequential order * fixed #16849: Lists do not contain only li elements * fixed #16849: fixed h hierarchy on rack object pages * Remove standalone h5 classes * Remove unnecessary line breaks --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16650 button contrast issues (#16845) * fixed #16650: button contrast issues * fixed #16650: green bg text contrast issue * Revert errant JS resource updates * Revert custom button colors * Fix indentation --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16907 web UI refresh (#16915) * closes #16907: web ui refresh * closes #16907: changed default widget color to primary color * closes #16907: removed comma * Revert dashboard widget color changes * Rename logo images for consistency * Restore original dashboard widget config * Remove .navbar-brand-autodark from logo * Restore logo file names --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16394 distinguish product edition (#16924) * closes #16907: web ui refresh * closes #16907: changed default widget color to primary color * closes #16907: removed comma * closes #16394: distinguish product edition * Revert dashboard changes * Clean up redundant styling (merge error) * removed labs logo and added sub text for all editions * fixed motif bug * Fix "flashing" of side nav under dark mode * Use title case for edition label * altered edition text style --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * Query release features to toggle commercial theme * fixes dark mode primary button contrast issue * fixes #16913: hidden admin nav link (#16978) Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * fixed 16852: misc accessbility problems (#16977) * fixed 16852: misc accessbility problems * Restore tooltip text * Add translation support * Add missing i18n --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * fixes issues in #16850 (#16986) * fixes issues in #16850: issue 3 and 5 * Add link text for 'clear' button on table column * Translate aria label --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * Use alternate footer links for commercial releases * Remove Inter font * Adjust base font weight to 500 * Retain default text color for hyperlinks inside tables * Logo & edition cleanup * Move dashboard styling * Misc cleanup * Remove unused styles * Misc cleanup & refactoring --------- Co-authored-by: Andrew Gormley <andrewgormley91@gmail.com> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.broadband>
138 lines
3.0 KiB
SCSS
138 lines
3.0 KiB
SCSS
// Navbar and light theme styling
|
|
.navbar-vertical.navbar-expand-lg {
|
|
|
|
// Adds spacing to the bottom of the side navigation to avoid hidden nav items
|
|
@include media-breakpoint-up(lg) {
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
// Adjust hover color & style for menu items
|
|
.navbar-collapse {
|
|
.nav-link-icon {
|
|
color: var(--tblr-nav-link-color) !important;
|
|
}
|
|
.text-secondary {
|
|
color: $dark-teal !important;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
|
|
// Adjust hover color & style for menu items
|
|
.dropdown-item {
|
|
a {
|
|
color: $rich-black;
|
|
}
|
|
.btn-group {
|
|
visibility: hidden;
|
|
}
|
|
|
|
// Style menu item hover state
|
|
&:hover {
|
|
background-color: var(--tblr-navbar-active-bg);
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
.btn-group {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
// Style active menu item
|
|
&.active {
|
|
background-color: var(--tblr-navbar-active-bg);
|
|
a {
|
|
color: $rich-black;
|
|
}
|
|
.btn-group {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ensures theme toggle appears above background image
|
|
.navbar-nav {
|
|
z-index: 1;
|
|
}
|
|
|
|
// Logo text for non-community editions
|
|
.navbar-brand {
|
|
|
|
// Reduce logo padding on mobile view
|
|
@include media-breakpoint-down(lg) {
|
|
padding: 0.2rem 0;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
// Navigation geometric graphic for non-community editions
|
|
img.motif {
|
|
bottom: 0;
|
|
display: none;
|
|
left:0;
|
|
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 100%);
|
|
opacity: .5;
|
|
position: fixed;
|
|
user-drag: none;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-drag: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
width:18rem;
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Light theme styling
|
|
body[data-bs-theme=light] .navbar-vertical.navbar-expand-lg {
|
|
// Background Gradient
|
|
background: linear-gradient(180deg, rgba(0, 133, 125, 0.00) 0%, rgba(0, 133, 125, 0.10) 100%), #FFF;
|
|
}
|
|
|
|
// Dark theme styling
|
|
body[data-bs-theme=dark] .navbar-vertical.navbar-expand-lg {
|
|
|
|
// Background Gradient
|
|
background: linear-gradient(180deg, rgba(0, 242, 212, 0.00) 0%, rgba(0, 242, 212, 0.10) 100%), #001423;
|
|
|
|
// Border color for active dropdown list
|
|
.nav-item.dropdown.active:after {
|
|
border-color: $bright-teal !important;
|
|
}
|
|
|
|
// Adjust hover color & style for menu items
|
|
.dropdown-item {
|
|
a {
|
|
color: white !important;
|
|
}
|
|
&.active {
|
|
background-color: $navbar-dark-active-bg !important;
|
|
a {
|
|
color: white !important;
|
|
}
|
|
}
|
|
&:hover {
|
|
background-color: $navbar-dark-active-bg !important;
|
|
}
|
|
.nav-link-title {
|
|
color: white !important;
|
|
}
|
|
}
|
|
.text-secondary {
|
|
color: $bright-teal !important;
|
|
}
|
|
|
|
img.motif {
|
|
opacity: .25;
|
|
}
|
|
}
|