forked from matthewturk/obsidian-binary-file-manager-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (36 loc) · 813 Bytes
/
styles.css
File metadata and controls
40 lines (36 loc) · 813 Bytes
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
.binary-file-manager-text-error {
color: var(--text-error);
}
.binary-file-manager-extensions-container {
display: flex;
flex-wrap: wrap;
gap: 0.5em;
margin-top: 0.5em;
margin-bottom: 1em;
}
.binary-file-manager-extension-chip {
display: flex;
align-items: center;
background: var(--background-secondary-alt);
color: var(--text-normal);
border-radius: 1em;
padding: 0.2em 0.8em 0.2em 0.8em;
font-size: 0.95em;
margin: 0;
line-height: 1.5;
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.binary-file-manager-extension-chip .remove-btn {
margin-left: 0.5em;
cursor: pointer;
color: var(--text-faint);
font-size: 1.1em;
border: none;
background: none;
padding: 0;
line-height: 1;
transition: color 0.15s;
}
.binary-file-manager-extension-chip .remove-btn:hover {
color: var(--text-error);
}