mirror of
https://github.com/logos-storage/logos-storage-docs-obsidian.git
synced 2026-01-05 06:43:12 +00:00
103 lines
2.5 KiB
CSS
103 lines
2.5 KiB
CSS
.workspace-leaf-content[data-type="markdown"] .internal-query .nav-header {
|
|
margin-top: 0; /* works around issues with minimal theme */
|
|
}
|
|
|
|
.workspace-leaf-content[data-type="markdown"] .internal-query .nav-header .nav-buttons-container {
|
|
position: unset; /* works around issues with minimal theme */
|
|
justify-content: center; /* works around issues with minimal theme */
|
|
}
|
|
|
|
.workspace-leaf-content[data-type="markdown"] .internal-query .internal-query-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.25em;
|
|
padding: 0.6em 0.9em;
|
|
margin: 0.4em auto 0.8em;
|
|
max-width: 90%;
|
|
text-align: center;
|
|
border-radius: var(--radius-m, 10px);
|
|
background-color: var(--background-secondary, rgba(0, 0, 0, 0.05));
|
|
border: 1px solid var(--background-modifier-border, rgba(0, 0, 0, 0.08));
|
|
box-shadow: 0 5px 16px -12px var(--shadow-s, rgba(0, 0, 0, 0.4));
|
|
font-size: var(--font-ui-medium, 1.02em);
|
|
font-weight: 600;
|
|
letter-spacing: 0.013em;
|
|
line-height: 1.32;
|
|
}
|
|
|
|
.workspace-leaf-content[data-type="markdown"] .internal-query .internal-query-header::after {
|
|
content: "";
|
|
display: block;
|
|
width: 68px;
|
|
height: 2.3px;
|
|
border-radius: 999px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--interactive-accent, #7f6df2) 0%,
|
|
var(--text-highlight-bg, rgba(255, 215, 0, 0.9)) 100%
|
|
);
|
|
opacity: 0.88;
|
|
}
|
|
|
|
.workspace-leaf-content[data-type="markdown"] .internal-query .is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.search-results-children.is-rendered .search-result-file-match {
|
|
white-space: normal;
|
|
}
|
|
|
|
.search-results-children.is-rendered {
|
|
padding: 0;
|
|
}
|
|
|
|
.search-results-children.is-rendered .search-result-file-matches .markdown-preview-view {
|
|
padding: 0;
|
|
}
|
|
|
|
.search-results-children.is-rendered .search-result-file-matches .markdown-preview-section {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.search-results-children.is-rendered .task-list-item-checkbox {
|
|
vertical-align: unset;
|
|
}
|
|
|
|
.search-results-children.is-rendered ul {
|
|
padding-inline-start: 40px;
|
|
margin-block-end: 0;
|
|
margin-block-start: 0;
|
|
}
|
|
|
|
.cm-preview-code-block.is-rendered .markdown-preview-view {
|
|
height: inherit;
|
|
}
|
|
|
|
.query-control-sort-tooltip {
|
|
position: absolute;
|
|
top: var(--tooltip-top);
|
|
left: var(--tooltip-left);
|
|
background: #333;
|
|
color: #fff;
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.query-control-sort-option {
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.query-control-sort-option:hover {
|
|
background: #555;
|
|
}
|
|
|
|
.query-control-sort-option-checkmark {
|
|
color: #fff;
|
|
margin-left: 10px;
|
|
font-size: 1em;
|
|
}
|