118 lines
2.4 KiB
CSS
118 lines
2.4 KiB
CSS
|
|
|
|
.navbar {
|
|
position: sticky;
|
|
|
|
top: 0px;
|
|
|
|
background: var(--bg_2);
|
|
|
|
box-shadow: 0px 5px 5px 0px #00000040;
|
|
z-index: 5;
|
|
|
|
& > ._titles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: left;
|
|
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
|
|
& li {
|
|
padding: 0.2rem 0.8rem;
|
|
|
|
font-style: bold;
|
|
font-size: 1.5rem;
|
|
|
|
background: var(--highlight_1);
|
|
}
|
|
}
|
|
|
|
& > ._path {
|
|
width: 100%;
|
|
font-style: italic;
|
|
padding-left: 0.5rem;
|
|
|
|
background: var(--highlight_1);
|
|
|
|
font-size: 1.1rem;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
list-style-type: none;
|
|
|
|
overflow-x: scroll;
|
|
overflow-y: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
& a {
|
|
color: var(--text_1);
|
|
padding-right: 0.2rem;
|
|
}
|
|
}
|
|
|
|
& > ._expand_label {
|
|
cursor: pointer;
|
|
}
|
|
& > ._details {
|
|
background-color: var(--bg_3);
|
|
|
|
border: 0.15rem solid var(--highlight_1);
|
|
border-top: none;
|
|
|
|
border-radius: 0 0 0.2rem 0.2rem;
|
|
overflow: clip;
|
|
|
|
padding-bottom: 0.2rem;
|
|
padding-left: 0.3rem;
|
|
|
|
max-height: 80vh;
|
|
overflow-y: scroll;
|
|
|
|
& > ._full_path {
|
|
width: 100%;
|
|
font-style: italic;
|
|
padding-left: 0.2rem;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
list-style-type: none;
|
|
|
|
overflow-x: scroll;
|
|
overflow-y: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
& li {
|
|
margin-left: 0.3rem;
|
|
}
|
|
}
|
|
|
|
& > ._folder_list {
|
|
list-style: none;
|
|
padding-left: 0.4rem;
|
|
margin-left: 0.4rem;
|
|
|
|
border-left: 1px solid var(--text_border);
|
|
|
|
& ul {
|
|
list-style: none;
|
|
padding-left: 0.4rem;
|
|
margin-left: 0.4rem;
|
|
|
|
border-left: 1px solid var(--text_border);
|
|
}
|
|
|
|
& a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
& span, & label {
|
|
width: 1rem;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
}
|