generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
2465 lines (2322 loc) · 76.1 KB
/
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
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
/* note: make any modifications to this file in src/styles.css */
/* @settings
name: Note Toolbar
id: note-toolbar
settings:
-
id: toolbar-fab-styles
title: 'Floating Button'
title.uk: 'Плаваюча кнопка'
title.de: 'Schwebende Schaltfläche'
title.zh: '浮动按钮'
description: 'Styles for floating buttons (set toolbar position to "floating button")'
description.uk: 'Стилі плаваючих кнопок (встановіть позицію панелі «Плаваюча кнопка»)'
description.de: 'Stile für schwebende Schaltflächen (Position der Symbolleiste auf „schwebende Schaltfläche" setzen)'
description.zh: '浮动按钮的样式(工具栏位置为「浮动按钮」时)'
type: heading
level: 1
collapsed: true
-
id: toolbar-fab-colors
title: '↳ 🎨 Colors'
title.uk: '↳ 🎨 Кольори'
title.de: '↳ 🎨 Farben'
title.zh: '↳ 🎨 颜色'
type: heading
level: 2
collapsed: true
-
id: cg-nt-fab-bg-color-desktop
title: 'Background color on desktop'
title.uk: 'Колір фону на робочому столі'
title.de: 'Hintergrundfarbe am PC'
title.zh: '桌面端背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-fab-bg-color
title: 'Background color on mobile 📱'
title.uk: 'Колір фону на мобільному пристрої 📱'
title.de: 'Hintergrundfarbe am Handy 📱'
title.zh: '移动端背景颜色 📱'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-fab-bg-color-hover-desktop
title: 'Background color on desktop (on hover)'
title.uk: 'Колір фону на робочому столі (при наведенні)'
title.de: 'Hintergrundfarbe am PC (beim Überfahren mit der Maus)'
title.zh: '桌面端背景颜色(悬停)'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-fab-bg-color-hover
title: 'Background color on mobile (on press) 📱'
title.uk: 'Колір фону на мобільному пристрої (при натисканні) 📱'
title.de: 'Hintergrundfarbe am Handy (bei Drücken) 📱'
title.zh: '移动端背景颜色(按下) 📱'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-fab-icon-color-desktop
title: 'Icon color on desktop'
title.uk: 'Колір іконок на робочому столі'
title.de: 'Symbolfarbe am PC'
title.zh: '桌面端图标颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-fab-icon-color
title: 'Icon color on mobile 📱'
title.uk: 'Колір іконки на мобільному пристрої 📱'
title.de: 'Symbolfarbe am Handy 📱'
title.zh: '移动端图标颜色 📱'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: toolbar-fab-positioning
title: '↳ ↕ Positioning'
title.uk: '↳ ↕ Позиціонування'
title.de: '↳ ↕ Positionierung'
title.zh: '↳ ↕ 位置'
type: heading
level: 2
collapsed: true
-
id: cg-nt-fab-pos-x-desktop
title: 'X position on desktop (in em units)'
title.uk: 'Позиція X на робочому столі (em)'
title.de: 'X-Position am PC (in vw-Einheiten)'
title.zh: '桌面端X轴位置(单位:em)'
description: 'Distance from the edge of the editor view.'
description.uk: 'Відстань від краю вікна редактора'
description.de: 'Abstand vom Rand der Editoransicht.'
description.zh: '距编辑器视图边缘的距离'
type: variable-number
default: 4
format: em
-
id: cg-nt-fab-pos-x
title: 'X position on mobile (in vw units) 📱'
title.uk: 'Позиція X на мобільному (% ширини) 📱'
title.de: 'X-Position am Handy (in vw-Einheiten) 📱'
title.zh: '移动端X轴位置(单位:vw)📱'
description: "As a percentage of the editor's width, from the left edge (reversed when button is on right)."
description.uk: 'У відсотках від ширини редактора, від лівого краю (у зворотному порядку, коли кнопка знаходиться праворуч)'
description.de: 'Als Prozentsatz der Breite des Editors, ausgehend vom linken Rand (umgekehrt, wenn sich die Schaltfläche rechts befindet).'
description.zh: '基于左侧边缘,占编辑器宽度的百分比(当按钮在右侧时则相反)'
type: variable-number
default: 82
format: vw
-
id: cg-nt-fab-pos-y-desktop
title: 'Y position on desktop (in vh units)'
title.uk: 'Позиція Y на робочому столі (% висоти)'
title.de: 'Y-Position am PC (in vh-Einheiten)'
title.zh: '桌面端Y轴位置(单位:vh)'
description: "As a percentage of the editor's height, from the top edge."
description.uk: 'У відсотках від висоти редактора, від верхнього краю'
description.de: 'Als Prozentsatz der Höhe des Editors, vom oberen Rand aus.'
description.zh: '基于顶部边缘,占编辑器高度的百分比'
type: variable-number
default: 90
format: vh
-
id: cg-nt-fab-pos-y
title: 'Y position on mobile (in vh units) 📱'
title.uk: 'Позиція Y на мобільному пристрої (% висоти) 📱'
title.de: 'Y-Position am Handy (in vh-Einheiten) 📱'
title.zh: '移动端Y轴位置(单位:vh)📱'
description: "As a percentage of the editor's height, from the top edge."
description.uk: 'У відсотках від висоти редактора, від верхнього краю'
description.de: 'Als Prozentsatz der Höhe des Editors, vom oberen Rand aus.'
description.zh: '基于顶部边缘,占编辑器高度的百分比'
type: variable-number
default: 90
format: vh
-
id: toolbar-fab-sizing-spacing
title: '↳ 📐 Sizing and Spacing'
title.uk: '↳ 📐 Розміри та інтервали'
title.de: '↳ 📐 Größe und Abstände'
title.zh: '↳ 📐 大小和间距'
type: heading
level: 2
collapsed: true
-
id: cg-nt-fab-padding-desktop
title: 'Padding on desktop (in px units)'
title.uk: 'Відступи на робочому столі (пікселі)'
title.de: 'Abstand am PC (in px)'
title.zh: '桌面端内边距(单位:像素)'
description: 'Spacing around the icon.'
description.uk: 'Відступи навколо іконок'
description.de: 'Abstand um das Symbol herum'
description.zh: '图标周围的间距(Padding)'
type: variable-number
default: 12
format: px
-
id: cg-nt-fab-padding
title: 'Padding on mobile (in px units) 📱'
title.uk: 'Відступи на мобільному пристрої (пікселі) 📱'
title.de: 'Abstand am Handy (in px) 📱'
title.zh: '移动端内边距(单位:像素)📱'
description: 'Spacing around the icon.'
description.uk: 'Відступи навколо іконок'
description.zh: '图标周围的间距(Padding)'
type: variable-number
default: 12
format: px
-
id: cg-nt-fab-icon-size-desktop
title: 'Icon size on desktop (in px units)'
title.uk: 'Розмір іконки на робочому столі (пікселі)'
title.de: 'Symbolgröße am PC (in px) 📱'
title.zh: '桌面端图标大小(单位:像素)'
type: variable-number
default: 24
format: px
-
id: cg-nt-fab-icon-size
title: 'Icon size on mobile (in px units) 📱'
title.uk: 'Розмір іконки на мобільному пристрої (пікселі) 📱'
title.de: 'Symbolgröße am Handy (in px) 📱'
title.zh: '移动端图标大小(单位:像素)📱'
type: variable-number
default: 24
format: px
-
id: cg-nt-fab-icon-stroke-width-desktop
title: 'Icon stroke width on desktop (in px units)'
title.uk: 'Ширина рамки іконки на робочому столі (пікселі)'
title.de: 'Symbol-Strichstärke am PC (in px)'
title.zh: '桌面端图标描边宽度(单位:像素)'
type: variable-number
default: 1.8
format: px
-
id: cg-nt-fab-icon-stroke-width
title: 'Icon stroke width on mobile (in px units) 📱'
title.uk: 'Ширина рамки іконки на мобільному пристрої (пікселі) 📱'
title.de: 'Symbol-Strichstärke am Handy (in px) 📱'
title.zh: '移动端图标描边宽度(单位:像素)📱'
type: variable-number
default: 1.8
format: px
-
id: toolbar-fab-style
title: '↳ 😎 Style'
title.uk: '↳ 😎 Стиль'
title.de: '↳ 😎 Stil'
title.zh: '↳ 😎 样式'
type: heading
level: 2
collapsed: true
-
id: cg-nt-fab-border-radius-desktop
title: 'Border radius on desktop (in px units)'
title.uk: 'Радіус рамки на робочому столі (пікселі)'
title.de: 'Rahmenabrundung am PC (in px)'
title.zh: '桌面端边框圆角(单位:像素)'
description: 'How rounded the button is. The higher the number the more rounded. (Plugin defaults: Android = 16, iOS = 999)'
description.uk: 'Наскільки округла кнопка. Чим більше число, тим більше округлення. (Додаток за замовчуванням Android = 16, iOS = 999)'
description.de: 'Wie abgerundet die Schaltfläche ist. Je höher die Zahl, desto runder.'
description.zh: '按钮的圆角设置;数值越大,圆角越明显(默认值:Android = 16,iOS = 999)'
type: variable-number
default: 0
format: px
-
id: cg-nt-fab-border-radius
title: 'Border radius on mobile (in px units) 📱'
title.uk: 'Радіус рамки на мобільному пристрої (пікселі) 📱'
title.de: 'Rahmenabrundung am Handy (in px) 📱'
title.zh: '移动端边框圆角(单位:像素)📱'
description: 'How rounded the button is. The higher the number the more rounded. (Plugin defaults: Android = 16, iOS = 999)'
description.uk: 'Наскільки округла кнопка. Чим більше число, тим більше округлення. (Додаток за замовчуванням Android = 16, iOS = 999)'
description.de: 'Wie abgerundet die Schaltfläche ist. Je höher die Zahl, desto runder. (Plugin-Standardwerte: Android = 16, iOS = 999)'
description.zh: '按钮的圆角设置;数值越大,圆角越明显(默认值:Android = 16,iOS = 999)'
type: variable-number
default: 0
format: px
-
id: cg-nt-fab-inactive-opacity
title: 'Inactive opacity'
title.uk: 'Прозорість у неактивному режимі'
title.de: 'Inaktive Deckkraft'
title.zh: '非活动状态透明度'
description: 'When focus is in another tab, dim the floating button'
description.uk: 'Зменшіть плаваючу кнопку, коли фокус знаходиться на іншій вкладці'
description.de: 'Wenn der Fokus auf einer anderen Registerkarte liegt, wird die schwebende Schaltfläche abgeblendet'
description.zh: '当焦点在其他标签页时,降低浮动按钮的亮度'
type: variable-number-slider
default: 0.7
min: 0
max: 1
step: 0.05
-
id: item
title: 'Items'
title.uk: 'Елементи'
title.de: 'Elemente'
title.zh: '项目'
description: 'Styles for items within toolbars'
description.uk: 'Стилі Елементів вне панелей'
description.de: 'Stile für Elemente von Toolbars'
description.zh: '工具栏内项目的样式'
type: heading
level: 1
collapsed: true
-
id: item-colors
title: '↳ 🎨 Colors'
title.uk: '↳ 🎨 Кольори'
title.de: '↳ 🎨 Farben'
title.zh: '↳ 🎨 颜色'
type: heading
level: 2
collapsed: true
-
id: cg-nt-item-bg-color-hover
title: 'Background color (on hover)'
title.uk: 'Колір фону (при наведенні)'
title.de: 'Hintergrundfarbe (beim Überfahren mit der Maus)'
title.zh: '鼠标悬停时的背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-item-button-bg-color
title: 'Background color (for button style)'
title.uk: 'Колір фону (стиль кнопки)'
title.de: 'Hintergrundfarbe (für Schaltflächen)'
title.zh: '按钮样式的背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-item-text-color
title: 'Text color'
title.uk: 'Колір тексту'
title.de: 'Textfarbe'
title.zh: '文本颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-item-text-color-hover
title: 'Text color (on hover)'
title.uk: 'Колір тексту (при наведенні)'
title.de: 'Textfarbe (beim Überfahren mit der Maus)'
title.zh: '鼠标悬停时的文本颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: item-sizing-spacing
title: '↳ 📐 Sizing and Spacing'
title.uk: '↳ 📐 Розміри та інтервали'
title.de: '↳ 📐 Größe und Abstände'
title.zh: '↳ 📐 大小和间距'
type: heading
level: 2
collapsed: true
-
id: cg-nt-item-font-size
title: 'Font size (in em units)'
title.uk: 'Розмір шрифту (em)'
title.de: 'Schriftgröße (in em)'
title.zh: '字体大小(单位:em)'
type: variable-number
default: 0.875
format: em
-
id: cg-nt-item-icon-size
title: 'Icon size (in px units)'
title.uk: 'Розмір іконки (пікселі)'
title.de: 'Symbolgröße (in px)'
title.zh: '图标大小(单位:像素)'
type: variable-number
default: 18
format: px
-
id: cg-nt-item-padding-x
title: 'Left + Right padding (in em units)'
title.uk: 'Лівий та правий відступи (em)'
title.de: 'Linker + rechter Abstand (in em)'
title.zh: '左右内边距(单位:em)'
type: variable-number
default: 0.75
format: em
-
id: cg-nt-item-padding-y
title: 'Top + Bottom padding (in em units)'
title.uk: 'Верхній та нижній відступи (em)'
title.de: 'Oberer + unteren Abstand (in em)'
title.zh: '上下内边距(单位:em)'
type: variable-number
default: 0.5
format: em
-
id: item-styles
title: '↳ 😎 Style'
title.uk: '↳ 😎 Стиль'
title.de: '↳ 😎 Stil'
title.zh: '↳ 😎 样式'
type: heading
level: 2
collapsed: true
-
id: cg-nt-item-border-radius
title: 'Border radius (in px units)'
title.uk: 'Закруглення рамок (пікселі)'
title.de: 'Rahmenrundung (in px)'
title.zh: '边框圆角(单位:像素)'
type: variable-number
default: 5
format: px
-
id: toolbar-menus
title: 'Menus'
title.uk: 'Меню'
title.de: 'Menüs'
title.zh: '菜单'
description: 'Styles for Item Menu type items'
description.uk: 'Стилі Елементів меню'
description.de: 'Stile für Element-Menüs'
description.zh: '项目菜单类型的样式'
type: heading
level: 1
collapsed: true
-
id: toolbar-menu-colors
title: '↳ 🎨 Colors'
title.uk: '↳ 🎨 Кольори'
title.de: '↳ 🎨 Farben'
title.zh: '↳ 🎨 颜色'
type: heading
level: 2
collapsed: true
-
id: cg-nt-menu-bg-color
title: 'Menu: Background color'
title.uk: 'Меню: Колір фону'
title.de: 'Menü: Hintergrundfarbe'
title.zh: '菜单:背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-menu-border-color
title: 'Menu: Border color'
title.uk: 'Меню: Колір рамки'
title.de: 'Menü: Rahmenfarbe'
title.zh: '菜单:边框颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-menu-item-bg-color-hover
title: 'Item: Background color (hover)'
title.uk: 'Елемент: Колір фону (при наведенні)'
title.de: 'Element: Hintergrundfarbe (beim Überfahren mit der Maus)'
title.zh: '项目:鼠标悬停时的背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-menu-icon-color
title: 'Icon color'
title.uk: 'Колір іконки'
title.de: 'Symbolfarbe'
title.zh: '图标颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-menu-item-text-color
title: 'Text color'
title.uk: 'Колір тексту'
title.de: 'Textfarbe'
title.zh: '文本颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: toolbar-menu-sizing
title: '↳ 📐 Sizing'
title.uk: '↳ 📐 Розміри'
title.de: '↳ 📐 Skalierung'
title.zh: '↳ 📐 尺寸'
type: heading
level: 2
collapsed: true
-
id: cg-nt-menu-item-font-size
title: 'Font size (in em units)'
title.uk: 'Розмір текста (em)'
title.de: 'Schriftgröße (in em)'
title.zh: '字体大小(单位:em)'
type: variable-number
default: 0.875
format: em
-
id: cg-nt-menu-icon-size
title: 'Icon size (in px units)'
title.uk: 'Розмір іконки (пікселі)'
title.de: 'Symbolgröße (in px)'
title.zh: '图标大小(单位:像素)'
type: variable-number
default: 16
format: px
-
id: toolbar-menu-styles
title: '↳ 😎 Style'
title.uk: '↳ 😎 Стиль'
title.de: '↳ 😎 Stil'
title.zh: '↳ 😎 样式'
type: heading
level: 2
collapsed: true
-
id: cg-nt-menu-border-radius
title: 'Menu: Border radius (in px units)'
title.uk: 'Меню: Закруглення рамки (пікселі)'
title.de: 'Menü: Randabrundung (in px)'
title.zh: '菜单:边框圆角(单位:像素)'
type: variable-number
default: 0
format: px
-
id: cg-nt-menu-item-border-radius
title: 'Item: Border radius (in px units)'
title.uk: 'Елемент: Закруглення рамки (пікселі)'
title.de: 'Element: Randabrundung (in px)'
title.zh: '项目:边框圆角(单位:像素)'
type: variable-number
default: 0
format: px
-
id: quick-tools
title: 'Quick tools'
title.uk: 'Швидкі інструменти'
title.de: 'Schnellwahl'
title.zh: '快速工具'
description: 'Styles for the Quick Tools window'
description.uk: 'Стилі вікна Швидких інструментів'
description.de: 'Stile für das Schnellwahlfenster'
description.zh: '快速工具窗口的样式'
type: heading
level: 1
collapsed: true
-
id: cg-nt-quick-tools-item-bg-color-hover
title: '🎨 Background color (hover)'
title.uk: '🎨 Колір фону (при наведенні)'
title.de: '🎨 Hintergrundfarbe (beim Überfahren mit der Maus)'
title.zh: '🎨 鼠标悬停时的背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-quick-tools-item-text-color
title: '🎨 Text + Icon color'
title.uk: '🎨 Кольори текста та іконки'
title.de: '🎨 Text + Symbol-Farbe'
title.zh: '🎨 文本和图标颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-quick-tools-item-text-color-hover
title: '🎨 Text + Icon color (on hover)'
title.uk: '🎨 Кольори текста та іконки (при наведенні)'
title.de: '🎨 Text + Symbol-Farbe (beim Überfahren mit der Maus)'
title.zh: '🎨 文字 + 图标颜色(悬停时)'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-quick-tools-item-font-size
title: '📐 Font size (in em units)'
title.uk: '📐 Розмір шрифту (em)'
title.de: '📐 Schriftgröße (in em)'
title.zh: '📐 字体大小(单位:em)'
type: variable-number
default: 1
format: em
-
id: cg-nt-quick-tools-icon-size
title: '📐 Icon size (in px units)'
title.uk: '📐 Розмір іконки (пікселі)'
title.de: '📐 Symbolgröße (in px)'
title.zh: '📐 图标大小(单位:像素)'
type: variable-number
default: 18
format: px
-
id: cg-nt-quick-tools-item-border-radius
title: '😎 Border radius (in px units)'
title.uk: '😎 Закруглення рамки (пікселі)'
title.de: '😎 Randabrundung (in px)'
title.zh: '😎 边框圆角(单位:像素)'
type: variable-number
default: 4
format: px
-
id: sep
title: 'Separators'
title.uk: 'Роздільники'
title.de: 'Trenner'
title.zh: '分隔符'
description: 'Styles for toolbar separators'
description.uk: 'Стилі Роздільників'
description.de: 'Stile für Toolbar-Trenner'
description.zh: '工具栏分隔符的样式'
type: heading
level: 1
collapsed: true
-
id: cg-nt-item-sep-color
title: '🎨 Color'
title.uk: '🎨 Колір'
title.de: '🎨 Farbe'
title.zh: '🎨 颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-item-sep-margin-x
title: '📐 Left + Right margin (in em units)'
title.uk: '📐 Лівий та правий відступи (em)'
title.de: '📐 Linker und rechter Abstand (in em)'
title.zh: '📐 左右边距(单位:em)'
type: variable-number
default: 0.25
format: em
-
id: cg-nt-item-sep-margin-y
title: '📐 Top + Bottom margin (in em units)'
title.uk: '📐 Верхній та нижній відступи (em)'
title.de: '📐 Oberer und unterer Abstand (in em)'
title.zh: '📐 上下边距(单位:em)'
type: variable-number
default: 0.25
format: em
-
id: cg-nt-item-sep-width
title: '📐 Width'
title.uk: '📐 Ширина'
title.de: '📐 Breite'
title.zh: '📐 宽度'
type: variable-number
default: 1
format: px
-
id: toolbar
title: 'Toolbars'
title.uk: 'Панелі'
title.de: 'Toolbars'
title.zh: '工具栏'
description: 'Styles for standard toolbars'
description.uk: 'Стилі Панелей'
description.de: 'Stile für die Standard-Toolbars'
description.zh: '标准工具栏的样式'
type: heading
level: 1
collapsed: true
-
id: toolbar-colors
title: '↳ 🎨 Colors'
title.uk: '↳ 🎨 Кольори'
title.de: '↳ 🎨 Farben'
title.zh: '↳ 🎨 颜色'
type: heading
level: 2
collapsed: true
-
id: cg-nt-tbar-bg-color
title: 'Background color'
title.uk: 'Колір фону'
title.de: 'Hintergrundfarbe'
title.zh: '背景颜色'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: cg-nt-tbar-border-color
title: 'Border color'
title.uk: 'Колір рамки'
title.de: 'Rand-Farbe'
title.zh: '边框颜色'
description: 'Top + Bottom borders'
description.uk: 'Верхня та нижня рамки'
description.de: 'Obere + untere Ränder'
description.zh: '上下边框'
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: toolbar-positioning
title: '↳ ↕ Positioning'
title.uk: '↳ ↕ Позиціонування'
title.de: '↳ ↕ Positionierung'
title.zh: '↳ ↕ 定位'
type: heading
level: 2
collapsed: true
-
id: cg-nt-tbar-top-sticky-pos-desktop
title: 'Top sticky offset on desktop (in px units)'
title.uk: 'Верхнє липке зміщення на робочому столі (пікселі)'
title.de: 'Oberer Sticky-Offset am PC (in rem-Einheiten) 📱'
title.zh: '桌面端顶部 Sticky 附着的偏移量(单位:像素)'
description: "For some themes, the toolbar doesn't quite stick to the top (larger = further from the top). Note, this will not apply when Position = Top (fixed)."
description.uk: 'З деякими темами панель не приліпає зверху (більше = далі від верху). Це не буде застосовано, якщо позиція = Зверху (фіксовано)'
description.de: 'Bei einigen Themes klebt die Symbolleiste nicht ganz oben (größer = weiter von oben). Beachten Sie, dass dies nicht gilt, wenn Position = Oben (fixiert)'
description.zh: '对于某些主题,工具栏并不能完全贴在顶部(数值越大,离顶部越远)。注意,当位置为「置顶(固定)」时,此设置不适用。'
type: variable-number
default: -40
format: px
-
id: cg-nt-tbar-top-sticky-pos-mobile
title: 'Top sticky offset on mobile (in rem units) 📱'
title.uk: 'Верхній липкий офсет на мобільному пристрої (rem) 📱'
title.de: 'Oberer Sticky-Offset am Handy (in rem-Einheiten) 📱'
title.zh: '移动端顶部 Sticky 附着的偏移量(单位:rem)📱'
description: 'See above.'
description.uk: 'Дивіться вище.'
description.de: Siehe oben.
description.zh: '参见上面的说明。'
type: variable-number
default: -1
format: rem
-
id: toolbar-sizing-spacing
title: '↳ 📐 Sizing and Spacing'
title.uk: '↳ 📐 Розміри та інтервали'
title.de: '↳ 📐 Größe und Abstand'
title.zh: '↳ 📐 尺寸和间距'
type: heading
level: 2
collapsed: true
-
id: cg-nt-tbar-margin-y
title: 'Top + Bottom margin (in em units)'
title.uk: 'Верхній та нижній відступи (em)'
title.de: 'Oberer + unterer Abstand (in em-Einheiten)'
title.zh: '上下边距(单位:em)'
type: variable-number
default: 0.5
format: em
-
id: cg-nt-tbar-padding-inline
title: 'Left + Right padding (in em units)'
title.uk: 'Лівий та правий відступи (em)'
title.de: 'Linker + rechter Abstand (in em-Einheiten)'
title.zh: '左右内边距(单位:em)'
description: "Helpful if you've set a background color for the toolbar, or are using buttons. Larger = more indented."
description.uk: 'Корисно, коли встановлен колір фону панелі та використовуються кнопки. Більший = більше відступів'
description.de: 'Hilfreich, wenn Sie eine Hintergrundfarbe für die Symbolleiste festgelegt haben oder Schaltflächen verwenden. Größer = mehr eingerückt.'
description.zh: '当您为工具栏设置了背景色、或者使用按钮时会很有用。数值越大,缩进越多。'
type: variable-number
default: 0
format: em
-
id: toolbar-styles
title: '↳ 😎 Style'
title.uk: '↳ 😎 Стиль'
title.de: '↳ 😎 Stil'
title.zh: '↳ 😎 样式'
type: heading
level: 2
collapsed: true
-
id: cg-nt-tbar-border-radius
title: 'Border radius (in px units)'
title.uk: 'Закруглення рамок (пікселі)'
title.de: 'Rahmenrundung (in px)'
title.zh: '边框圆角(单位:像素)'
type: variable-number
default: 0
format: px
-
id: cg-nt-tbar-inactive-opacity
title: 'Inactive opacity'
title.uk: 'Прозорість у неактивному режимі'
title.de: 'Inaktive Deckkraft'
title.zh: '非活动状态透明度'
description: 'When focus is in another tab, dim the toolbar'
description.uk: 'Затемняє панель інструментів, коли фокус знаходиться на іншій вкладці'
description.de: 'Wenn der Fokus auf einem anderen Tab liegt, die Symbolleiste abdunkeln'
description.zh: '当焦点在其他标签页时,使工具栏变暗'
type: variable-number-slider
default: 0.8
min: 0
max: 1
step: 0.05
*/
body {
--cg-nt-tbar-bg-color: var(--background-primary);
--cg-nt-tbar-border-color: var(--hr-color);
--cg-nt-tbar-border-radius: 0px;
--cg-nt-tbar-inactive-opacity: 0.8;
--cg-nt-tbar-margin-y: 0.5em;
--cg-nt-tbar-padding-inline: 0em;
--cg-nt-tbar-top-sticky-pos-desktop: calc(var(--header-height) * -1);
--cg-nt-tbar-top-sticky-pos-mobile: -1rem;
--cg-nt-fab-bg-color: var(--interactive-normal);
--cg-nt-fab-bg-color-desktop: var(--interactive-normal);
--cg-nt-fab-bg-color-hover: var(--interactive-hover);
--cg-nt-fab-bg-color-hover-desktop: var(--interactive-hover);
--cg-nt-fab-inactive-opacity: 0.7;
--cg-nt-fab-pos-x: 82vw;
--cg-nt-fab-pos-y: 90vh;
--cg-nt-fab-pos-x-desktop: 4em;
--cg-nt-fab-pos-y-desktop: 90vh;
--cg-nt-fab-icon-color: var(--icon-color);
--cg-nt-fab-icon-color-desktop: var(--icon-color);
--cg-nt-fab-icon-size: var(--icon-l);
--cg-nt-fab-icon-size-desktop: 24px;
--cg-nt-fab-icon-stroke-width: var(--icon-l-stroke-width);
--cg-nt-fab-icon-stroke-width-desktop: var(--icon-l-stroke-width);
--cg-nt-fab-border-radius: 999px;
--cg-nt-fab-border-radius-desktop: 999px;
--cg-nt-fab-padding: calc(var(--icon-l) / 2);
--cg-nt-fab-padding-desktop: calc(var(--icon-l) / 1.5);
--cg-nt-item-bg-color-hover: var(--background-modifier-hover);
--cg-nt-item-border-radius: var(--button-radius);
--cg-nt-item-button-bg-color: var(--interactive-normal);
--cg-nt-item-font-size: var(--metadata-label-font-size);
--cg-nt-item-icon-size: var(--icon-size);
--cg-nt-item-padding-x: 0.75em;
--cg-nt-item-padding-y: 0.5em;
--cg-nt-item-sep-color: var(--background-modifier-border);
--cg-nt-item-sep-width: 1px;
--cg-nt-item-sep-margin-x: 0.25em;
--cg-nt-item-sep-margin-y: 0.25em;
--cg-nt-item-text-color: var(--metadata-label-text-color);
--cg-nt-item-text-color-hover: var(--text-normal);
--cg-nt-menu-bg-color: var(--background-secondary);
--cg-nt-menu-border-color: var(--hr-color);
--cg-nt-menu-border-radius: var(--radius-m);
--cg-nt-menu-icon-color: var(--text-muted);
--cg-nt-menu-icon-size: var(--icon-size);
--cg-nt-menu-item-bg-color-hover: var(--background-modifier-hover);
--cg-nt-menu-item-border-radius: var(--radius-s);
--cg-nt-menu-item-font-size: var(--font-ui-small);
--cg-nt-menu-item-text-color: var(--text-normal);
--cg-nt-quick-tools-icon-size: var(--icon-size);
--cg-nt-quick-tools-item-bg-color-hover: var(--background-modifier-hover);
--cg-nt-quick-tools-item-text-color-hover: var(--text-normal);
--cg-nt-quick-tools-item-font-size: 1em;
--cg-nt-quick-tools-item-border-radius: var(--radius-s);
--cg-nt-quick-tools-item-text-color: var(--text-normal);
&.is-android {
--cg-nt-fab-border-radius: var(--radius-xl);
}
}
.metadata-container {
margin-block-end: 0;
}
.cm-embed-block:has(> div > .callout[data-callout="note-toolbar"]) {
&:hover {
box-shadow: none !important; /* hide the border on hover of the toolbar callout */
& .edit-block-button {
display: none; /* hide the edit icon that appears */
}
}
}
.cm-embed-block:has(> div > .callout[data-callout="note-toolbar"][data-callout-metadata*="sticky"]) {
position: sticky;
top: var(--cg-nt-tbar-top-sticky-pos-desktop);
z-index: 2;
.is-mobile &, .is-phone & {
top: var(--cg-nt-tbar-top-sticky-pos-mobile);
}
}
.is-mobile .cm-embed-block:has(> div > .callout[data-callout="note-toolbar"][data-callout-metadata*="mstcky"]) {
position: sticky;
z-index: 2;
}
.cm-embed-block:has(> div > .callout[data-callout="note-toolbar"][data-callout-metadata*="mstcky"]) {
.is-mobile &, .is-phone & {
top: var(--cg-nt-tbar-top-sticky-pos-mobile);
}
}
/* default, if not specified */
.cm-embed-block:has(> div > .callout[data-callout="note-toolbar"][data-callout-metadata*="nosticky"]) {
top: inherit;
position: relative;
}
.cm-embed-block:has(> div > .callout[data-callout="note-toolbar"][data-callout-metadata*="mnstcky"]) {
.is-mobile &, .is-phone & {
top: inherit;
position: relative;
}
}
.callout[data-callout="note-toolbar-output"] {
background-color: var(--background-primary) !important;
margin: 0em !important;
padding: 0em;
&:has(> .callout-title) {
border: 4px dashed var(--background-secondary);
padding: 1em;
}
& .callout-content {
color: var(--background-secondary);
}
& .callout-title {
color: var(--background-secondary);
display: inherit;
text-transform: uppercase;
& .callout-icon {
display: none;
}
}
}
.callout[data-callout="note-toolbar"] {
background-color: var(--cg-nt-tbar-bg-color) !important;
border-radius: var(--cg-nt-tbar-border-radius);
padding: 0;
padding-inline: var(--cg-nt-tbar-padding-inline);
width: 100%;
/* max-width: var(--file-line-width); */
& .callout-title {
display: none;
}
& .callout-content {
& ul {
display: flex;
flex-wrap: wrap;
gap: 0rem;
margin: var(--cg-nt-tbar-margin-y) 0;
padding-inline-start: 0;
}
& li {
align-items: center;
display: flex;
list-style: none;
padding: 0;
margin: 0;
& .list-bullet {
display: none; /* remove for reading mode */
}
&.hide {
display: none;
}
&.hide-on-mobile {
.is-mobile & {
display: none;
}
}
&.hide-on-desktop {
display: none;
.is-mobile & {
display: block !important;
}
}
& span.hide {
display: none;
}
& span.hide-on-mobile {
.is-mobile & {
display: none;
}
}
& span.hide-on-desktop {
display: none;
.is-mobile & {
display: block !important;
}
}
&::before {