-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylus.css
69 lines (57 loc) · 1.62 KB
/
stylus.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
html {
font-family: "iA Writer Quattro V", system-ui, sans-serif;
-webkit-font-smoothing: subpixel-antialiased;
--baseFontSize: 0.9rem;
--checkboxBorderRadius: 3.75px;
}
.checkWrap {
margin-left: 1.5px;
}
/* MAKE ALL BULLET GAPS THE SAME */
[class*="OutlinerItem-module_children"] {
padding-bottom: 0px;
}
/* SCOOT TODO BOXES OVER TO THE LEFT TO REPLACE THE BULLET FOR TASKS */
[class*="OutlinerItem-module_content"] .doneCheckboxLabel {
margin-left: -1.5rem !important;
padding-right: 0.125rem !important;
transform: scale(1.025) !important;
transform: translateY(-0.25px) !important;
}
.doneCheckboxLabel input[type="checkbox"] {
background-position: top;
border-radius: var(--checkboxBorderRadius);
}
.doneCheckboxLabel input[type="checkbox"]:checked {
background-color: var(--colorGreen500);
}
.doneCheckboxLabel input[type="checkbox"]:focus:before {
border: 1.75px solid var(--colorGreen600);
border-radius: calc(var(--checkboxBorderRadius) + 1px);
}
div[data-tag-name="journal"] b {
font-weight: normal;
color: #84caff;
opacity: 0.75;
}
div[data-tag-name="journal"] b:after {
content: " | ";
}
.editable .disappearingCaret {
width: 0;
}
.inlinerefnode {
/* top | left and right | bottom */
padding: 0px 3px 3px;
margin: 0 -3px;
}
a[href ^= http]:not(.hide-external-link-icon):after,
a[href ^= "https://"]:not(.hide-external-link-icon):after
{
margin-left: -1px;
margin-right: 0.35em;
}
/* SHRINK COMMAND BUTTON PADDING FOR COMMANDS WITH ICONS TO MATCH SIZE OF COMMANDS WITH TEXT ONLY */
[class*="Button-module_buttonGroup"] [class*="ObjectAvatar-module_inherit"] {
margin: -1px !important;
}