-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
1025 lines (960 loc) · 20.7 KB
/
theme.css
File metadata and controls
1025 lines (960 loc) · 20.7 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* To navigate in the Style Settings part, search:
* "user-" to find the main folders
*/
/* @settings
name: Power
id: user-power
settings:
-
id: user-appearance
title: Appearance
description: |-
Change how the native ObsidianMD looks
(Plugins and Snippets dependant on the native colors will still be affected)
type: heading
level: 1
collapsed: true
-
id: user-color
title: Color
type: heading
level: 2
collapsed: true
-
id: color-red
title: Red
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-red-rgb
format: rgb-values
-
id: color-orange
title: Orange
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-orange-rgb
format: rgb-values
-
id: color-yellow
title: Yellow
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-yellow-rgb
format: rgb-values
-
id: color-green
title: Green
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-green-rgb
format: rgb-values
-
id: color-cyan
title: Cyan
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-cyan-rgb
format: rgb-values
-
id: color-blue
title: Blue
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-blue-rgb
format: rgb-values
-
id: color-purple
title: Purple
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-purple-rgb
format: rgb-values
-
id: color-pink
title: Pink
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
alt-format:
-
id: color-pink-rgb
format: rgb-values
-
id: user-background
title: Background
type: heading
level: 2
collapsed: true
-
id: background-primary
title: Primary Background
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
-
id: background-primary-alt
title: On Primary Background
description: The background color for objects with a background different from and on top of the primary background
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: background-secondary
title: Secondary Background
type: variable-themed-color
format: hex
opacity: false
default-light: "#"
default-dark: "#"
-
id: background-secondary-alt
title: On Secondary Background
description: The background color for objects with a background different from and on top of the secondary background
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: background-modifier-hover
title: Hover Background
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: background-modifier-active-hover
title: Active Hover Background
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: background-modifier-border
title: Border Color
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: background-modifier-border-hover
title: Border Hover Color
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: background-modifier-border-focus
title: Border Focus Color
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: background-modifier-form-field
title: Form Field Color
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: user-codeblock
title: Codeblocks
type: heading
level: 2
collapsed: true
-
id: code-background
title: Background color
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
-
id: code-normal
title: Text color
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-size
title: Font size
description: Accepts CSS length units
type: variable-text
default: ""
-
id: code-white-space
title: Code white space
type: variable-select
default: normal
options:
-
label: Collapsed whitepace, line wrapping and no newline
value: normal
-
label: Collapsed whitespace, no line wrapping and no newline
value: nowrap
-
label: Preserved whitespace, no line wrapping
value: pre
-
label: Collapsed whitespace, line wrapping
value: pre-line
-
label: Preserved whitespace, line wrapping
value: pre-wrap
-
id: code-syntax-colors
title: Syntax Highlighting
type: heading
level: 3
collapsed: true
-
id: code-comment
title: Comments
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-function
title: Functions
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-important
title: Important
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-keyword
title: Keywords
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-operator
title: Operators
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-property
title: Properties
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-punctuation
title: Punctuations
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-string
title: Strings
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-tag
title: Tags
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: code-value
title: Values
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: user-headings
title: Headings
type: heading
level: 2
collapsed: true
-
id: user-heading-1
title: Heading 1
type: heading
level: 3
collapsed: true
-
id: h1-basic-settings-info
description: "Basic settings"
description.vi: "Cài đặt cơ bản"
type: info-text
markdown: true
-
id: h1-font
title: H1 Font
title.vi: Phông chữ
description: Font(s) to use which is on your system
description.vi: (Những) phông chữ có trên máy để sử dụng
type: variable-text
default: ""
-
id: h1-size
title: H1 Size
title.vi: Kích thước phông
description: Accepts CSS length units
description.vi: Nhận các đơn vị độ dài của CSS
type: variable-text
default: 1.5em
-
id: h1-weight
title: H1 Weight
description: "100: Thin - 900: Black"
type: variable-number-slider
default: 600
min: 100
max: 900
step: 100
-
id: h1-style
title: H1 Style
type: variable-select
allowEmpty: false
default: normal
options:
-
label: Normal
value: normal
-
label: Italic
value: italic
-
id: h1-color
title: H1 Color
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
alt-format:
-
id: h1-color-rgb
format: rgb-values
-
id: h1-variant
title: H1 Variant
type: variable-select
allowEmpty: false
default: normal
options:
-
label: Normal
value: normal
-
label: Small caps
value: small-caps
-
label: All small caps
value: all-small-caps
-
id: h1-advanced-settings-info
description: "Advanced settings"
type: info-text
markdown: true
-
id: h1-alignment
title: H1 Alignment
type: variable-select
allowEmpty: false
default: left
options:
-
label: Left
value: left
-
label: Center
value: center
-
label: Right
value: right
-
label: Justify
value: justiry
-
id: h1-format
title: H1 Format
type: class-select
allowEmpty: false
default: h1-default
options:
-
label: Default
value: h1-default
-
label: Background
value: h1-background
-
label: Pill
value: h1-pill
-
id: h1-background
title: H1 Background
type: heading
level: 4
collapsed: true
-
id: h1-background-info
description: |-
Any text input in here can accept up to 4 values that is separated by spaces
Check [this](https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties#tricky_edge_cases) out to see how CSS properties deal with multiple values
type: info-text
markdown: true
-
id: h1-background-color
title: H1 Background Color
description: This automatically defaults to transparent if reset
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
alt-format:
-
id: h1-background-color-rgb
format: rgb-values
-
id: h1-background-border-color
title: H1 Background Border Color
description: This automatically defaults to transparent if reset
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
alt-format:
-
id: h1-background-border-color-rgb
format: rgb-values
-
id: h1-background-border-style
title: H1 Background Border Style
description: Accepts any CSS border-style values
type: variable-text
default: ""
-
id: h1-background-border-width
title: H1 Background Border Width
description: Accepts CSS length units as well as "thin", "medium", and "thick"
type: variable-text
default: ""
-
id: h1-background-border-radius
title: H1 Background Border Radius
type: variable-text
default: 0.25em
-
id: h1-pill
title: H1 Pill
type: heading
level: 4
collapsed: true
-
id: h1-pill-color
title: H1 Pill Color
description: This automatically defaults to the color red if sets to none
type: variable-themed-color
format: hex
opacity: true
default-light: "#"
default-dark: "#"
alt-format:
-
id: h1-pill-color-rgb
format: rgb-values
-
id: h1-pill-width
title: H1 Pill Width
type: variable-text
default: 0.1rem
-
id: user-heading-2
title: Heading 2
type: heading
level: 3
collapsed: true
-
id: user-heading-3
title: Heading 3
type: heading
level: 3
collapsed: true
-
id: user-heading-4
title: Heading 4
type: heading
level: 3
collapsed: true
-
id: user-heading-5
title: Heading 5
type: heading
level: 3
collapsed: true
-
id: user-heading-6
title: Heading 6
type: heading
level: 3
collapsed: true
-
id: user-tag
title: Tags
type: heading
level: 2
collapsed: true
-
id: tag-normal-settings-info
description: "Normal settings"
description.vi: "Cài đặt bình thường"
type: info-text
markdown: true
-
id: tag-color
title: Text color
type: variable-themed-color
format: hex
default-light: "#"
default-dark: "#"
-
id: user-text
title: Text
type: heading
level: 2
collapsed: true
*/
body {
--line-height-normal: 2.1;
}
.theme-dark {
--divider-width: 2px;
--background-modifier-border: #313244;
--interactive-normal: #181825;
--interactive-hover: #1e1e2e;
--bold-weight: 600;
--h1-color: var(--color-red);
--h1-size: 2em;
--h1-line-height: 1.5em;
--h2-color: var(--color-orange);
--h2-size: 1.75em;
--h2-line-height: 1.5em;
--h3-color: var(--color-yellow);
--h3-size: 1.5em;
--h3-line-height: 1.5em;
--h4-color: var(--color-green);
--h4-size: 1.25em;
--h4-line-height: 1.5em;
--h5-color: var(--color-blue);
--h5-size: 1em;
--h5-line-height: 1.5em;
--h6-color: var(--color-purple);
--h6-size: 0.9em;
--h6-line-height: 1.5em;
--callout-border-width: 2px;
--callout-border-opacity: 0.8;
--callout-padding: 0;
--callout-radius: 2px;
--callout-title-padding: 1em 0 1em 1em;
--callout-content-padding: 0 0 1em 1em;
--link-color: var(--color-blue);
--link-color-hover: var(--color-blue);
--tag-weight: 600;
--tag-padding-x: 0.65em;
--tag-padding-y: 0;
--bold-color: var(--color-red);
--deleted-color: var(--text-faint);
--blockquote-background-color: var(--background-primary-alt);
--blockquote-border-thickness: 4px;
--blockquote-border-color: var(--background-modifier-border);
}
del {
color: var(--deleted-color);
}
/* Callout */
.callout-content p {
margin: -0.25em 0 0 0;
}
.callout[data-callout-metadata*="1/2"] {
width: calc(50% - 4px);
float: left;
margin-right: 8px;
}
[data-callout-metadata*="1/2"]:has(+ [data-callout="danger"]) .callout {
margin-right: 0;
}
.callout-content {
margin-right: 1em;
text-align: justify;
}
/* Canvas */
button:not(.clickable-icon) {
box-shadow: 0 0 0 2px var(--background-primary-alt);
}
.canvas-node-group.is-themed .canvas-group-label:not([contenteditable="true"]) {
font-weight: 800;
}
/* .canvas-group-label[contenteditable="true"] {
box-shadow: 0 0 0 2px var(--canvas-color);
}
.canvas-node-group.is-themed .canvas-group-label:not([contenteditable="true"]) {
background-color: var(--canvas-color);
}
.canvas-node-container {
border: 2px solid var(--canvas-color);
box-shadow: 0 0 0 2px var(--canvas-color);
}
.canvas-node {
--shadow-border-themed: 0 0 0 2px var(--canvas-color);
--shadow-border-themed-inset: 0 0 0 2px var(--canvas-color);
& .canvas-node-content {
background-color: color-mix(
in srgb,
var(--canvas-color),
transparent 93%
);
}
& .canvas-node-container {
box-shadow: 0 0 0 2px var(--canvas-color);
}
&.is-selected .canva-node-container,
&.is-focused .canva-node-container {
box-shadow: 0 0 0 4px var(--canvas-color);
}
}
.canvas-node.is-themed .canvas-node-container {
border-color: color-mix(in srgb, var(--canvas-color) 70%, transparent);
box-shadow:
inset 0 0 0 1px color-mix(in srgb, var(--canvas-color) 70%, transparent),
var(--shadow-stationary);
}
.canvas-node.is-selected.is-themed .canvas-node-container,
.canvas-node.is-focused.is-themed .canvas-node-container {
border-color: var(--canvas-color);
}
.canvas-edges path.canvas-display-path,
.canvas-edges polygon.canvas-path-end {
stroke: var(--canvas-color);
fill: var(--canvas-color);
} */
img,
.cards table.dataview tbody > tr > td img {
background-color: var(--background-primary) !important;
}
/* Headings */
h2,
h3,
h4,
h5,
h6 {
border-radius: 0.25em;
text-align: center;
}
h1 {
text-align: var(--h1-alignment);
.el-h1:has(&) + .el-hr > hr {
--hr-thickness: 4px;
border-color: var(--h1-color);
margin: -0.75em 0 0;
}
.h1-background & {
background: var(--h1-background-color, rgb(var(--h1-color-rgb), 20%));
border-color: var(--h1-background-border-color);
border-width: var(--h1-background-border-width);
border-style: var(--h1-background-border-style);
border-radius: var(--h1-background-border-radius);
}
}
.h2-background h2 {
background: rgb(var(--color-orange-rgb), 20%);
}
.h3-background h3 {
background: rgb(var(--color-yellow-rgb), 20%);
}
.h4-background h4 {
background: rgb(var(--color-green-rgb), 20%);
}
.h5-background h5 {
background: rgb(var(--color-blue-rgb), 20%);
}
.h6-background h6 {
background: rgb(var(--color-purple-rgb), 20%);
}
/* Range Slider */
.style-settings-container input[type="range"] {
width: 12rem;
}
/* Text Input */
.style-settings-container input[type="text"] {
width: 12rem;
}
/* Color Selector */
/*
.pickr .pcr-button {
width: 12rem;
&::before {
background: var(--background-primary-alt);
box-shadow: unset;
content: "Color Unset";
color: var(--text-normal);
font-family: var(--font-monospace);
font-weight: 800;
height: 1.6em;
padding-top: 6px;
}
&::after {
box-shadow: 0 0 0 2px var(--pcr-color);
}
}
*/
/* Metadata */
.metadata-property:not([data-property-key="tags"]) {
--pill-padding-x: inherit;
--pill-padding-y: inherit;
}
.metadata-input-longtext {
line-clamp: unset;
-webkit-line-clamp: unset;
max-height: none;
}
/* Multi-select */
body {
--pill-background: var(--background-primary-alt);
--pill-background-hover: var(--background-primary-alt);
--pill-padding-x: 8px !important;
--pill-padding-y: 0px !important;
}
/* Progress Bar */
.markdown-rendered div:has(+ div progress) p {
margin-bottom: 0;
}
.markdown-preview-view progress[value]::-webkit-progress-bar,
.markdown-rendered progress[value]::-webkit-progress-bar,
.markdown-source-view.is-live-preview progress[value]::-webkit-progress-bar {
background-color: #fff2;
box-shadow: none;
border-radius: 2em;
}
.markdown-preview-view progress[value]::-webkit-progress-value,
.markdown-rendered progress[value]::-webkit-progress-value,
.markdown-source-view.is-live-preview progress[value]::-webkit-progress-value {
background-color: var(--progress-color, var(--interactive-accent));
}
/* Plugins */
/* Dataview */
.dataview.inline-field {
white-space: nowrap;
}
.dataview.inline-field-standalone-value {
padding: var(--pill-padding-y) var(--pill-padding-x);
background-color: var(--pill-background);
border-radius: 2em;
font-family: var(--font-text);
font-weight: var(--font-black);
}
.dataview.task-list-item:hover,
.dataview.task-list-basic-item:hover {
background-color: initial;
box-shadow: initial;
}
.table-view-table > thead > tr > th {
border-bottom: 2px solid;
}
.markdown-preview-view th,
.table-view-table > thead > tr > th,
.markdown-source-view.mod-cm6
.dataview.table-view-table
thead.table-view-thead
tr
th {
padding-left: 0.45em;
padding-right: 0.45em;
}
table.dataview > tbody > tr > td {
text-align: center;
}
.cards
table.dataview.table-view-table
tbody
> tr
> td:not(:last-child):not(:first-child) {
border-bottom: none;
}
.cards table.dataview.table-view-table tbody > tr > td:first-child img {
padding-top: 16px;
}
/* Style Settings */
.theme-light {
--background-primary: var(--background-primary);
}
.themed-color-wrapper > div {
background: var(--background-primary);
padding: 10px;
}
/* .style-settings-container .setting-item-description > div {
display: none;
} */
.style-settings-container > *,
.style-settings-heading > * {
padding-bottom: 5px;
}
.style-settings-heading[data-level="0"] + .style-settings-container {
padding-left: 40px;
border-left: 1px solid var(--background-modifier-border);
}
.style-settings-heading:not([data-level="0"]) + .style-settings-container {
padding-left: 40px;
margin-left: -15px;
border-left: 1px solid var(--background-modifier-border);
}
.workspace-tabs:not(.mod-top) .workspace-tab-header-container,
.workspace-tabs:not(.mod-top) .workspace-tab-header-container * {
box-shadow: none !important;
outline: none !important;
}
.workspace-tabs:not(.mod-top) .workspace-tab-header-container * {
background-color: transparent !important;
}
.workspace-tabs:not(.mod-top)
.workspace-tab-header-container
.workspace-tab-header-inner-icon,
.workspace-tabs:not(.mod-top)
.workspace-tab-header.is-active
.workspace-tab-header-inner,
.workspace-tabs:not(.mod-top)
.workspace-tab-header-container
.workspace-tab-header-inner::before {
opacity: 0;
transform: translateY(-10px);
transition:
opacity 200ms ease-in,
transform 200ms ease-in;
}
.workspace-tabs:not(.mod-top)
.workspace-tab-header-container:hover
.workspace-tab-header-inner-icon,
.workspace-tabs:not(.mod-top)
.workspace-tab-header.is-active
.workspace-tab-header-inner,
.workspace-tabs:not(.mod-top)
.workspace-tab-header-container:hover
.workspace-tab-header-inner::before {
opacity: 1;
transform: translateY(0);
}
.workspace-tabs:not(.mod-top) .workspace-tab-header-container {
height: 10px;
transition: height 200ms ease-in;
position: relative;
}
.workspace-tabs:not(.mod-top) .workspace-tab-header-container:hover {
height: var(--header-height);
background-color: var(--background) !important;
}
.workspace-tabs:not(.mod-top) .workspace-tab-header-container::after {
content: "";
display: block;
width: 100%;
height: 100%;
top: 100%;
position: absolute;
z-index: 1;
}
/* Working on */
/* body .markdowwn-preview-view .heading-collapse-indicator,
body .is-live-preview .HyperMD-header .collapse-indicator.collapse-icon {
transform: translateX(-8px);
}
.markdown-rendered > :is(h1, h2, h3, h4, h5, h6),
.markdown-preview-sizer > div > :is(h1, h2, h3, h4, h5, h6) {
text-indent: 9px;
}
body .is-live-preview .HyperMD-header-1::before {
margin-right: 6px;
content: " ";
display: inline-block;
width: 3px;
height: calc(1.2em - 8px);