|
1 | 1 | html {
|
2 |
| - /* --at-apply: font-sans; */ |
3 |
| - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; |
4 |
| - overflow-y: scroll; |
5 |
| - overscroll-behavior: none; |
6 |
| - -ms-overflow-style: none; |
7 |
| - /* IE and Edge */ |
8 |
| - scrollbar-width: none; |
9 |
| - /* Firefox */ |
| 2 | + /* --at-apply: font-sans; */ |
| 3 | + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; |
| 4 | + overflow-y: scroll; |
| 5 | + overscroll-behavior: none; |
| 6 | + -ms-overflow-style: none; |
| 7 | + /* IE and Edge */ |
| 8 | + scrollbar-width: none; |
| 9 | + /* Firefox */ |
10 | 10 | }
|
11 | 11 |
|
12 | 12 | body::-webkit-scrollbar {
|
13 |
| - display: none; |
| 13 | + display: none; |
14 | 14 | }
|
15 | 15 |
|
16 | 16 | body {
|
17 |
| - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; |
| 17 | + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; |
18 | 18 | }
|
19 | 19 |
|
20 | 20 | html.dark {
|
21 |
| - background: #1f1f1f; |
22 |
| - color-scheme: dark; |
| 21 | + background: #1f1f1f; |
| 22 | + color-scheme: dark; |
23 | 23 | }
|
24 | 24 |
|
25 | 25 | html.light {
|
26 |
| - background: #fff; |
27 |
| - color-scheme: light; |
| 26 | + background: #fff; |
| 27 | + color-scheme: light; |
28 | 28 | }
|
29 | 29 |
|
30 | 30 | .no-scrollbar::-webkit-scrollbar {
|
31 |
| - display: none; |
32 |
| - width: 0 !important; |
33 |
| - height: 0 !important; |
34 |
| -} |
35 |
| - |
36 |
| -.default-theme.splitpanes--vertical>.splitpanes__splitter:hover:before, |
37 |
| -.default-theme .splitpanes--vertical>.splitpanes__splitter:hover:before{ |
38 |
| - background-color: rgba(255, 0, 0, 0.07); |
39 |
| -} |
40 |
| - |
41 |
| -.default-theme.splitpanes--vertical>.splitpanes__splitter:before, |
42 |
| -.default-theme .splitpanes--vertical>.splitpanes__splitter:before{ |
43 |
| - height: 100%; |
44 |
| - width: 7px; |
45 |
| - background-color: transparent; |
46 |
| -} |
47 |
| - |
48 |
| -.default-theme.splitpanes--vertical>.splitpanes__splitter, |
49 |
| -.default-theme .splitpanes--vertical>.splitpanes__splitter{ |
50 |
| - background-color: #eee; |
51 |
| - border: none; |
52 |
| - width: 2px; |
53 |
| -} |
54 |
| - |
55 |
| -.default-theme.splitpanes--vertical>.splitpanes__splitter:hover, |
56 |
| -.default-theme .splitpanes--vertical>.splitpanes__splitter:hover{ |
57 |
| - background-color: transparent; |
58 |
| -} |
59 |
| - |
60 |
| -.default-theme.splitpanes--vertical>.splitpanes__splitter:after, |
61 |
| -.default-theme .splitpanes--vertical>.splitpanes__splitter:after{ |
62 |
| - content: none; |
63 |
| -} |
64 |
| - |
65 |
| -.splitpanes.default-theme .splitpanes__pane{ |
66 |
| - background-color: transparent; |
67 |
| -} |
68 |
| - |
69 |
| -:root{ |
70 |
| - /* color */ |
71 |
| - --json-tree-string-color: #cb3f41; |
72 |
| - --json-tree-symbol-color: #cb3f41; |
73 |
| - --json-tree-boolean-color: #112aa7; |
74 |
| - --json-tree-function-color: #112aa7; |
75 |
| - --json-tree-number-color: #3029cf; |
76 |
| - --json-tree-label-color: #871d8f; |
77 |
| - --json-tree-property-color: #000000; |
78 |
| - --json-tree-arrow-color: #727272; |
79 |
| - --json-tree-operator-color: #727272; |
80 |
| - --json-tree-null-color: #8d8d8d; |
81 |
| - --json-tree-undefined-color: #8d8d8d; |
82 |
| - --json-tree-date-color: #8d8d8d; |
83 |
| - --json-tree-internal-color: grey; |
84 |
| - --json-tree-regex-color: #cb3f41; |
85 |
| - /* position */ |
86 |
| - --json-tree-li-indentation: 1em; |
87 |
| - --json-tree-li-line-height: 1.3; |
88 |
| - /* font */ |
89 |
| - --json-tree-font-size: 14px; |
90 |
| - --json-tree-font-family: 'Courier New', Courier, monospace; |
91 |
| -} |
92 |
| - |
93 |
| -.dark:root{ |
94 |
| - /* color */ |
95 |
| - --json-tree-string-color: rgb(255, 136, 150); |
96 |
| - --json-tree-symbol-color: rgb(255, 136, 150); |
97 |
| - --json-tree-boolean-color: #809aff; |
98 |
| - --json-tree-function-color: #809aff; |
99 |
| - --json-tree-number-color: #5ac5ff; |
100 |
| - --json-tree-label-color: #ed71ff; |
101 |
| - --json-tree-property-color: #fff; |
102 |
| - --json-tree-arrow-color: #d3d3d3; |
103 |
| - --json-tree-operator-color: #d3d3d3; |
104 |
| - --json-tree-null-color: #9f9f9f; |
105 |
| - --json-tree-undefined-color: #9f9f9f; |
106 |
| - --json-tree-date-color: #9f9f9f; |
107 |
| - --json-tree-internal-color: #9f9f9f; |
108 |
| - --json-tree-regex-color: rgb(255, 136, 150); |
109 |
| -} |
110 |
| - |
111 |
| -.indent{ |
112 |
| - text-indent: initial; |
| 31 | + display: none; |
| 32 | + width: 0 !important; |
| 33 | + height: 0 !important; |
| 34 | +} |
| 35 | + |
| 36 | +.default-theme.splitpanes--vertical > .splitpanes__splitter:hover:before, |
| 37 | +.default-theme .splitpanes--vertical > .splitpanes__splitter:hover:before { |
| 38 | + background-color: rgba(255, 0, 0, 0.07); |
| 39 | +} |
| 40 | + |
| 41 | +.default-theme.splitpanes--vertical > .splitpanes__splitter:before, |
| 42 | +.default-theme .splitpanes--vertical > .splitpanes__splitter:before { |
| 43 | + height: 100%; |
| 44 | + width: 7px; |
| 45 | + background-color: transparent; |
| 46 | +} |
| 47 | + |
| 48 | +.default-theme.splitpanes--vertical > .splitpanes__splitter, |
| 49 | +.default-theme .splitpanes--vertical > .splitpanes__splitter { |
| 50 | + background-color: #eee; |
| 51 | + border: none; |
| 52 | + width: 2px; |
| 53 | +} |
| 54 | + |
| 55 | +.default-theme.splitpanes--vertical > .splitpanes__splitter:hover, |
| 56 | +.default-theme .splitpanes--vertical > .splitpanes__splitter:hover { |
| 57 | + background-color: transparent; |
| 58 | +} |
| 59 | + |
| 60 | +.default-theme.splitpanes--vertical > .splitpanes__splitter:after, |
| 61 | +.default-theme .splitpanes--vertical > .splitpanes__splitter:after { |
| 62 | + content: none; |
| 63 | +} |
| 64 | + |
| 65 | +.splitpanes.default-theme .splitpanes__pane { |
| 66 | + background-color: transparent; |
| 67 | +} |
| 68 | + |
| 69 | +:root { |
| 70 | + /* color */ |
| 71 | + --json-tree-string-color: #cb3f41; |
| 72 | + --json-tree-symbol-color: #cb3f41; |
| 73 | + --json-tree-boolean-color: #112aa7; |
| 74 | + --json-tree-function-color: #112aa7; |
| 75 | + --json-tree-number-color: #3029cf; |
| 76 | + --json-tree-label-color: #871d8f; |
| 77 | + --json-tree-property-color: #000000; |
| 78 | + --json-tree-arrow-color: #727272; |
| 79 | + --json-tree-operator-color: #727272; |
| 80 | + --json-tree-null-color: #8d8d8d; |
| 81 | + --json-tree-undefined-color: #8d8d8d; |
| 82 | + --json-tree-date-color: #8d8d8d; |
| 83 | + --json-tree-internal-color: grey; |
| 84 | + --json-tree-regex-color: #cb3f41; |
| 85 | + /* position */ |
| 86 | + --json-tree-li-indentation: 1em; |
| 87 | + --json-tree-li-line-height: 1.3; |
| 88 | + /* font */ |
| 89 | + --json-tree-font-size: 14px; |
| 90 | + --json-tree-font-family: 'Courier New', Courier, monospace; |
| 91 | +} |
| 92 | + |
| 93 | +.dark:root { |
| 94 | + /* color */ |
| 95 | + --json-tree-string-color: rgb(255, 136, 150); |
| 96 | + --json-tree-symbol-color: rgb(255, 136, 150); |
| 97 | + --json-tree-boolean-color: #809aff; |
| 98 | + --json-tree-function-color: #809aff; |
| 99 | + --json-tree-number-color: #5ac5ff; |
| 100 | + --json-tree-label-color: #ed71ff; |
| 101 | + --json-tree-property-color: #fff; |
| 102 | + --json-tree-arrow-color: #d3d3d3; |
| 103 | + --json-tree-operator-color: #d3d3d3; |
| 104 | + --json-tree-null-color: #9f9f9f; |
| 105 | + --json-tree-undefined-color: #9f9f9f; |
| 106 | + --json-tree-date-color: #9f9f9f; |
| 107 | + --json-tree-internal-color: #9f9f9f; |
| 108 | + --json-tree-regex-color: rgb(255, 136, 150); |
| 109 | +} |
| 110 | + |
| 111 | +.indent { |
| 112 | + text-indent: initial; |
113 | 113 | }
|
114 | 114 |
|
115 | 115 | .scroll-bar::-webkit-scrollbar-track-piece {
|
116 |
| - background: rgba(255, 62, 0, 0.2); |
| 116 | + background: rgba(255, 62, 0, 0.2); |
117 | 117 | }
|
118 | 118 |
|
119 | 119 | .scroll-bar::-webkit-scrollbar {
|
120 |
| - width: 6px; |
121 |
| - } |
| 120 | + width: 6px; |
| 121 | +} |
122 | 122 |
|
123 | 123 | .scroll-bar::-webkit-scrollbar-thumb {
|
124 |
| - background: rgba(255, 62, 0, 0.38); |
125 |
| - border-radius: 20px; |
126 |
| - } |
| 124 | + background: rgba(255, 62, 0, 0.38); |
| 125 | + border-radius: 20px; |
| 126 | +} |
127 | 127 |
|
128 | 128 | .hover-icon:hover > div {
|
129 |
| - --at-apply: text-main; |
| 129 | + --at-apply: text-main; |
130 | 130 | }
|
0 commit comments