mirror of
https://github.com/zadam/trilium.git
synced 2025-12-17 21:04:24 +01:00
175 lines
4.4 KiB
CSS
175 lines
4.4 KiB
CSS
.component.status-bar {
|
|
contain: none;
|
|
border-top: 1px solid var(--main-border-color);
|
|
background-color: var(--left-pane-background-color);
|
|
|
|
> .status-bar-main-row {
|
|
min-height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-inline: 0.25em;
|
|
font-size: 0.85em;
|
|
|
|
> .breadcrumb {
|
|
flex-grow: 1;
|
|
--icon-button-size: 23px;
|
|
}
|
|
|
|
> .actions-row {
|
|
padding: 0.1em;
|
|
display: flex;
|
|
gap: 0.1em;
|
|
|
|
.btn {
|
|
padding: 0 0.5em !important;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
border: 0;
|
|
|
|
span:first-of-type {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
&.active,
|
|
&.dropdown-toggle.show,
|
|
&:focus,
|
|
&:hover {
|
|
background: var(--input-background-color);
|
|
}
|
|
}
|
|
|
|
.status-bar-dropdown-button {
|
|
&:after {
|
|
content: unset;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown {
|
|
.dropdown-toggle {
|
|
padding: 0.1em 0.25em;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
width: max-content;
|
|
}
|
|
}
|
|
|
|
.dropdown-note-info {
|
|
padding: 1em !important;
|
|
|
|
ul {
|
|
--row-block-margin: .2em;
|
|
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-top: calc(0px - var(--row-block-margin));
|
|
margin-bottom: 12px;
|
|
display: table;
|
|
|
|
li {
|
|
display: table-row;
|
|
|
|
> strong {
|
|
display: table-cell;
|
|
padding: var(--row-block-margin) 0;
|
|
opacity: .5;
|
|
}
|
|
|
|
> span {
|
|
display: table-cell;
|
|
user-select: text;
|
|
padding-left: 2em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown-note-paths {
|
|
.note-paths-widget {
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.note-path-intro {
|
|
color: var(--muted-text-color);
|
|
}
|
|
|
|
.note-path-list {
|
|
margin: 12px 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
li {
|
|
--border-radius: 6px;
|
|
|
|
position: relative;
|
|
background: var(--card-background-color);
|
|
padding: 8px 20px 8px 25px;
|
|
|
|
&:first-child {
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
}
|
|
|
|
&:last-child {
|
|
border-radius: 0 0 var(--border-radius) var(--border-radius);
|
|
}
|
|
|
|
& + li {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
&.path-current::before {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
content: "\ee8f";
|
|
top: 0;
|
|
left: 0;
|
|
width: 20px;
|
|
bottom: 0;
|
|
font-family: "boxicons";
|
|
font-size: .85em;
|
|
color: var(--menu-item-icon-color);
|
|
}
|
|
}
|
|
|
|
a {
|
|
margin-inline: 2px;
|
|
padding-inline: 2px;
|
|
color: currentColor;
|
|
font-weight: normal;
|
|
text-decoration: none;
|
|
|
|
&.basename {
|
|
color: var(--muted-text-color);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.dropdown-code-note-switcher {
|
|
max-height: 90vh;
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
|
|
> .attribute-list {
|
|
font-size: 0.9em;
|
|
padding: 0.5em 0.75em;
|
|
|
|
.inherited-attributes-widget > div {
|
|
padding: 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.attribute-list-editor {
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
|
|
}
|