forked from Rudtrack/structured-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (101 loc) · 2.16 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* Structured Embed Styles */
.structured-embed.mod-empty,
.markdown-source-view.mod-cm6 .cm-content > .structured-embed.mod-empty {
display: flex;
align-items: center;
}
.structured-embed .structured-icon {
--icon-size: var(--icon-s);
}
.structured-embed.mod-empty .structured-icon {
margin: 0px 8px;
}
.structured-embed.markdown-embed .structured-icon {
margin: 4px;
}
/* Folder Suggestion Styles */
.structured-folder-suggest .suggestion-item {
word-break: break-all;
}
.suggestion-width-dynamic {
width: var(--suggestion-width);
}
.suggestion-item .suggestion-path {
font-size: 0.85em;
color: var(--text-muted);
}
/* LookupModal Styles */
.suggestion-item .suggestion-title b {
font-weight: bold;
color: var(--text-accent);
}
.suggestion-item .suggestion-path b {
font-weight: bold;
color: var(--text-accent);
}
/* Rename Modal Styles */
.structured-rename-modal {
--modal-width: 500px;
--modal-min-width: 300px;
--modal-max-width: 1000px;
}
.structured-rename-modal .structured-rename-input-container {
padding: 0 20px;
margin-bottom: 1em;
}
.structured-rename-modal .structured-rename-input {
width: 100%;
padding: 12px 10px;
font-size: 15px;
height: 25px;
}
.structured-rename-modal .setting-item {
border-top: none;
padding-top: 0;
justify-content: flex-end;
}
/* Tree Item Styles */
.structured-tree-not-found {
background: rgb(var(--callout-warning));
width: var(--size-4-2);
height: var(--size-4-2);
border-radius: 100%;
flex-shrink: 0;
margin-left: var(--size-2-3);
align-self: center;
}
.tree-item-inner.missing-link {
color: var(--text-muted);
font-style: italic;
}
/* Navigation Styles */
.nav-header {
display: flex;
justify-content: flex-start;
padding: 8px;
}
.nav-buttons-container {
display: flex;
}
.nav-action-button {
color: var(--text-muted);
padding: 4px;
border-radius: 4px;
cursor: pointer;
}
.nav-action-button:hover {
color: var(--text-normal);
background-color: var(--interactive-hover);
}
.nav-action-button svg {
width: 16px;
height: 16px;
display: block;
}
.excluded-path {
opacity: 0.6;
}
.excluded-label {
font-style: italic;
color: var(--text-muted);
}