solr/solr-ref-guide/ui-src/css/nav.css (219 lines of code) (raw):
.nav-container {
position: fixed;
top: var(--navbar-height);
left: 0;
width: 100%;
font-size: calc(17 / var(--rem-base) * 1rem);
z-index: var(--z-index-nav);
visibility: hidden;
}
@media screen and (min-width: 769px) {
.nav-container {
width: var(--nav-width);
}
}
@media screen and (min-width: 1024px) {
.nav-container {
font-size: calc(15.5 / var(--rem-base) * 1rem);
flex: none;
position: static;
top: 0;
visibility: visible;
}
}
.nav-container.is-active {
visibility: visible;
}
.nav {
background: var(--nav-background);
position: relative;
top: var(--toolbar-height);
height: var(--nav-height);
}
@media screen and (min-width: 769px) {
.nav {
box-shadow: 0.5px 0 3px var(--nav-border-color);
}
}
@media screen and (min-width: 1024px) {
.nav {
top: var(--navbar-height);
box-shadow: none;
position: sticky;
height: var(--nav-height--desktop);
}
}
.nav .panels {
display: flex;
flex-direction: column;
height: inherit;
}
html.is-clipped--nav {
overflow-y: hidden;
}
.nav-panel-menu {
overflow-y: scroll;
overscroll-behavior: none;
height: var(--nav-panel-menu-height);
}
.nav-panel-menu:not(.is-active) .nav-menu {
opacity: 0.75;
}
/* Solr Changes - Start */
.nav-panel-menu:not(.is-active) .nav-menu::after {
/* Solr Changes - End */
content: "";
background: rgba(0, 0, 0, 0.5);
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.nav-menu {
min-height: 100%;
/* Solr Changes - Start */
padding: 0.01rem 0.75rem;
/* Solr Changes - End */
line-height: var(--nav-line-height);
position: relative;
}
.nav-menu h3.title {
color: var(--nav-heading-font-color);
font-size: inherit;
font-weight: var(--body-font-weight-bold);
margin: 0;
padding: 0.25em 0 0.125em;
}
.nav-menu a {
color: inherit;
}
/* Solr Changes - Start */
.nav-list {
margin: 0 0 0 0.75rem;
}
.nav-menu > ul.nav-list {
padding-top: 0;
}
/* Solr Changes - End */
.nav-menu > .nav-list + .nav-list {
margin-top: 0.5rem;
}
.nav-item {
list-style: none;
/* Solr Changes - Start */
margin-top: 10px;
/* Solr Changes - End */
}
/* adds some breathing room below a nested list */
.nav-item-toggle ~ .nav-list {
padding-bottom: 0.125rem;
}
/* matches list without a title */
.nav-item[data-depth="0"] > .nav-list:first-child {
display: block;
margin: 0;
}
.nav-item:not(.is-active) > .nav-list {
display: none;
}
.nav-item-toggle {
background: transparent url(../img/caret.svg) no-repeat center / 50%;
border: none;
outline: none;
line-height: inherit;
position: absolute;
height: calc(var(--nav-line-height) * 1em);
width: calc(var(--nav-line-height) * 1em);
margin-top: -0.05em;
margin-left: calc(var(--nav-line-height) * -1em);
}
.nav-item.is-active > .nav-item-toggle {
transform: rotate(90deg);
}
.is-current-page > .nav-link,
.is-current-page > .nav-text {
font-weight: var(--body-font-weight-bold);
/* Solr Changes - Start */
color: var(--color-solr-primary-orange);
/* Solr Changes - End */
}
.nav-panel-explore {
background: var(--nav-background);
display: flex;
flex-direction: column;
/* Solr Changes - Start */
position: sticky;
top: var(--navbar-height);
/* Solr Changes - End */
right: 0;
/* Solr Removals - Start
bottom: 0;
Solr Removals - End */
/* Solr Additions - Start */
z-index: 2;
/* Solr Additions - End */
left: 0;
}
.nav-panel-explore:not(:first-child) {
top: auto;
/* Solr Changes - Start */
max-height: 100%;
/* Solr Changes - End */
}
.nav-panel-explore .context {
font-size: calc(15 / var(--rem-base) * 1rem);
flex-shrink: 0;
/* Solr Removals - Start
color: var(--nav-muted-color);
Solr Removals - End */
/* Solr Additions - Start */
font-weight: var(--body-font-weight-bold);
/* Solr Additions - End */
box-shadow: 0 -1px 0 var(--nav-panel-divider-color);
padding: 0 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
line-height: 1;
height: var(--drawer-height);
}
.nav-panel-explore .context .version {
display: flex;
align-items: inherit;
}
.nav-panel-explore .context .version::after {
content: "";
background: url(../img/chevron.svg) no-repeat center right / auto 100%;
width: 1.25em;
height: 0.75em;
}
.nav-panel-explore .components {
line-height: var(--doc-line-height);
flex-grow: 1;
box-shadow: inset 0 1px 5px var(--nav-panel-divider-color);
background: var(--nav-secondary-background);
padding: 0.5rem 0.75rem 0 0.75rem;
margin: 0;
overflow-y: scroll;
max-height: 100%;
display: block;
}
.nav-panel-explore:not(.is-active) .components {
display: none;
}
.nav-panel-explore .component {
display: block;
}
.nav-panel-explore .component + .component {
margin-top: 0.5rem;
}
.nav-panel-explore .component:last-child {
margin-bottom: 0.75rem;
}
.nav-panel-explore .component .title {
font-weight: var(--body-font-weight-bold);
color: inherit;
}
.nav-panel-explore .versions {
display: flex;
flex-wrap: wrap;
list-style: none;
padding-left: 0;
margin-top: -0.25rem;
line-height: 1;
}
.nav-panel-explore .component .version {
display: block;
margin: 0.375rem 0.375rem 0 0;
}
.nav-panel-explore .component .version a {
border: 1px solid var(--nav-border-color);
border-radius: 0.25rem;
color: inherit;
opacity: 0.75;
white-space: nowrap;
padding: 0.125em 0.25em;
display: inherit;
}
.nav-panel-explore .component .is-current a {
border-color: currentColor;
opacity: 0.9;
font-weight: var(--body-font-weight-bold);
}