moveros 4.0.8 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/install.js +4 -2
- package/package.json +1 -1
- package/src/hooks/context-staleness.sh +46 -46
- package/src/hooks/dirty-tree-guard.sh +33 -33
- package/src/hooks/engine-protection.sh +43 -43
- package/src/hooks/git-safety.sh +47 -47
- package/src/hooks/pre-compact-backup.sh +177 -177
- package/src/hooks/session-log-reminder.sh +135 -73
- package/src/skills/systematic-debugging/CREATION-LOG.md +119 -119
- package/src/skills/systematic-debugging/SKILL.md +296 -296
- package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -158
- package/src/skills/systematic-debugging/condition-based-waiting.md +115 -115
- package/src/skills/systematic-debugging/defense-in-depth.md +122 -122
- package/src/skills/systematic-debugging/find-polluter.sh +63 -63
- package/src/skills/systematic-debugging/root-cause-tracing.md +169 -169
- package/src/skills/systematic-debugging/test-academic.md +14 -14
- package/src/skills/systematic-debugging/test-pressure-1.md +58 -58
- package/src/skills/systematic-debugging/test-pressure-2.md +68 -68
- package/src/skills/systematic-debugging/test-pressure-3.md +69 -69
- package/src/structure/01_Projects/_Template Project/plan.md +55 -55
- package/src/structure/01_Projects/_Template Project/project_brief.md +45 -45
- package/src/structure/02_Areas/Engine/Active_Context.md +146 -146
- package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -36
- package/src/structure/02_Areas/Engine/Daily_Template.md +133 -133
- package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -86
- package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -120
- package/src/structure/02_Areas/Engine/Strategy_template.md +65 -65
- package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -55
- package/src/structure/03_Library/SOPs/Zone_Operating.md +57 -57
- package/src/system/V4_CONTEXT.md +262 -262
- package/src/theme/minimal-theme.css +271 -271
- package/src/workflows/analyse-day.md +401 -401
- package/src/workflows/debug-resistance.md +180 -180
- package/src/workflows/harvest.md +239 -239
- package/src/workflows/ignite.md +720 -720
- package/src/workflows/init-plan.md +16 -16
- package/src/workflows/morning.md +222 -222
- package/src/workflows/overview.md +203 -203
- package/src/workflows/pivot-strategy.md +218 -218
- package/src/workflows/plan-tomorrow.md +308 -308
- package/src/workflows/primer.md +207 -207
- package/src/workflows/reboot.md +201 -201
- package/src/workflows/refactor-plan.md +135 -135
- package/src/workflows/review-week.md +558 -558
- package/src/workflows/setup.md +388 -388
- package/src/workflows/update.md +10 -13
- package/src/workflows/walkthrough.md +523 -523
|
@@ -1,272 +1,272 @@
|
|
|
1
|
-
/* =============================================
|
|
2
|
-
RAMS-STYLE MINIMAL
|
|
3
|
-
- Grayscale decorative emojis only
|
|
4
|
-
- STATUS emojis (🟢🟡🔴🎯💸) stay colored
|
|
5
|
-
- Dimmer headings, clean spacing
|
|
6
|
-
============================================= */
|
|
7
|
-
|
|
8
|
-
/* =========== CORE: Pure grayscale =========== */
|
|
9
|
-
|
|
10
|
-
body,
|
|
11
|
-
.markdown-source-view,
|
|
12
|
-
.markdown-preview-view,
|
|
13
|
-
.cm-s-obsidian {
|
|
14
|
-
--text-normal: #888888 !important;
|
|
15
|
-
--text-muted: #606060 !important;
|
|
16
|
-
--text-faint: #404040 !important;
|
|
17
|
-
--background-primary: #0a0a0a !important;
|
|
18
|
-
--background-secondary: #111111 !important;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* All text - single gray tone */
|
|
22
|
-
p,
|
|
23
|
-
li,
|
|
24
|
-
.cm-line {
|
|
25
|
-
color: #888888 !important;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
/* =========== HEADINGS: Dimmer =========== */
|
|
29
|
-
|
|
30
|
-
h1,
|
|
31
|
-
h2,
|
|
32
|
-
h3,
|
|
33
|
-
h4,
|
|
34
|
-
h5,
|
|
35
|
-
h6,
|
|
36
|
-
.cm-header-1,
|
|
37
|
-
.cm-header-2,
|
|
38
|
-
.cm-header-3,
|
|
39
|
-
.HyperMD-header-1,
|
|
40
|
-
.HyperMD-header-2,
|
|
41
|
-
.HyperMD-header-3 {
|
|
42
|
-
color: #a0a0a0 !important;
|
|
43
|
-
font-weight: 500 !important;
|
|
44
|
-
letter-spacing: -0.01em !important;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
h1,
|
|
48
|
-
.cm-header-1 {
|
|
49
|
-
font-weight: 600 !important;
|
|
50
|
-
color: #b0b0b0 !important;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Add space after heading text (before next content) */
|
|
54
|
-
.markdown-preview-view h1::after,
|
|
55
|
-
.markdown-preview-view h2::after,
|
|
56
|
-
.markdown-preview-view h3::after {
|
|
57
|
-
content: "" !important;
|
|
58
|
-
display: block !important;
|
|
59
|
-
margin-bottom: 0.5em !important;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/* =========== GRAYSCALE DECORATIVE EMOJIS ONLY =========== */
|
|
63
|
-
|
|
64
|
-
/* Target emojis in headings and general content */
|
|
65
|
-
.cm-header .cm-emoji,
|
|
66
|
-
h1 .emoji,
|
|
67
|
-
h2 .emoji,
|
|
68
|
-
h3 .emoji,
|
|
69
|
-
.HyperMD-header .cm-emoji {
|
|
70
|
-
filter: grayscale(100%) !important;
|
|
71
|
-
opacity: 0.5 !important;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/* PRESERVE status indicator colors (🟢🟡🔴🎯💸) */
|
|
75
|
-
/* These are typically in table cells, not headings */
|
|
76
|
-
td .emoji,
|
|
77
|
-
td span,
|
|
78
|
-
.markdown-preview-view td {
|
|
79
|
-
filter: none !important;
|
|
80
|
-
opacity: 1 !important;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* =========== LINKS: Differentiated by status =========== */
|
|
84
|
-
|
|
85
|
-
/* Regular links and created wikilinks */
|
|
86
|
-
a,
|
|
87
|
-
.cm-link,
|
|
88
|
-
.internal-link,
|
|
89
|
-
.external-link {
|
|
90
|
-
color: #707070 !important;
|
|
91
|
-
text-decoration: none !important;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
a:hover,
|
|
95
|
-
.internal-link:hover {
|
|
96
|
-
color: #a0a0a0 !important;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* Unresolved links (non-created notes) - dimmer */
|
|
100
|
-
.internal-link.is-unresolved {
|
|
101
|
-
color: #505050 !important;
|
|
102
|
-
opacity: 0.6 !important;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.internal-link.is-unresolved:hover {
|
|
106
|
-
color: #707070 !important;
|
|
107
|
-
opacity: 0.8 !important;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/* =========== EMPHASIS =========== */
|
|
111
|
-
|
|
112
|
-
strong,
|
|
113
|
-
b,
|
|
114
|
-
.cm-strong {
|
|
115
|
-
color: #9a9a9a !important;
|
|
116
|
-
font-weight: 500 !important;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
em,
|
|
120
|
-
i {
|
|
121
|
-
color: #888888 !important;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
/* =========== SPACING: Generous whitespace =========== */
|
|
125
|
-
|
|
126
|
-
.markdown-preview-view h1,
|
|
127
|
-
.markdown-preview-view h2 {
|
|
128
|
-
margin-top: 2.5em !important;
|
|
129
|
-
margin-bottom: 1em !important;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.markdown-preview-view h3,
|
|
133
|
-
.markdown-preview-view h4 {
|
|
134
|
-
margin-top: 2em !important;
|
|
135
|
-
margin-bottom: 0.75em !important;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.markdown-preview-view h1:first-child,
|
|
139
|
-
.markdown-preview-view h2:first-child {
|
|
140
|
-
margin-top: 0 !important;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.markdown-preview-view p {
|
|
144
|
-
margin-bottom: 1.2em !important;
|
|
145
|
-
line-height: 1.7 !important;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.markdown-preview-view li {
|
|
149
|
-
margin-bottom: 0.4em !important;
|
|
150
|
-
line-height: 1.6 !important;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
/* =========== MINIMAL HR =========== */
|
|
154
|
-
|
|
155
|
-
hr {
|
|
156
|
-
border: none !important;
|
|
157
|
-
border-top: 1px solid #222 !important;
|
|
158
|
-
margin: 2.5em 0 !important;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
hr::before,
|
|
162
|
-
hr::after {
|
|
163
|
-
display: none !important;
|
|
164
|
-
content: none !important;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
/* =========== SUBTLE ELEMENTS =========== */
|
|
168
|
-
|
|
169
|
-
input[type="checkbox"] {
|
|
170
|
-
opacity: 0.4 !important;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.tag {
|
|
174
|
-
color: #606060 !important;
|
|
175
|
-
background: transparent !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
blockquote {
|
|
179
|
-
border-left: 2px solid #333 !important;
|
|
180
|
-
color: #606060 !important;
|
|
181
|
-
padding-left: 1em !important;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
code,
|
|
185
|
-
.cm-inline-code {
|
|
186
|
-
color: #888888 !important;
|
|
187
|
-
background: #1a1a1a !important;
|
|
188
|
-
border-radius: 4px !important;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
pre {
|
|
192
|
-
background: #141414 !important;
|
|
193
|
-
border: 1px solid #222 !important;
|
|
194
|
-
border-radius: 8px !important;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/* =========== TABLES =========== */
|
|
198
|
-
|
|
199
|
-
table,
|
|
200
|
-
th,
|
|
201
|
-
td {
|
|
202
|
-
border-color: #222 !important;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
th {
|
|
206
|
-
color: #909090 !important;
|
|
207
|
-
font-weight: 500 !important;
|
|
208
|
-
background: #111 !important;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
/* =========== SIDEBAR =========== */
|
|
212
|
-
|
|
213
|
-
.nav-folder-title,
|
|
214
|
-
.nav-file-title {
|
|
215
|
-
color: #606060 !important;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.nav-folder-title:hover,
|
|
219
|
-
.nav-file-title:hover {
|
|
220
|
-
color: #909090 !important;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
/* =========== SCROLLBAR =========== */
|
|
224
|
-
|
|
225
|
-
::-webkit-scrollbar {
|
|
226
|
-
width: 6px !important;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
::-webkit-scrollbar-thumb {
|
|
230
|
-
background: #333 !important;
|
|
231
|
-
border-radius: 3px !important;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
::-webkit-scrollbar-track {
|
|
235
|
-
background: transparent !important;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
/* =========== LISTS: Clean & Simple (NO STARS) =========== */
|
|
239
|
-
|
|
240
|
-
ul,
|
|
241
|
-
ol {
|
|
242
|
-
margin-left: 1.5em !important;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
ul {
|
|
246
|
-
list-style-type: disc !important;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
ul ul {
|
|
250
|
-
list-style-type: circle !important;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
ul ul ul {
|
|
254
|
-
list-style-type: square !important;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
li {
|
|
258
|
-
list-style-position: outside !important;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
/* Force standard bullet color */
|
|
262
|
-
::marker {
|
|
263
|
-
color: #888888 !important;
|
|
264
|
-
font-variant-numeric: tabular-nums !important;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
/* Reset any pseudo-element bullets */
|
|
268
|
-
li::before,
|
|
269
|
-
li::after {
|
|
270
|
-
content: none !important;
|
|
271
|
-
display: none !important;
|
|
1
|
+
/* =============================================
|
|
2
|
+
RAMS-STYLE MINIMAL
|
|
3
|
+
- Grayscale decorative emojis only
|
|
4
|
+
- STATUS emojis (🟢🟡🔴🎯💸) stay colored
|
|
5
|
+
- Dimmer headings, clean spacing
|
|
6
|
+
============================================= */
|
|
7
|
+
|
|
8
|
+
/* =========== CORE: Pure grayscale =========== */
|
|
9
|
+
|
|
10
|
+
body,
|
|
11
|
+
.markdown-source-view,
|
|
12
|
+
.markdown-preview-view,
|
|
13
|
+
.cm-s-obsidian {
|
|
14
|
+
--text-normal: #888888 !important;
|
|
15
|
+
--text-muted: #606060 !important;
|
|
16
|
+
--text-faint: #404040 !important;
|
|
17
|
+
--background-primary: #0a0a0a !important;
|
|
18
|
+
--background-secondary: #111111 !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* All text - single gray tone */
|
|
22
|
+
p,
|
|
23
|
+
li,
|
|
24
|
+
.cm-line {
|
|
25
|
+
color: #888888 !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/* =========== HEADINGS: Dimmer =========== */
|
|
29
|
+
|
|
30
|
+
h1,
|
|
31
|
+
h2,
|
|
32
|
+
h3,
|
|
33
|
+
h4,
|
|
34
|
+
h5,
|
|
35
|
+
h6,
|
|
36
|
+
.cm-header-1,
|
|
37
|
+
.cm-header-2,
|
|
38
|
+
.cm-header-3,
|
|
39
|
+
.HyperMD-header-1,
|
|
40
|
+
.HyperMD-header-2,
|
|
41
|
+
.HyperMD-header-3 {
|
|
42
|
+
color: #a0a0a0 !important;
|
|
43
|
+
font-weight: 500 !important;
|
|
44
|
+
letter-spacing: -0.01em !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h1,
|
|
48
|
+
.cm-header-1 {
|
|
49
|
+
font-weight: 600 !important;
|
|
50
|
+
color: #b0b0b0 !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Add space after heading text (before next content) */
|
|
54
|
+
.markdown-preview-view h1::after,
|
|
55
|
+
.markdown-preview-view h2::after,
|
|
56
|
+
.markdown-preview-view h3::after {
|
|
57
|
+
content: "" !important;
|
|
58
|
+
display: block !important;
|
|
59
|
+
margin-bottom: 0.5em !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* =========== GRAYSCALE DECORATIVE EMOJIS ONLY =========== */
|
|
63
|
+
|
|
64
|
+
/* Target emojis in headings and general content */
|
|
65
|
+
.cm-header .cm-emoji,
|
|
66
|
+
h1 .emoji,
|
|
67
|
+
h2 .emoji,
|
|
68
|
+
h3 .emoji,
|
|
69
|
+
.HyperMD-header .cm-emoji {
|
|
70
|
+
filter: grayscale(100%) !important;
|
|
71
|
+
opacity: 0.5 !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/* PRESERVE status indicator colors (🟢🟡🔴🎯💸) */
|
|
75
|
+
/* These are typically in table cells, not headings */
|
|
76
|
+
td .emoji,
|
|
77
|
+
td span,
|
|
78
|
+
.markdown-preview-view td {
|
|
79
|
+
filter: none !important;
|
|
80
|
+
opacity: 1 !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* =========== LINKS: Differentiated by status =========== */
|
|
84
|
+
|
|
85
|
+
/* Regular links and created wikilinks */
|
|
86
|
+
a,
|
|
87
|
+
.cm-link,
|
|
88
|
+
.internal-link,
|
|
89
|
+
.external-link {
|
|
90
|
+
color: #707070 !important;
|
|
91
|
+
text-decoration: none !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
a:hover,
|
|
95
|
+
.internal-link:hover {
|
|
96
|
+
color: #a0a0a0 !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Unresolved links (non-created notes) - dimmer */
|
|
100
|
+
.internal-link.is-unresolved {
|
|
101
|
+
color: #505050 !important;
|
|
102
|
+
opacity: 0.6 !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.internal-link.is-unresolved:hover {
|
|
106
|
+
color: #707070 !important;
|
|
107
|
+
opacity: 0.8 !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* =========== EMPHASIS =========== */
|
|
111
|
+
|
|
112
|
+
strong,
|
|
113
|
+
b,
|
|
114
|
+
.cm-strong {
|
|
115
|
+
color: #9a9a9a !important;
|
|
116
|
+
font-weight: 500 !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
em,
|
|
120
|
+
i {
|
|
121
|
+
color: #888888 !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* =========== SPACING: Generous whitespace =========== */
|
|
125
|
+
|
|
126
|
+
.markdown-preview-view h1,
|
|
127
|
+
.markdown-preview-view h2 {
|
|
128
|
+
margin-top: 2.5em !important;
|
|
129
|
+
margin-bottom: 1em !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.markdown-preview-view h3,
|
|
133
|
+
.markdown-preview-view h4 {
|
|
134
|
+
margin-top: 2em !important;
|
|
135
|
+
margin-bottom: 0.75em !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.markdown-preview-view h1:first-child,
|
|
139
|
+
.markdown-preview-view h2:first-child {
|
|
140
|
+
margin-top: 0 !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.markdown-preview-view p {
|
|
144
|
+
margin-bottom: 1.2em !important;
|
|
145
|
+
line-height: 1.7 !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.markdown-preview-view li {
|
|
149
|
+
margin-bottom: 0.4em !important;
|
|
150
|
+
line-height: 1.6 !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* =========== MINIMAL HR =========== */
|
|
154
|
+
|
|
155
|
+
hr {
|
|
156
|
+
border: none !important;
|
|
157
|
+
border-top: 1px solid #222 !important;
|
|
158
|
+
margin: 2.5em 0 !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
hr::before,
|
|
162
|
+
hr::after {
|
|
163
|
+
display: none !important;
|
|
164
|
+
content: none !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* =========== SUBTLE ELEMENTS =========== */
|
|
168
|
+
|
|
169
|
+
input[type="checkbox"] {
|
|
170
|
+
opacity: 0.4 !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.tag {
|
|
174
|
+
color: #606060 !important;
|
|
175
|
+
background: transparent !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
blockquote {
|
|
179
|
+
border-left: 2px solid #333 !important;
|
|
180
|
+
color: #606060 !important;
|
|
181
|
+
padding-left: 1em !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
code,
|
|
185
|
+
.cm-inline-code {
|
|
186
|
+
color: #888888 !important;
|
|
187
|
+
background: #1a1a1a !important;
|
|
188
|
+
border-radius: 4px !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
pre {
|
|
192
|
+
background: #141414 !important;
|
|
193
|
+
border: 1px solid #222 !important;
|
|
194
|
+
border-radius: 8px !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* =========== TABLES =========== */
|
|
198
|
+
|
|
199
|
+
table,
|
|
200
|
+
th,
|
|
201
|
+
td {
|
|
202
|
+
border-color: #222 !important;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
th {
|
|
206
|
+
color: #909090 !important;
|
|
207
|
+
font-weight: 500 !important;
|
|
208
|
+
background: #111 !important;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/* =========== SIDEBAR =========== */
|
|
212
|
+
|
|
213
|
+
.nav-folder-title,
|
|
214
|
+
.nav-file-title {
|
|
215
|
+
color: #606060 !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.nav-folder-title:hover,
|
|
219
|
+
.nav-file-title:hover {
|
|
220
|
+
color: #909090 !important;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* =========== SCROLLBAR =========== */
|
|
224
|
+
|
|
225
|
+
::-webkit-scrollbar {
|
|
226
|
+
width: 6px !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
::-webkit-scrollbar-thumb {
|
|
230
|
+
background: #333 !important;
|
|
231
|
+
border-radius: 3px !important;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
::-webkit-scrollbar-track {
|
|
235
|
+
background: transparent !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/* =========== LISTS: Clean & Simple (NO STARS) =========== */
|
|
239
|
+
|
|
240
|
+
ul,
|
|
241
|
+
ol {
|
|
242
|
+
margin-left: 1.5em !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
ul {
|
|
246
|
+
list-style-type: disc !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
ul ul {
|
|
250
|
+
list-style-type: circle !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
ul ul ul {
|
|
254
|
+
list-style-type: square !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
li {
|
|
258
|
+
list-style-position: outside !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* Force standard bullet color */
|
|
262
|
+
::marker {
|
|
263
|
+
color: #888888 !important;
|
|
264
|
+
font-variant-numeric: tabular-nums !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/* Reset any pseudo-element bullets */
|
|
268
|
+
li::before,
|
|
269
|
+
li::after {
|
|
270
|
+
content: none !important;
|
|
271
|
+
display: none !important;
|
|
272
272
|
}
|