mirror of
https://github.com/shoedler/crossbow.git
synced 2026-07-22 07:40:26 +00:00
54 lines
No EOL
1.5 KiB
CSS
54 lines
No EOL
1.5 KiB
CSS
.cb-tree-item-inner-extensions {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.cb-tree-item-inner-suffix {
|
|
/* font-style: italic; */
|
|
padding-left: 0.2rem;
|
|
color: var(--text-faint);
|
|
opacity: var(--icon-opacity);
|
|
}
|
|
|
|
.cb-tree-item-button {
|
|
box-shadow: none !important; /* Obsidian Button class overrides */
|
|
background-color: transparent !important; /* Obsidian Button class overrides */
|
|
padding: 0 !important; /* Obsidian Button class overrides */
|
|
margin: 0 .2rem !important; /* Obsidian Button class overrides */
|
|
height: auto !important; /* Obsidian Button class overrides */
|
|
|
|
align-self: center;
|
|
color: var(--icon-color);
|
|
opacity: var(--icon-opacity);
|
|
}
|
|
|
|
.cb-tree-item-button > svg {
|
|
width: 12px !important; /* Obsidian Button class overrides */
|
|
height: 12px !important; /* Obsidian Button class overrides */
|
|
stroke-width: 2.5px !important; /* Obsidian Button class overrides */
|
|
}
|
|
.cb-tree-item-button:disabled {
|
|
opacity: calc(var(--icon-opacity) * 0.5);
|
|
}
|
|
|
|
.cb-tree-item-button:not(:disabled):hover {
|
|
opacity: var(--icon-opacity-active);
|
|
color: var(--icon-color-focused);
|
|
}
|
|
|
|
.cb-view-empty {
|
|
color: var(--text-faint);
|
|
display: table;
|
|
margin: 1rem auto;
|
|
font-style: italic;
|
|
}
|
|
|
|
.cb-view-controls {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.cb-view-tree {
|
|
padding-bottom: 1rem; /* To make sure all tree items are viewable, because of the statusbar */
|
|
} |