2023-02-17 20:44:16 +00:00
|
|
|
/*!
|
|
|
|
|
Lemons Theme for Obsidian.md
|
|
|
|
|
|
|
|
|
|
Source: https://github.com/mProjectsCode/obsidian-lemons-theme
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2022 Moritz Jung
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2023-12-07 12:28:31 +00:00
|
|
|
/*! @settings
|
2023-02-19 22:33:04 +00:00
|
|
|
name: Lemons Theme
|
|
|
|
|
id: lemons-theme-settings
|
|
|
|
|
collapsed: false
|
|
|
|
|
settings:
|
|
|
|
|
-
|
|
|
|
|
id: lt-set-settings
|
|
|
|
|
title: Lemons Theme Settings
|
|
|
|
|
type: heading
|
|
|
|
|
level: 1
|
2023-03-03 17:31:23 +00:00
|
|
|
-
|
|
|
|
|
id: lt-set-file-icons
|
|
|
|
|
title: File Icons
|
|
|
|
|
description: Adds file and folder icons for different file types
|
|
|
|
|
type: class-toggle
|
2023-06-19 20:10:13 +00:00
|
|
|
-
|
|
|
|
|
id: lt-pride-month-colors
|
|
|
|
|
title: Pride Month Colors
|
|
|
|
|
description: Adds some colorful pride month flags to some UI elements.
|
|
|
|
|
type: class-toggle
|
2023-07-27 20:42:42 +00:00
|
|
|
-
|
|
|
|
|
id: lt-hide-tab-title-bar-file-name
|
|
|
|
|
title: Hide Tab Title Bar File Name
|
|
|
|
|
description: Hide the file name in the tab title bar. Who needs to see the tab title three times anyways.
|
|
|
|
|
type: class-toggle
|
2023-12-07 12:28:31 +00:00
|
|
|
-
|
|
|
|
|
id: lt-accent-headings
|
|
|
|
|
title: More Visible Headings
|
|
|
|
|
description: Colors the heading in the accent color to make them more visible.
|
|
|
|
|
type: class-toggle
|
|
|
|
|
-
|
|
|
|
|
id: lt-hashtag-headings
|
|
|
|
|
title: Hashtag Headings
|
|
|
|
|
description: Prefix headings with a hashtag even in reading mode.
|
|
|
|
|
type: class-toggle
|
|
|
|
|
default: true
|
2023-02-19 22:33:04 +00:00
|
|
|
-
|
|
|
|
|
id: lt-set-mode-toggles
|
|
|
|
|
title: Mode Toggles
|
|
|
|
|
type: heading
|
|
|
|
|
level: 2
|
|
|
|
|
-
|
|
|
|
|
id: lt-set-focus-mode
|
|
|
|
|
title: Focus Mode
|
|
|
|
|
description: Disables part of the UI to help you focus.
|
|
|
|
|
type: class-toggle
|
|
|
|
|
addCommand: true
|
|
|
|
|
-
|
|
|
|
|
id: lt-set-full-width-editor
|
|
|
|
|
title: Full Width Editor
|
|
|
|
|
description: Removes the width limit on the editor.
|
|
|
|
|
type: class-toggle
|
|
|
|
|
addCommand: true
|
|
|
|
|
*/
|
|
|
|
|
.style-settings-heading[data-level="0"] {
|
|
|
|
|
margin-bottom: var(--size-4-2);
|
|
|
|
|
}
|
|
|
|
|
.style-settings-heading {
|
|
|
|
|
margin-bottom: var(--size-4-2);
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.style-settings-container {
|
|
|
|
|
margin-left: var(--size-4-1);
|
|
|
|
|
border-left: 1px solid var(--background-modifier-border);
|
|
|
|
|
padding-left: var(--size-4-8);
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.style-settings-container .setting-item {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.style-settings-heading[data-level="0"] + .style-settings-container .style-settings-collapse-indicator {
|
|
|
|
|
margin: 0 var(--size-4-2) 0 0;
|
|
|
|
|
}
|
|
|
|
|
.workspace-ribbon.mod-left.is-collapsed {
|
|
|
|
|
transition: background-color 0ms;
|
|
|
|
|
transition-delay: 250ms;
|
|
|
|
|
}
|
|
|
|
|
.sidebar-toggle-button.mod-left {
|
|
|
|
|
height: var(--header-height);
|
|
|
|
|
}
|
|
|
|
|
@keyframes lt-set-focus-mode-sidebar-toggle-button-transition {
|
|
|
|
|
from {
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
background-color: var(--titlebar-background);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode {
|
|
|
|
|
--titlebar-background: var(--background-primary);
|
|
|
|
|
--titlebar-background-focused: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .workspace:not(.is-left-sidedock-open) .side-dock-actions {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .workspace .workspace-ribbon.is-collapsed .sidebar-toggle-button.mod-left {
|
|
|
|
|
animation: lt-set-focus-mode-sidebar-toggle-button-transition 0ms;
|
|
|
|
|
animation-delay: 250ms;
|
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .workspace .workspace-ribbon .sidebar-toggle-button.mod-left {
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .workspace-tab-header-container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .status-bar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .view-header {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-focus-mode .workspace-split.mod-right-split {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-full-width-editor {
|
|
|
|
|
--file-line-width: 10000px;
|
|
|
|
|
}
|
2023-06-19 20:10:13 +00:00
|
|
|
body.lt-pride-month-colors .status-bar {
|
|
|
|
|
background: var(--lt-gradient-pride);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .vertical-tab-nav-item.is-active:nth-child(5n+1) {
|
|
|
|
|
background: var(--lt-gradient-pride);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .vertical-tab-nav-item.is-active:nth-child(5n+2) {
|
|
|
|
|
background: var(--lt-gradient-trans);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .vertical-tab-nav-item.is-active:nth-child(5n+3) {
|
|
|
|
|
background: var(--lt-gradient-lesbian);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .vertical-tab-nav-item.is-active:nth-child(5n+4) {
|
|
|
|
|
background: var(--lt-gradient-gay);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .vertical-tab-nav-item.is-active:nth-child(5n+5) {
|
|
|
|
|
background: var(--lt-gradient-non-bin);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .tree-item:nth-child(5n+1) > .tree-item-self.is-active {
|
|
|
|
|
background: var(--lt-gradient-pride);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .tree-item:nth-child(5n+2) > .tree-item-self.is-active {
|
|
|
|
|
background: var(--lt-gradient-trans);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .tree-item:nth-child(5n+3) > .tree-item-self.is-active {
|
|
|
|
|
background: var(--lt-gradient-lesbian);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .tree-item:nth-child(5n+4) > .tree-item-self.is-active {
|
|
|
|
|
background: var(--lt-gradient-gay);
|
|
|
|
|
}
|
|
|
|
|
body.lt-pride-month-colors .tree-item:nth-child(5n+5) > .tree-item-self.is-active {
|
|
|
|
|
background: var(--lt-gradient-non-bin);
|
|
|
|
|
}
|
2023-07-27 20:42:42 +00:00
|
|
|
body.lt-hide-tab-title-bar-file-name .view-header-title-container .view-header-title {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
body.lt-accent-headings .markdown-reading-view h1,
|
|
|
|
|
body.lt-accent-headings .markdown-reading-view h2,
|
|
|
|
|
body.lt-accent-headings .markdown-reading-view h3,
|
|
|
|
|
body.lt-accent-headings .markdown-reading-view h4,
|
|
|
|
|
body.lt-accent-headings .markdown-reading-view h5,
|
|
|
|
|
body.lt-accent-headings .markdown-reading-view h6 {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h1,
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h2,
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h3,
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h4,
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h5,
|
|
|
|
|
body.lt-accent-headings .markdown-rendered h6 {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
body.lt-accent-headings .markdown-source-view .HyperMD-header .cm-header:not(.cm-formatting-header) {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-source-view.is-live-preview .HyperMD-header:not(:has(> .cm-formatting-header)) .cm-header:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .HyperMD-header.cm-active .cm-formatting-header {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h1:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h1:hover:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h2:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h2:hover:before {
|
|
|
|
|
content: "## ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h3:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h3:hover:before {
|
|
|
|
|
content: "### ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h4:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h4:hover:before {
|
|
|
|
|
content: "#### ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h5:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h5:hover:before {
|
|
|
|
|
content: "##### ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h6:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h6:hover:before {
|
|
|
|
|
content: "###### ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h1:before,
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h2:before,
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h3:before,
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h4:before,
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h5:before,
|
|
|
|
|
body.lt-hashtag-headings .markdown-reading-view h6:before {
|
|
|
|
|
content: "# ";
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
}
|
2023-02-16 20:12:14 +00:00
|
|
|
.callout {
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: rgb(var(--callout-color), 0.1);
|
|
|
|
|
}
|
|
|
|
|
.callout .callout-title {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
background: rgb(var(--callout-color), 0.1);
|
|
|
|
|
border-radius: var(--callout-radius);
|
|
|
|
|
}
|
|
|
|
|
.callout .callout-content {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.callout .callout-content > :first-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.callout .callout-content > :last-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=row] {
|
2023-02-19 22:33:04 +00:00
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=row] > .callout-title {
|
2023-02-19 22:33:04 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=row] > .callout-content {
|
2023-02-19 22:33:04 +00:00
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
gap: var(--size-4-4);
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=row] > .callout-content > * {
|
2023-02-19 22:33:04 +00:00
|
|
|
flex: 1;
|
|
|
|
|
margin: 0;
|
2023-12-07 12:28:31 +00:00
|
|
|
height: min-content;
|
2023-02-19 22:33:04 +00:00
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 2;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid][data-callout-metadata="1"] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 1;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid][data-callout-metadata="2"] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 2;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid][data-callout-metadata="3"] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 3;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid][data-callout-metadata="4"] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 4;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid][data-callout-metadata="5"] {
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-grid-columns: 5;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid] > .callout-title {
|
2023-02-19 22:33:04 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid] > .callout-content {
|
2023-02-19 22:33:04 +00:00
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(var(--lt-callout-grid-columns), 1fr);
|
|
|
|
|
gap: var(--size-4-4);
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=grid] > .callout-content > * {
|
2023-02-19 22:33:04 +00:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=float] {
|
2023-02-19 22:33:04 +00:00
|
|
|
float: right;
|
|
|
|
|
max-width: 50%;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=float][data-callout-metadata=left] {
|
2023-02-19 22:33:04 +00:00
|
|
|
float: left;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=float] > .callout-title {
|
2023-02-19 22:33:04 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=float] > .callout-content {
|
2023-02-19 22:33:04 +00:00
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=float] > .callout-content > * {
|
2023-02-19 22:33:04 +00:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=invisible] {
|
2023-04-15 09:27:37 +00:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=invisible] > .callout-title {
|
2023-04-15 09:27:37 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=invisible] > .callout-content {
|
2023-04-15 09:27:37 +00:00
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.callout[data-callout-metadata=invisible] > .callout-content > * {
|
2023-04-15 09:27:37 +00:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-02-18 16:12:34 +00:00
|
|
|
.markdown-rendered blockquote {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
border-radius: var(--callout-radius);
|
|
|
|
|
background: rgb(var(--callout-quote), 0.1);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
cite {
|
|
|
|
|
margin-top: 1em;
|
2023-02-18 16:12:34 +00:00
|
|
|
display: block;
|
|
|
|
|
}
|
2023-02-16 20:12:14 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
border-radius: var(--callout-radius);
|
2023-02-19 22:33:04 +00:00
|
|
|
--lt-callout-padding-size-start: 18px;
|
2023-02-16 20:12:14 +00:00
|
|
|
--lt-callout-padding-size-end: var(--size-4-3);
|
|
|
|
|
--lt-callout-padding-start: calc(var(--lt-callout-indent) * var(--lt-callout-padding-size-start));
|
|
|
|
|
--lt-callout-padding-end: calc(var(--lt-callout-indent) * var(--lt-callout-padding-size-end));
|
2023-02-19 22:33:04 +00:00
|
|
|
padding-inline-start: calc(var(--size-4-2) + var(--lt-callout-padding-start)) !important;
|
2023-02-16 20:12:14 +00:00
|
|
|
background: rgb(var(--callout-quote), 0.1);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote > :first-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote > :last-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-1 {
|
2023-02-16 20:12:14 +00:00
|
|
|
--lt-callout-indent: 1;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-1:not(.HyperMD-callout) + .HyperMD-quote-1:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-1:not(.HyperMD-callout):has(+ .HyperMD-quote-1:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-2 {
|
2023-02-16 20:12:14 +00:00
|
|
|
--lt-callout-indent: 2;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-2:not(.HyperMD-callout) + .HyperMD-quote-2:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-2:not(.HyperMD-callout):has(+ .HyperMD-quote-2:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-3 {
|
2023-02-16 20:12:14 +00:00
|
|
|
--lt-callout-indent: 3;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-3:not(.HyperMD-callout) + .HyperMD-quote-3:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-3:not(.HyperMD-callout):has(+ .HyperMD-quote-3:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-4 {
|
|
|
|
|
--lt-callout-indent: 4;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-4:not(.HyperMD-callout) + .HyperMD-quote-4:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-4:not(.HyperMD-callout):has(+ .HyperMD-quote-4:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-5 {
|
|
|
|
|
--lt-callout-indent: 5;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-5:not(.HyperMD-callout) + .HyperMD-quote-5:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-5:not(.HyperMD-callout):has(+ .HyperMD-quote-5:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-6 {
|
|
|
|
|
--lt-callout-indent: 6;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-6:not(.HyperMD-callout) + .HyperMD-quote-6:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-6:not(.HyperMD-callout):has(+ .HyperMD-quote-6:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-7 {
|
|
|
|
|
--lt-callout-indent: 7;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-7:not(.HyperMD-callout) + .HyperMD-quote-7:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-7:not(.HyperMD-callout):has(+ .HyperMD-quote-7:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-8 {
|
|
|
|
|
--lt-callout-indent: 8;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-8:not(.HyperMD-callout) + .HyperMD-quote-8:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-8:not(.HyperMD-callout):has(+ .HyperMD-quote-8:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-9 {
|
|
|
|
|
--lt-callout-indent: 9;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-9:not(.HyperMD-callout) + .HyperMD-quote-9:not(.HyperMD-callout) {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote-9:not(.HyperMD-callout):has(+ .HyperMD-quote-9:not(.HyperMD-callout)) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
2023-02-16 20:12:14 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote:has(+ .HyperMD-quote) {
|
|
|
|
|
border-radius: var(--callout-radius) var(--callout-radius) 0 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote + .HyperMD-quote {
|
|
|
|
|
border-radius: 0 0 var(--callout-radius) var(--callout-radius);
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote + .HyperMD-quote:has(+ .HyperMD-quote) {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
border-radius: var(--callout-radius) var(--callout-radius) 0 0;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: calc((var(--lt-callout-indent) - 1) * var(--lt-callout-padding-size-start));
|
|
|
|
|
right: calc((var(--lt-callout-indent) - 1) * var(--lt-callout-padding-size-end));
|
|
|
|
|
background: rgb(var(--callout-quote), 0.1);
|
|
|
|
|
z-index: -1;
|
|
|
|
|
width: unset;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: var(--callout-radius);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout > :first-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout > :last-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout + .HyperMD-quote {
|
|
|
|
|
padding: var(--callout-padding);
|
|
|
|
|
border-radius: 0 0 var(--callout-radius) var(--callout-radius);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout + .HyperMD-quote > :first-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout + .HyperMD-quote > :last-child {
|
2023-02-16 20:12:14 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.HyperMD-callout + .HyperMD-quote:has(+ .HyperMD-quote) {
|
|
|
|
|
border-radius: 0 0;
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper {
|
|
|
|
|
--shadow-border-accent: none;
|
|
|
|
|
}
|
|
|
|
|
.canvas-wrapper .canvas-controls .canvas-control-group {
|
2023-02-16 20:12:14 +00:00
|
|
|
border: none;
|
2023-02-17 20:19:09 +00:00
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
box-shadow: var(--shadow-s);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas-controls .canvas-control-group .canvas-control-item {
|
|
|
|
|
border: none;
|
|
|
|
|
background-color: transparent;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas-controls .canvas-control-group .canvas-control-item:hover {
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas-menu {
|
|
|
|
|
border: none;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
box-shadow: var(--shadow-s);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-edges g path.canvas-interaction-path {
|
|
|
|
|
stroke-width: calc(24px * var(--zoom-multiplier));
|
|
|
|
|
stroke: none;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-edges g path.canvas-display-path {
|
|
|
|
|
stroke-width: calc(2px * var(--zoom-multiplier));
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-edges g.is-focused path.canvas-display-path {
|
|
|
|
|
stroke: var(--text-accent);
|
|
|
|
|
stroke-width: calc(2px * var(--zoom-multiplier));
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-edges g.is-focused polygon.canvas-path-end {
|
|
|
|
|
stroke: var(--text-accent);
|
|
|
|
|
fill: var(--text-accent);
|
|
|
|
|
stroke-width: calc(2px * var(--zoom-multiplier));
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-edges g:hover path.canvas-display-path {
|
|
|
|
|
stroke-width: calc(2px * var(--zoom-multiplier));
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.canvas-wrapper .canvas .canvas-node.is-selected .canvas-node-label,
|
|
|
|
|
.canvas-wrapper .canvas .canvas-node.is-focused .canvas-node-label {
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
/*!
|
|
|
|
|
* Icons used are Lucide Icons. Lucide Icons license:
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2022.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|
2023-04-15 09:27:37 +00:00
|
|
|
.nav-files-container .tree-item-self {
|
|
|
|
|
align-items: center;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-04-15 09:27:37 +00:00
|
|
|
.nav-files-container .tree-item-self .tree-item-inner {
|
2023-03-03 17:31:23 +00:00
|
|
|
display: flex;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-04-15 09:27:37 +00:00
|
|
|
.nav-files-container .nav-folder.mod-root > .tree-item-self .tree-item-inner {
|
|
|
|
|
color: var(--nav-item-color) !important;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-04-15 09:27:37 +00:00
|
|
|
.nav-files-container .nav-folder.mod-root > .tree-item-children {
|
|
|
|
|
border-left: none !important;
|
2023-03-03 17:31:23 +00:00
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-folder.is-collapsed > .nav-folder-title:not([data-path="/"]) > .nav-folder-title-content:before {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
align-self: center;
|
|
|
|
|
background-color: var(--lt-file-icon-color, var(--text-muted));
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
min-height: 16px;
|
|
|
|
|
min-width: 16px;
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
margin-right: var(--size-4-1);
|
|
|
|
|
transition: background-color 50ms;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-folder:not(.is-collapsed) > .nav-folder-title:not([data-path="/"]) > .nav-folder-title-content:before {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
align-self: center;
|
|
|
|
|
background-color: var(--lt-file-icon-color, var(--text-muted));
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
min-height: 16px;
|
|
|
|
|
min-width: 16px;
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
margin-right: var(--size-4-1);
|
|
|
|
|
transition: background-color 50ms;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title .nav-file-title-content:before {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
align-self: center;
|
|
|
|
|
background-color: var(--lt-file-icon-color, var(--text-muted));
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
min-height: 16px;
|
|
|
|
|
min-width: 16px;
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
margin-right: var(--size-4-1);
|
|
|
|
|
transition: background-color 50ms;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=aif] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cda] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mid] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=midi] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mp3] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mpa] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ogg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wav] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wma] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wpl] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z'%3E%3C/path%3E%3Cpath d='M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z'%3E%3C/path%3E%3Cpath d='M2 19v-3a6 6 0 0 1 12 0v3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$="7z"] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=arj] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=deb] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=pkg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=rar] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=rpm] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$="tar.gz"] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=z] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=zip] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='20' r='2'%3E%3C/circle%3E%3Cpath d='M10 7V6'%3E%3C/path%3E%3Cpath d='M10 12v-1'%3E%3C/path%3E%3Cpath d='M10 18v-2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=xml] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=py] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cgi] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=pl] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=js] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cpp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=c] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=h] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=hpp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=css] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=scss] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=sass] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=html] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=php] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=asp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=aspx] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=class] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=java] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=swift] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=vb] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cs] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m9 18 3-3-3-3'%3E%3C/path%3E%3Cpath d='m5 12-3 3 3 3'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=bin] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 12h2v6'%3E%3C/path%3E%3Crect x='2' y='12' width='4' height='6'%3E%3C/rect%3E%3Cpath d='M10 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=dmg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 12h2v6'%3E%3C/path%3E%3Crect x='2' y='12' width='4' height='6'%3E%3C/rect%3E%3Cpath d='M10 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=iso] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 12h2v6'%3E%3C/path%3E%3Crect x='2' y='12' width='4' height='6'%3E%3C/rect%3E%3Cpath d='M10 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=toast] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 12h2v6'%3E%3C/path%3E%3Crect x='2' y='12' width='4' height='6'%3E%3C/rect%3E%3Cpath d='M10 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=vcd] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M10 12h2v6'%3E%3C/path%3E%3Crect x='2' y='12' width='4' height='6'%3E%3C/rect%3E%3Cpath d='M10 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ai] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=bmp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=gif] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ico] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=jpeg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=jpg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=png] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ps] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=psd] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=svg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=tif] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=tiff] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=webp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='10' cy='13' r='2'%3E%3C/circle%3E%3Cpath d='m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=json] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1'%3E%3C/path%3E%3Cpath d='M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=csv] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M8 13h2'%3E%3C/path%3E%3Cpath d='M8 17h2'%3E%3C/path%3E%3Cpath d='M14 13h2'%3E%3C/path%3E%3Cpath d='M14 17h2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ods] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M8 13h2'%3E%3C/path%3E%3Cpath d='M8 17h2'%3E%3C/path%3E%3Cpath d='M14 13h2'%3E%3C/path%3E%3Cpath d='M14 17h2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=xls] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M8 13h2'%3E%3C/path%3E%3Cpath d='M8 17h2'%3E%3C/path%3E%3Cpath d='M14 13h2'%3E%3C/path%3E%3Cpath d='M14 17h2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=xlsm] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M8 13h2'%3E%3C/path%3E%3Cpath d='M8 17h2'%3E%3C/path%3E%3Cpath d='M14 13h2'%3E%3C/path%3E%3Cpath d='M14 17h2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=xlsx] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='M8 13h2'%3E%3C/path%3E%3Cpath d='M8 17h2'%3E%3C/path%3E%3Cpath d='M14 13h2'%3E%3C/path%3E%3Cpath d='M14 17h2'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=canvas] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 19.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8.5L18 5.5'%3E%3C/path%3E%3Cpath d='M8 18h1'%3E%3C/path%3E%3Cpath d='M18.42 9.61a2.1 2.1 0 1 1 2.97 2.97L16.95 17 13 18l.99-3.95 4.43-4.44Z'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=apk] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=bat] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=com] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=exe] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=gadget] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=jar] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=msi] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wsf] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=sh] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m8 16 2-2-2-2'%3E%3C/path%3E%3Cpath d='M12 18h4'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=avi] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=flv] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=h264] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=m4v] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mkv] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mov] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mp4] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mpg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=mpeg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=rm] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=swf] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=vob] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=webm] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wmv] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cpath d='m10 15.5 4 2.5v-6l-4 2.5'%3E%3C/path%3E%3Crect x='2' y='12' width='8' height='6' rx='1'%3E%3C/rect%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=bak] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cab] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cfg] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cpl] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=cur] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=dll] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=dmp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=drv] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=icns] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ico] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=ini] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=lnk] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=msi] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=sys] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=tmp] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ccircle cx='6' cy='14' r='3'%3E%3C/circle%3E%3Cpath d='M6 10v1'%3E%3C/path%3E%3Cpath d='M6 17v1'%3E%3C/path%3E%3Cpath d='M10 14H9'%3E%3C/path%3E%3Cpath d='M3 14H2'%3E%3C/path%3E%3Cpath d='m9 11-.88.88'%3E%3C/path%3E%3Cpath d='M3.88 16.12 3 17'%3E%3C/path%3E%3Cpath d='m9 17-.88-.88'%3E%3C/path%3E%3Cpath d='M3.88 11.88 3 11'%3E%3C/path%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=doc] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=docx] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=odt] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=pdf] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=rtf] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=tex] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=txt] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
body.lt-set-file-icons .nav-files-container .nav-file .nav-file-title[data-path$=wpd] > .nav-file-title-content:before {
|
|
|
|
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cline x1='10' y1='9' x2='8' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
|
|
|
|
|
-webkit-mask-size: 16px;
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls {
|
2023-02-16 20:12:14 +00:00
|
|
|
border: none;
|
|
|
|
|
background-color: var(--background-secondary);
|
2023-02-17 20:19:09 +00:00
|
|
|
padding: var(--size-4-1);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0;
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self {
|
|
|
|
|
padding: var(--size-4-2);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:hover {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:hover .graph-control-section-header {
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:hover:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-06-19 20:10:13 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:hover + .tree-item-children {
|
|
|
|
|
border-left: var(--nav-indentation-guide-width) solid var(--color-accent);
|
|
|
|
|
}
|
|
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:has(+ .tree-item-children:hover) .graph-control-section-header {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-self:has(+ .tree-item-children:hover) .tree-item-icon svg {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-children {
|
2023-06-19 20:10:13 +00:00
|
|
|
padding-right: var(--size-4-2);
|
|
|
|
|
padding-left: var(--nav-item-children-padding-left);
|
|
|
|
|
margin-left: var(--nav-item-children-margin-left);
|
|
|
|
|
border-left: var(--nav-indentation-guide-width) solid var(--nav-indentation-guide-color);
|
2023-02-17 20:19:09 +00:00
|
|
|
position: relative;
|
|
|
|
|
}
|
2023-06-19 20:10:13 +00:00
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-children:hover {
|
|
|
|
|
border-left: var(--nav-indentation-guide-width) solid var(--color-accent);
|
|
|
|
|
}
|
|
|
|
|
.view-content .graph-controls .graph-control-section.tree-item .tree-item-children .setting-item {
|
|
|
|
|
padding: var(--nav-item-padding);
|
2023-02-17 20:19:09 +00:00
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6 .cm-gutters .cm-lineNumbers {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6 .cm-gutters .cm-lineNumbers .cm-gutterElement {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6 .cm-gutters .cm-lineNumbers .cm-gutterElement:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
border-right: 1px solid var(--background-secondary);
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: calc(-1 * var(--size-2-3));
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-source-view.mod-cm6 .cm-gutters .cm-lineNumbers .cm-gutterElement.cm-active {
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.markdown-source-view.mod-cm6 .cm-gutters .cm-lineNumbers .cm-gutterElement.cm-active:before {
|
|
|
|
|
border-right: 1px solid var(--color-accent);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.modal.mod-settings .vertical-tab-header {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: var(--modal-radius);
|
|
|
|
|
}
|
|
|
|
|
.modal .modal-sidebar {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: var(--modal-radius);
|
|
|
|
|
transition: width 50ms;
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-search-results .community-item {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-search-results .community-item:not(.is-selected):hover {
|
|
|
|
|
background-color: var(--background-primary-alt);
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-search-results .community-item:not(.is-selected):hover .community-item-name {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-details {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-details .modal-setting-nav-bar {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.modal .community-modal-details .community-modal-info {
|
|
|
|
|
padding: var(--size-4-4) var(--size-4-12);
|
|
|
|
|
}
|
2023-02-16 20:12:14 +00:00
|
|
|
.prompt {
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
.prompt .prompt-input-container input.prompt-input {
|
|
|
|
|
border: none;
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
border-radius: var(--radius-l);
|
|
|
|
|
}
|
|
|
|
|
.prompt .prompt-instructions {
|
|
|
|
|
position: relative;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.prompt .prompt-instructions:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: var(--size-4-4);
|
|
|
|
|
right: var(--size-4-4);
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
}
|
|
|
|
|
.prompt .prompt-instructions .prompt-instruction .prompt-instruction-command {
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.status-bar-item.mod-clickable:hover {
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.suggestion-container {
|
2023-02-16 20:12:14 +00:00
|
|
|
border: none;
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.suggestion-item {
|
|
|
|
|
color: var(--text-muted);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.suggestion-item .suggestion-highlight {
|
|
|
|
|
color: var(--text-normal);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.suggestion-item.is-selected {
|
|
|
|
|
color: var(--text-accent);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.suggestion-item.is-selected .suggestion-highlight {
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
}
|
|
|
|
|
.suggestion-item.is-selected .suggestion-hotkey {
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-rendered table {
|
|
|
|
|
border-radius: var(--radius-m);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > thead > tr {
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border-hover);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > thead > tr:hover {
|
2023-07-27 20:42:42 +00:00
|
|
|
background-color: var(--background-modifier-hover);
|
2023-02-19 22:33:04 +00:00
|
|
|
}
|
|
|
|
|
.markdown-rendered table > thead > tr > th {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.markdown-rendered table > thead > tr > th:first-child {
|
|
|
|
|
border-radius: var(--radius-m) 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > thead > tr > th:last-child {
|
|
|
|
|
border-radius: 0 var(--radius-m) 0 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-rendered table > tbody > tr {
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > tbody > tr:hover {
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border-hover);
|
2023-07-27 20:42:42 +00:00
|
|
|
background-color: var(--background-modifier-hover) !important;
|
2023-02-19 22:33:04 +00:00
|
|
|
}
|
|
|
|
|
.markdown-rendered table > tbody > tr:has(+ tr:hover) {
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border-hover);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > tbody > tr > td {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > tbody > tr:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.markdown-rendered table > tbody > tr:last-child > td:first-child {
|
|
|
|
|
border-radius: 0 0 0 var(--radius-m);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table > tbody > tr:last-child > td:last-child {
|
|
|
|
|
border-radius: 0 0 var(--radius-m) 0;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-rendered table :is(td, th) {
|
|
|
|
|
padding: var(--size-4-2) var(--size-4-4);
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered table :is(td, th):hover {
|
2023-07-27 20:42:42 +00:00
|
|
|
background-color: var(--background-modifier-hover) !important;
|
2023-02-19 22:33:04 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.titlebar .titlebar-button svg {
|
|
|
|
|
color: var(--text-muted);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.titlebar .titlebar-button:hover svg {
|
|
|
|
|
color: var(--text-accent);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.titlebar .titlebar-button.mod-close:hover svg {
|
|
|
|
|
color: var(--text-normal);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-05-15 20:03:25 +00:00
|
|
|
.tree-item .tree-item-self {
|
|
|
|
|
padding-left: var(--size-4-2) !important;
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.tree-item .tree-item-self:has(> .tree-item-icon) {
|
|
|
|
|
padding-left: var(--size-4-6) !important;
|
|
|
|
|
}
|
2023-05-15 20:03:25 +00:00
|
|
|
.tree-item .tree-item-self.mod-collapsible {
|
|
|
|
|
padding-left: var(--size-4-6) !important;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.tree-item .tree-item-self .tree-item-inner {
|
2023-04-15 09:27:37 +00:00
|
|
|
--lt-file-icon-color: var(--nav-item-color);
|
2023-02-19 22:33:04 +00:00
|
|
|
color: var(--nav-item-color);
|
|
|
|
|
transition: color 50ms;
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-self .tree-item-icon svg {
|
|
|
|
|
transition: color 50ms;
|
|
|
|
|
}
|
2023-04-15 09:27:37 +00:00
|
|
|
.tree-item .tree-item-self.is-active .tree-item-inner {
|
|
|
|
|
--lt-file-icon-color: var(--nav-item-color-active) !important;
|
|
|
|
|
color: var(--nav-item-color-active) !important;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.tree-item .tree-item-self:hover .tree-item-inner {
|
2023-04-15 09:27:37 +00:00
|
|
|
--lt-file-icon-color: var(--text-accent);
|
2023-02-19 22:33:04 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-self:hover .tree-item-icon svg {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-self:hover + .tree-item-children {
|
|
|
|
|
border-left: var(--nav-indentation-guide-width) solid var(--color-accent);
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-children {
|
|
|
|
|
transition: border-left-color 50ms;
|
|
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
.tree-item .tree-item-children > :only-child {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item > .tree-item-self:not(.mod-collapsible):hover) .tree-item-inner,
|
|
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item.is-collapsed > .tree-item-self.mod-collapsible:hover) .tree-item-inner {
|
2023-04-15 09:27:37 +00:00
|
|
|
--lt-file-icon-color: var(--text-accent);
|
2023-02-19 22:33:04 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item > .tree-item-self:not(.mod-collapsible):hover) .tree-item-icon svg,
|
|
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item.is-collapsed > .tree-item-self.mod-collapsible:hover) .tree-item-icon svg {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item > .tree-item-self:not(.mod-collapsible):hover) + .tree-item-children,
|
|
|
|
|
.tree-item .tree-item-self:has(+ .tree-item-children > .tree-item.is-collapsed > .tree-item-self.mod-collapsible:hover) + .tree-item-children {
|
|
|
|
|
border-left: var(--nav-indentation-guide-width) solid var(--color-accent);
|
|
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
.meta-bind-plugin-card > :first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.meta-bind-plugin-card > :last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.meta-bind-plugin-select-input-element .meta-bind-plugin-select-input-element-hover {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.meta-bind-plugin-select-input-element .meta-bind-plugin-select-input-element-selected {
|
|
|
|
|
color: var(--text-on-accent);
|
|
|
|
|
background-color: var(--color-accent);
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.meta-bind-plugin-input-wrapper select.meta-bind-plugin-input-element-group-element {
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
}
|
|
|
|
|
.meta-bind-plugin-input-wrapper input {
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
body {
|
|
|
|
|
--tab-outline-width: 0px;
|
|
|
|
|
--modal-border-width: 0px;
|
|
|
|
|
--prompt-border-width: 0px;
|
|
|
|
|
--status-bar-border-width: 0px;
|
|
|
|
|
--divider-width: 0px;
|
|
|
|
|
--tab-divider-color: transparent;
|
|
|
|
|
--tab-text-color-focused-active-current: var(--text-accent);
|
|
|
|
|
--titlebar-background: var(--background-secondary-alt);
|
|
|
|
|
--blockquote-background-color: rgb(var(--callout-quote), 0.10);
|
|
|
|
|
--blockquote-border-thickness: 0px;
|
|
|
|
|
--callout-radius: var(--radius-m);
|
|
|
|
|
--embed-block-shadow-hover: 0 0 0 1px var(--color-accent);
|
|
|
|
|
--nav-item-background-active: var(--color-accent);
|
|
|
|
|
--nav-item-color-active: var(--text-on-accent);
|
|
|
|
|
--nav-item-color-hover: var(--text-accent);
|
2023-05-15 20:03:25 +00:00
|
|
|
--nav-item-children-padding-left: var(--size-4-2);
|
2023-12-07 12:28:31 +00:00
|
|
|
--nav-item-padding: var(--size-4-1) var(--size-4-2) var(--size-4-1) var(--size-4-6);
|
2023-02-17 20:19:09 +00:00
|
|
|
--icon-color-focused: var(--text-accent);
|
|
|
|
|
--icon-color-active: var(--text-accent);
|
|
|
|
|
--icon-color-hover: var(--text-accent);
|
|
|
|
|
--status-bar-background: var(--background-secondary-alt);
|
|
|
|
|
--status-bar-radius: 0px;
|
|
|
|
|
--status-bar-position: unset;
|
|
|
|
|
--indentation-guide-color-active: var(--text-accent);
|
|
|
|
|
--list-bullet-border: 0px;
|
|
|
|
|
--list-bullet-radius: 1px;
|
|
|
|
|
--lt-list-bullet-height: 2px;
|
|
|
|
|
--lt-list-bullet-width: 6px;
|
2023-03-03 17:31:23 +00:00
|
|
|
--lt-file-icon-color: var(--text-faint);
|
2023-06-19 20:10:13 +00:00
|
|
|
--lt-gradient-pride: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141), rgb(57, 84, 165), rgb(97, 55, 155), rgb(147, 40, 142));
|
|
|
|
|
--lt-gradient-trans: linear-gradient(to right, rgb(85, 205, 252), rgb(179, 157, 233), rgb(247, 168, 184), rgb(246, 216, 221), rgb(255, 255, 255) 45%, rgb(255, 255, 255), rgb(255, 255, 255) 55%, rgb(246, 216, 221), rgb(247, 168, 184), rgb(179, 157, 233), rgb(85, 205, 252));
|
|
|
|
|
--lt-gradient-lesbian: linear-gradient(to right, rgb(213, 44, 0), rgb(226, 150, 136), rgb(255, 255, 255) 45%, rgb(255, 255, 255), rgb(255, 255, 255) 55%, rgb(210, 127, 164), rgb(162, 2, 98));
|
|
|
|
|
--lt-gradient-gay: linear-gradient(to right, rgb(7, 141, 111), rgb(152, 202, 153), rgb(255, 255, 255) 45%, rgb(255, 255, 255), rgb(255, 255, 255) 55%, rgb(205, 208, 234), rgb(123, 173, 226) 70%, rgb(69, 76, 189), rgb(63, 26, 121));
|
|
|
|
|
--lt-gradient-non-bin: linear-gradient(to right, rgb(253, 219, 0), rgb(238, 212, 143), rgb(255, 255, 255) 30%, rgb(255, 255, 255), rgb(255, 255, 255) 36%, rgb(212, 181, 222), rgb(156, 92, 212), rgb(88, 50, 96), rgb(0, 0, 0));
|
2023-12-07 12:28:31 +00:00
|
|
|
--table-selection-border-radius: var(--radius-m);
|
|
|
|
|
--table-border-width: 1px;
|
2023-02-17 20:19:09 +00:00
|
|
|
--accent-h: 46deg;
|
|
|
|
|
--accent-s: 95%;
|
|
|
|
|
--accent-l: 65%;
|
|
|
|
|
--background-primary: var(--color-base-00);
|
|
|
|
|
--background-primary-alt: var(--color-base-10);
|
|
|
|
|
--background-secondary: var(--color-base-20);
|
|
|
|
|
--background-modifier-hover: rgba(var(--mono-rgb-100), 0.075);
|
|
|
|
|
--background-modifier-active-hover: hsla(var(--interactive-accent-hsl), 0.15);
|
|
|
|
|
--background-modifier-border: var(--color-base-30);
|
2023-02-19 22:33:04 +00:00
|
|
|
--background-modifier-border-hover: var(--color-base-50);
|
|
|
|
|
--background-modifier-border-focus: var(--color-base-50);
|
2023-02-17 20:19:09 +00:00
|
|
|
--background-modifier-error-rgb: var(--color-red-rgb);
|
|
|
|
|
--background-modifier-error: var(--color-red);
|
|
|
|
|
--background-modifier-error-hover: var(--color-red);
|
|
|
|
|
--background-modifier-success-rgb: var(--color-green-rgb);
|
|
|
|
|
--background-modifier-success: var(--color-green);
|
|
|
|
|
--background-modifier-message: rgba(0, 0, 0, 0.9);
|
|
|
|
|
--background-modifier-form-field: var(--color-base-00);
|
|
|
|
|
--text-normal: var(--color-base-100);
|
|
|
|
|
--text-muted: var(--color-base-70);
|
|
|
|
|
--text-faint: var(--color-base-50);
|
|
|
|
|
--text-on-accent: var(--color-base-00);
|
|
|
|
|
--text-error: var(--color-red);
|
|
|
|
|
--text-success: var(--color-green);
|
|
|
|
|
--text-selection: hsl(0, 0%, 100%, 0.2);
|
|
|
|
|
--text-accent: var(--color-accent);
|
|
|
|
|
--text-accent-hover: var(--color-accent-2);
|
|
|
|
|
--interactive-normal: var(--color-base-00);
|
|
|
|
|
--interactive-hover: var(--color-base-10);
|
|
|
|
|
--interactive-accent-hsl: var(--color-accent-hsl);
|
|
|
|
|
--interactive-accent: var(--color-accent-1);
|
|
|
|
|
--interactive-accent-hover: var(--color-accent-2);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.theme-dark {
|
|
|
|
|
color-scheme: dark;
|
|
|
|
|
--highlight-mix-blend-mode: lighten;
|
|
|
|
|
--mono-rgb-0:
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0;
|
|
|
|
|
--mono-rgb-100:
|
|
|
|
|
255,
|
|
|
|
|
255,
|
|
|
|
|
255;
|
|
|
|
|
--color-red-rgb:
|
|
|
|
|
255,
|
|
|
|
|
107,
|
|
|
|
|
129;
|
|
|
|
|
--color-red: #ff6b81;
|
|
|
|
|
--color-green-rgb:
|
|
|
|
|
123,
|
|
|
|
|
237,
|
|
|
|
|
159;
|
|
|
|
|
--color-green: #7bed9f;
|
|
|
|
|
--color-orange-rgb:
|
|
|
|
|
255,
|
|
|
|
|
127,
|
|
|
|
|
80;
|
|
|
|
|
--color-orange: #ff7f50;
|
|
|
|
|
--color-yellow-rgb:
|
|
|
|
|
251,
|
|
|
|
|
211,
|
|
|
|
|
81;
|
|
|
|
|
--color-yellow: hsl(46deg, 95%, 65%);
|
|
|
|
|
--color-cyan-rgb:
|
|
|
|
|
112,
|
|
|
|
|
161,
|
|
|
|
|
255;
|
|
|
|
|
--color-cyan: #70a1ff;
|
|
|
|
|
--color-blue-rgb:
|
|
|
|
|
83,
|
|
|
|
|
82,
|
|
|
|
|
237;
|
|
|
|
|
--color-blue: #5352ed;
|
|
|
|
|
--color-purple-rgb:
|
|
|
|
|
168,
|
|
|
|
|
130,
|
|
|
|
|
255;
|
|
|
|
|
--color-purple: #a882ff;
|
|
|
|
|
--color-pink-rgb:
|
|
|
|
|
250,
|
|
|
|
|
153,
|
|
|
|
|
205;
|
|
|
|
|
--color-pink: #fa99cd;
|
|
|
|
|
--color-base-00: #202020;
|
|
|
|
|
--color-base-05: #242424;
|
|
|
|
|
--color-base-10: #282828;
|
|
|
|
|
--color-base-15: #2b2b2b;
|
|
|
|
|
--color-base-20: #303030;
|
|
|
|
|
--color-base-25: #383838;
|
|
|
|
|
--color-base-30: #404040;
|
|
|
|
|
--color-base-35: #484848;
|
|
|
|
|
--color-base-40: #505050;
|
|
|
|
|
--color-base-50: #707070;
|
|
|
|
|
--color-base-60: #909090;
|
|
|
|
|
--color-base-70: #a0a0a0;
|
2023-03-03 17:31:23 +00:00
|
|
|
--color-base-80: #c0c0c0;
|
|
|
|
|
--color-base-90: #e0e0e0;
|
2023-02-17 20:19:09 +00:00
|
|
|
--color-base-100: #ffffff;
|
|
|
|
|
--color-accent-hsl:
|
|
|
|
|
var(--accent-h),
|
|
|
|
|
var(--accent-s),
|
|
|
|
|
var(--accent-l);
|
|
|
|
|
--color-accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
|
|
|
|
|
--color-accent-1: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 3.8%));
|
|
|
|
|
--color-accent-2: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) + 3.8%));
|
|
|
|
|
--background-modifier-form-field: var(--color-base-25);
|
|
|
|
|
--background-secondary-alt: var(--color-base-25);
|
|
|
|
|
--interactive-normal: var(--color-base-30);
|
|
|
|
|
--interactive-hover: var(--color-base-35);
|
|
|
|
|
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
|
|
|
|
--background-modifier-cover: rgba(10, 10, 10, 0.4);
|
|
|
|
|
--text-highlight-bg: rgba(255, 208, 0, 0.4);
|
|
|
|
|
--text-highlight-bg-active: rgba(255, 128, 0, 0.4);
|
|
|
|
|
--text-selection: rgba(255, 255, 255, 0.2);
|
|
|
|
|
--input-shadow: 0 0 0 0 transparent;
|
|
|
|
|
--input-shadow-hover: 0 0 0 0 transparent;
|
|
|
|
|
--shadow-s:
|
|
|
|
|
0px 1px 2px rgba(0, 0, 0, 0.05),
|
|
|
|
|
0px 3.4px 6.7px rgba(0, 0, 0, 0.1),
|
|
|
|
|
0px 15px 30px rgba(0, 0, 0, 0.15);
|
|
|
|
|
--shadow-l:
|
|
|
|
|
0px 1.8px 7.3px rgba(0, 0, 0, 0.05),
|
|
|
|
|
0px 6.3px 24.7px rgba(0, 0, 0, 0.1),
|
|
|
|
|
0px 30px 90px rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
--font-default: var(--font-monospace);
|
|
|
|
|
--font-monospace-default:
|
|
|
|
|
Menlo,
|
|
|
|
|
SFMono-Regular,
|
|
|
|
|
Consolas,
|
|
|
|
|
"Roboto Mono",
|
|
|
|
|
"Source Code Pro",
|
|
|
|
|
monospace;
|
|
|
|
|
--font-interface-override: "??";
|
|
|
|
|
--font-interface-theme: "??";
|
|
|
|
|
--font-interface:
|
|
|
|
|
var(--font-interface-override),
|
|
|
|
|
var(--font-interface-theme),
|
|
|
|
|
var(--default-font, "??"),
|
|
|
|
|
var(--font-default);
|
|
|
|
|
--font-text-override: "??";
|
|
|
|
|
--font-text-theme: "??";
|
|
|
|
|
--font-text:
|
|
|
|
|
var(--font-text-override),
|
|
|
|
|
var(--font-text-theme),
|
|
|
|
|
var(--font-interface);
|
|
|
|
|
--font-monospace-override: "??";
|
|
|
|
|
--font-monospace-theme: "??";
|
|
|
|
|
--font-monospace:
|
|
|
|
|
var(--font-monospace-override),
|
|
|
|
|
var(--font-monospace-theme),
|
|
|
|
|
var(--font-monospace-default);
|
|
|
|
|
--font-text-size: 16px;
|
|
|
|
|
--font-mermaid: var(--font-text);
|
|
|
|
|
}
|
|
|
|
|
body.theme-dark {
|
|
|
|
|
--canvas-color:
|
|
|
|
|
80,
|
|
|
|
|
80,
|
|
|
|
|
80;
|
|
|
|
|
--lt-canvas-hover-color:
|
|
|
|
|
112,
|
|
|
|
|
112,
|
|
|
|
|
112;
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.mod-left-split > :nth-child(1 of .workspace-tabs) {
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
.mod-left-split > :nth-child(1 of .workspace-tabs) > .workspace-tab-container {
|
2023-02-17 20:19:09 +00:00
|
|
|
border-top-right-radius: var(--radius-l);
|
2023-12-07 12:28:31 +00:00
|
|
|
}
|
|
|
|
|
.mod-left-split > :nth-last-child(1 of .workspace-tabs) {
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
.mod-left-split > :nth-last-child(1 of .workspace-tabs) > .workspace-tab-container {
|
2023-02-17 20:19:09 +00:00
|
|
|
border-bottom-right-radius: var(--radius-l);
|
|
|
|
|
}
|
2023-12-07 12:28:31 +00:00
|
|
|
.mod-right-split > :nth-child(1 of .workspace-tabs) {
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
.mod-right-split > :nth-child(1 of .workspace-tabs) > .workspace-tab-container {
|
2023-02-17 20:19:09 +00:00
|
|
|
border-top-left-radius: var(--radius-l);
|
2023-12-07 12:28:31 +00:00
|
|
|
}
|
|
|
|
|
.mod-right-split > :nth-last-child(1 of .workspace-tabs) {
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
.mod-right-split > :nth-last-child(1 of .workspace-tabs) > .workspace-tab-container {
|
2023-02-17 20:19:09 +00:00
|
|
|
border-bottom-left-radius: var(--radius-l);
|
|
|
|
|
}
|
2023-07-27 20:42:42 +00:00
|
|
|
.workspace-tab-header:hover {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
|
|
|
|
.workspace-tab-header:hover .workspace-tab-header-inner-icon > svg {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.menu {
|
2023-02-16 20:12:14 +00:00
|
|
|
border: none;
|
2023-02-17 20:19:09 +00:00
|
|
|
background: var(--background-secondary-alt);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.menu .menu-item.selected {
|
2023-02-16 20:12:14 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.menu .menu-item.selected .menu-item-icon {
|
|
|
|
|
color: var(--text-accent);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.menu .menu-item.is-warning.selected {
|
|
|
|
|
color: var(--text-error);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.menu .menu-item.is-warning.selected .menu-item-icon {
|
|
|
|
|
color: var(--text-error);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-07-27 20:42:42 +00:00
|
|
|
.metadata-container .metadata-property:focus-within {
|
|
|
|
|
box-shadow: 0 0 0 1px var(--color-accent);
|
|
|
|
|
}
|
2023-02-17 20:19:09 +00:00
|
|
|
.list-bullet:after {
|
|
|
|
|
height: var(--lt-list-bullet-height);
|
|
|
|
|
width: var(--lt-list-bullet-width);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
.cm-active .cm-formatting.cm-formatting-list.cm-formatting-list-ul {
|
|
|
|
|
color: var(--text-accent);
|
2023-02-16 20:12:14 +00:00
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
.cm-active .cm-formatting.cm-formatting-list.cm-formatting-list-ol {
|
2023-02-17 20:19:09 +00:00
|
|
|
color: var(--text-accent);
|
2023-02-04 02:05:56 +00:00
|
|
|
}
|
2023-03-03 17:31:23 +00:00
|
|
|
.cm-active .list-bullet:after {
|
|
|
|
|
background-color: var(--text-accent);
|
|
|
|
|
}
|
2023-02-19 22:33:04 +00:00
|
|
|
.markdown-rendered h1,
|
|
|
|
|
.markdown-rendered h2,
|
|
|
|
|
.markdown-rendered h3,
|
|
|
|
|
.markdown-rendered h4,
|
|
|
|
|
.markdown-rendered h5,
|
|
|
|
|
.markdown-rendered h6 {
|
|
|
|
|
margin-top: 45px;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered div:has(> :is(h1)) + div > h2 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered div:has(> :is(h1, h2)) + div > h3 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered div:has(> :is(h1, h2, h3)) + div > h4 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered div:has(> :is(h1, h2, h3, h4)) + div > h5 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.markdown-rendered div:has(> :is(h1, h2, h3, h4, h5)) + div > h6 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
pre code[class*=language-] {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
}
|
|
|
|
|
.image-embed[alt]:not([alt$=".png"], [alt$=".jpg"], [alt$=".jpeg"], [alt$=".tiff"])::after {
|
|
|
|
|
content: attr(alt);
|
|
|
|
|
display: block;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-family: var(--font-interface);
|
|
|
|
|
font-size: var(--font-smaller);
|
|
|
|
|
}
|
2023-02-16 20:12:14 +00:00
|
|
|
textarea,
|
|
|
|
|
input[type=text],
|
|
|
|
|
input[type=search],
|
|
|
|
|
input[type=email],
|
|
|
|
|
input[type=password],
|
|
|
|
|
input[type=number] {
|
|
|
|
|
border: none;
|
2023-02-04 02:05:56 +00:00
|
|
|
}
|