Files
discourse_theme_ran/scss/nav-pills.scss
T
Jordan Vidrine fb7e1b02e6 styling
2025-02-25 16:22:04 -06:00

41 lines
909 B
SCSS

.list-controls {
// position: sticky;
// top: 0;
// background: transparent;
// this does not work properly without using a background color
// which if used, conflicts with the gradient background
z-index: 100;
padding-top: 1.5rem;
max-width: unset;
width: 100%;
.navigation-container {
.category-breadcrumb {
order: 1;
margin-left: 0.5em;
}
}
.combo-box .combo-box-header {
background-color: var(--secondary);
border-radius: 6.25rem;
}
.select-kit.is-expanded .select-kit-body {
background: #ffffff;
border-radius: var(--d-border-radius);
}
}
.nav-pills > li > a:hover,
.nav-pills > li button:hover {
background: transparent;
color: var(--accent-color);
&::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: var(--d-nav-underline-height);
background: var(--accent-color);
}
}