forked from esm7/obsidian-map-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
46 lines (37 loc) · 743 Bytes
/
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
.map-view-marker-name {
font-weight: bold;
}
.map-view-extra-name {
font-weight: bold;
}
.map-view-marker-snippet {
white-space: pre-line;
overflow-wrap: break-word;
}
.map-view-location {
font-weight: bold;
text-decoration: underline;
}
.graph-controls {
position: fixed;
z-index: 2;
margin-top: 36px;
}
.graph-control-div {
display: inline-block;
}
.graph-control-content {
max-height: 0px;
overflow: hidden;
transition: max-height .25s ease-in-out;
}
.toggle:checked + .lbl-toggle + .graph-control-content {
max-height: 100vh;
}
.settings-dense-button {
margin-right: 0;
}
.leaflet-container .dark-mode {
filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg)
saturate(0.3) brightness(0.7);
}