@yongdall/theme 0.6.6 → 0.7.2
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/hooks.d.mts +3 -0
- package/hooks.mjs +1 -1
- package/hooks.mjs.map +1 -1
- package/index.d.mts +14 -0
- package/index.mjs +3 -3
- package/index.mjs.map +1 -1
- package/package.json +4 -4
- package/style.css +1 -203
- package/theme-allSider.css +1 -202
- package/theme-base.css +1 -229
- package/theme-tabs.css +1 -262
- package/yongdall/enumeration.mjs +1 -1
- package/yongdall/enumeration.mjs.map +1 -1
- package/yongdall.assets.json +3 -7
- package/style.css.map +0 -1
- package/style.mjs +0 -0
- package/theme-allSider.css.map +0 -1
- package/theme-allSider.mjs +0 -0
- package/theme-base.css.map +0 -1
- package/theme-base.mjs +0 -0
- package/theme-tabs.css.map +0 -1
- package/theme-tabs.mjs +0 -0
package/theme-tabs.css
CHANGED
|
@@ -1,262 +1 @@
|
|
|
1
|
-
body.YongDallTheme-tabs {
|
|
2
|
-
--YongDallTheme-tabs-nav-size: 48px;
|
|
3
|
-
--YongDallTheme-tabs-activity-size: 48px;
|
|
4
|
-
--YongDallTheme-tabs-button-size: 40px;
|
|
5
|
-
--YongDallTheme-tabs-button-font-size: 20px;
|
|
6
|
-
--YongDallTheme-tabs-menu-button-size: 48px;
|
|
7
|
-
--YongDallTheme-tabs-menu-button-font-size: 32px;
|
|
8
|
-
--YongDallTheme-tabs-menu-button-inset: 20px;
|
|
9
|
-
--YongDallTheme-tabs-button-border-size: 2px;
|
|
10
|
-
|
|
11
|
-
padding-inline-start: 0;
|
|
12
|
-
transition: padding-inline-start 0.2s;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
.YongDallTheme-activity {
|
|
16
|
-
position: fixed;
|
|
17
|
-
inset-inline: 0;
|
|
18
|
-
inset-block-start: var(--YongDallTheme-tabs-nav-size);
|
|
19
|
-
block-size: var(--YongDallTheme-tabs-activity-size);
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-direction: row;
|
|
22
|
-
overflow: auto;
|
|
23
|
-
overflow-y: hidden;
|
|
24
|
-
scrollbar-width: thin;
|
|
25
|
-
z-index: 10000;
|
|
26
|
-
background: var(--color-PageTab-background);
|
|
27
|
-
border-block-end: 1px solid var(--color-PageTab-border);
|
|
28
|
-
|
|
29
|
-
@media print {
|
|
30
|
-
display: none !important;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.YongDallTheme-activity-page {
|
|
35
|
-
max-inline-size: 300px;
|
|
36
|
-
min-inline-size: 100px;
|
|
37
|
-
|
|
38
|
-
>a {
|
|
39
|
-
line-height: auto;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@media not print {
|
|
44
|
-
--Page-block-start: calc(var(--YongDallTheme-tabs-nav-size) + var(--YongDallTheme-tabs-activity-size));
|
|
45
|
-
padding-block-start: var(--Page-block-start);
|
|
46
|
-
|
|
47
|
-
&.YongDallTheme-tabs-menu-open {
|
|
48
|
-
padding-inline-start: var(--theme-sider-size);
|
|
49
|
-
|
|
50
|
-
.YongDallTheme-activity {
|
|
51
|
-
inset-inline-start: var(--theme-sider-size);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@media screen and (max-width: 800px) {
|
|
57
|
-
|
|
58
|
-
&.YongDallTheme-tabs-menu-open {
|
|
59
|
-
padding-inline-start: 0;
|
|
60
|
-
|
|
61
|
-
.YongDallTheme-activity {
|
|
62
|
-
inset-inline-start: 0;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.YongDallTheme-tabs-panels>div {
|
|
69
|
-
inline-size: 300px;
|
|
70
|
-
inset-block-start: var(--YongDallTheme-tabs-nav-size);
|
|
71
|
-
inset-inline-end: 0;
|
|
72
|
-
max-inline-size: 100dvw;
|
|
73
|
-
max-block-size: calc(100dvb - var(--YongDallTheme-tabs-nav-size));
|
|
74
|
-
border: #001529 1px solid;
|
|
75
|
-
box-sizing: border-box;
|
|
76
|
-
margin: 0;
|
|
77
|
-
inset-inline-start: auto;
|
|
78
|
-
padding: 0;
|
|
79
|
-
|
|
80
|
-
@media print {
|
|
81
|
-
display: none !important;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.YongDallTheme-tabs-header {
|
|
86
|
-
|
|
87
|
-
position: fixed;
|
|
88
|
-
inset-inline: 0;
|
|
89
|
-
inset-block-start: 0;
|
|
90
|
-
block-size: var(--YongDallTheme-tabs-nav-size);
|
|
91
|
-
z-index: 100000;
|
|
92
|
-
transition: bottom 0.5s;
|
|
93
|
-
|
|
94
|
-
display: flex;
|
|
95
|
-
flex-direction: row;
|
|
96
|
-
align-items: center;
|
|
97
|
-
color: var(--color-nav-text);
|
|
98
|
-
background-color: var(--color-nav-bg);
|
|
99
|
-
user-select: none;
|
|
100
|
-
overflow: auto;
|
|
101
|
-
scrollbar-width: none;
|
|
102
|
-
|
|
103
|
-
@media print {
|
|
104
|
-
display: none !important;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
>* {
|
|
109
|
-
flex-shrink: 0;
|
|
110
|
-
background-color: inherit;
|
|
111
|
-
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
>span {
|
|
115
|
-
flex: auto;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
a:hover {
|
|
120
|
-
color: var(--color-nav-text-highlight);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
.YongDallTheme-tabs-actions {
|
|
125
|
-
display: contents;
|
|
126
|
-
|
|
127
|
-
>* {
|
|
128
|
-
flex-shrink: 0;
|
|
129
|
-
background-color: inherit;
|
|
130
|
-
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
>span {
|
|
134
|
-
display: none;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
>a,
|
|
138
|
-
>div {
|
|
139
|
-
|
|
140
|
-
flex-shrink: 0;
|
|
141
|
-
overflow: hidden;
|
|
142
|
-
cursor: pointer;
|
|
143
|
-
inline-size: var(--YongDallTheme-tabs-button-size);
|
|
144
|
-
line-height: var(--YongDallTheme-tabs-button-size);
|
|
145
|
-
block-size: 100%;
|
|
146
|
-
text-align: center;
|
|
147
|
-
position: relative;
|
|
148
|
-
font-size: var(--YongDallTheme-tabs-button-font-size);
|
|
149
|
-
border-block: var(--YongDallTheme-tabs-button-border-size) solid transparent;
|
|
150
|
-
|
|
151
|
-
&:hover {
|
|
152
|
-
background-color: var(--color-nav-bg-highlight);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
img {
|
|
156
|
-
position: absolute;
|
|
157
|
-
inset: 0;
|
|
158
|
-
margin: auto;
|
|
159
|
-
max-block-size: 100%;
|
|
160
|
-
max-inline-size: 100%;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.YongDallTheme-tabs-header-title {
|
|
170
|
-
font-weight: bold;
|
|
171
|
-
font-size: 1.2em;
|
|
172
|
-
margin-inline-start: .4em;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
.YongDallTheme-tabs-menu-button {
|
|
177
|
-
flex-shrink: 0;
|
|
178
|
-
overflow: hidden;
|
|
179
|
-
cursor: pointer;
|
|
180
|
-
inline-size: calc(var(--YongDallTheme-tabs-nav-size) * 0.6);
|
|
181
|
-
block-size: calc(var(--YongDallTheme-tabs-nav-size) * 0.6);
|
|
182
|
-
margin-inline: 4px;
|
|
183
|
-
text-align: center;
|
|
184
|
-
position: relative;
|
|
185
|
-
border-block: var(--YongDallTheme-tabs-button-border-size) solid transparent;
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.YongDallTheme-tabs-header .YongDallTheme-logo {
|
|
193
|
-
display: contents;
|
|
194
|
-
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
body.YongDallTheme-tabs .YongDallTheme-logo>* {
|
|
198
|
-
max-block-size: 100%;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
.YongDallTheme-tabs-button {
|
|
203
|
-
&:hover {
|
|
204
|
-
background-color: var(--color-nav-bg-highlight);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.YongDallTheme-tabs-sidebar {
|
|
209
|
-
overscroll-behavior: contain;
|
|
210
|
-
position: fixed;
|
|
211
|
-
inset-block-start: var(--YongDallTheme-tabs-nav-size);
|
|
212
|
-
inset-block-end: 0;
|
|
213
|
-
inset-inline-start: 0;
|
|
214
|
-
block-size: 100%;
|
|
215
|
-
display: flex;
|
|
216
|
-
flex-direction: row;
|
|
217
|
-
z-index: 100000;
|
|
218
|
-
transition: bottom 0.5s;
|
|
219
|
-
|
|
220
|
-
transition: inline-size 0.2s;
|
|
221
|
-
border-inline-end: 1px solid #f0f0f0;
|
|
222
|
-
background: rgba(0, 21, 41, 0.08);
|
|
223
|
-
overflow: hidden;
|
|
224
|
-
block-size: calc(100% - var(--YongDallTheme-tabs-nav-size));
|
|
225
|
-
max-inline-size: var(--theme-sider-size);
|
|
226
|
-
inline-size: 0;
|
|
227
|
-
|
|
228
|
-
@media print {
|
|
229
|
-
display: none !important;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
>* {
|
|
233
|
-
inline-size: var(--theme-sider-size);
|
|
234
|
-
block-size: 100%;
|
|
235
|
-
background: #fff;
|
|
236
|
-
position: relative;
|
|
237
|
-
overflow: auto;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
@media screen and (max-width: 800px) {
|
|
241
|
-
transition: none;
|
|
242
|
-
max-inline-size: initial;
|
|
243
|
-
inline-size: 0;
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
>* {
|
|
247
|
-
max-inline-size: 100%;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.YongDallTheme-tabs-menu-open .YongDallTheme-tabs-sidebar {
|
|
253
|
-
inline-size: var(--theme-sider-size);
|
|
254
|
-
|
|
255
|
-
@media screen and (max-width: 800px) {
|
|
256
|
-
inline-size: 100vw;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
/*# sourceMappingURL=theme-tabs.css.map*/
|
|
1
|
+
body.YongDallTheme-tabs{--YongDallTheme-tabs-nav-size:48px;--YongDallTheme-tabs-activity-size:48px;--YongDallTheme-tabs-button-size:40px;--YongDallTheme-tabs-button-font-size:20px;--YongDallTheme-tabs-menu-button-size:48px;--YongDallTheme-tabs-menu-button-font-size:32px;--YongDallTheme-tabs-menu-button-inset:20px;--YongDallTheme-tabs-button-border-size:2px;padding-inline-start:0;transition:padding-inline-start .2s;& .YongDallTheme-activity{block-size:var(--YongDallTheme-tabs-activity-size);scrollbar-width:thin;z-index:10000;background:var(--color-PageTab-background);border-block-end:1px solid var(--color-PageTab-border);flex-direction:row;display:flex;position:fixed;inset-block-start:var(--YongDallTheme-tabs-nav-size);inset-inline:0;overflow:auto hidden;@media print{display:none!important}}& .YongDallTheme-activity-page{min-inline-size:100px;max-inline-size:300px;&>a{line-height:auto}}@media not print{--Page-block-start:calc(var(--YongDallTheme-tabs-nav-size) + var(--YongDallTheme-tabs-activity-size));padding-block-start:var(--Page-block-start);&.YongDallTheme-tabs-menu-open{padding-inline-start:var(--theme-sider-size);& .YongDallTheme-activity{inset-inline-start:var(--theme-sider-size)}}}@media screen and (width<=800px){&.YongDallTheme-tabs-menu-open{padding-inline-start:0;& .YongDallTheme-activity{inset-inline-start:0}}}}.YongDallTheme-tabs-panels>div{inline-size:300px;max-inline-size:100dvw;max-block-size:calc(100dvb - var(--YongDallTheme-tabs-nav-size));border:var(--color-panel-border) 1px solid;box-sizing:border-box;margin:0;padding:0;inset-block-start:var(--YongDallTheme-tabs-nav-size);inset-inline:auto 0;@media print{display:none!important}}.YongDallTheme-tabs-header{block-size:var(--YongDallTheme-tabs-nav-size);z-index:100000;color:var(--color-nav-text);background-color:var(--color-nav-bg);user-select:none;scrollbar-width:none;flex-direction:row;align-items:center;transition:bottom .5s;display:flex;position:fixed;inset-block-start:0;inset-inline:0;overflow:auto;@media print{display:none!important}&>*{background-color:inherit;flex-shrink:0}&>span{flex:auto}& a:hover{color:var(--color-nav-text-highlight)}& .YongDallTheme-tabs-actions{display:contents;&>*{background-color:inherit;flex-shrink:0}&>span{display:none}&>a,&>div{cursor:pointer;inline-size:var(--YongDallTheme-tabs-button-size);line-height:var(--YongDallTheme-tabs-button-size);text-align:center;block-size:100%;font-size:var(--YongDallTheme-tabs-button-font-size);border-block:var(--YongDallTheme-tabs-button-border-size) solid transparent;flex-shrink:0;position:relative;overflow:hidden;&:hover{background-color:var(--color-nav-bg-highlight)}& img{max-block-size:100%;max-inline-size:100%;margin:auto;position:absolute;inset:0}}}}.YongDallTheme-tabs-header-title{margin-inline-start:.4em;font-size:1.2em;font-weight:700}.YongDallTheme-tabs-menu-button{cursor:pointer;inline-size:calc(var(--YongDallTheme-tabs-nav-size) * .6);block-size:calc(var(--YongDallTheme-tabs-nav-size) * .6);text-align:center;border-block:var(--YongDallTheme-tabs-button-border-size) solid transparent;flex-shrink:0;margin-inline:4px;position:relative;overflow:hidden}.YongDallTheme-tabs-header .YongDallTheme-logo{display:contents}body.YongDallTheme-tabs .YongDallTheme-logo>*{max-block-size:100%}.YongDallTheme-tabs-button{&:hover{background-color:var(--color-nav-bg-highlight)}}.YongDallTheme-tabs-sidebar{overscroll-behavior:contain;z-index:100000;border-inline-end:1px solid var(--color-sidebar-border);background:var(--color-sidebar-mask);block-size:100%;block-size:calc(100% - var(--YongDallTheme-tabs-nav-size));max-inline-size:var(--theme-sider-size);flex-direction:row;inline-size:0;transition:inline-size .2s;display:flex;position:fixed;inset-block-start:var(--YongDallTheme-tabs-nav-size);inset-block-end:0;inset-inline-start:0;overflow:hidden;@media print{display:none!important}&>*{inline-size:var(--theme-sider-size);background:var(--color-sidebar-background);block-size:100%;position:relative;overflow:auto}@media screen and (width<=800px){max-inline-size:initial;inline-size:0;transition:none;&>*{max-inline-size:100%}}}.YongDallTheme-tabs-menu-open .YongDallTheme-tabs-sidebar{inline-size:var(--theme-sider-size);@media screen and (width<=800px){inline-size:100vw}}
|
package/yongdall/enumeration.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enumeration.mjs","names":[],"sources":["../../../packages/theme/yongdall/enumeration.mjs"],"sourcesContent":["export const theme = [\n\t{ theme: '@yongdall/theme#allSider', label: '全侧主题' },\n\t{ theme: '@yongdall/theme#base', label: '基础主题' },\n\t{ theme: '@yongdall/theme#tabs', label: '多页主题' },\n\t{ theme: '@yongdall/theme#pure', label: '纯净主题' },\n];\n"],"mappings":";AAAA,MAAa,QAAQ;CACpB;EAAE,OAAO;EAA4B,OAAO;
|
|
1
|
+
{"version":3,"file":"enumeration.mjs","names":[],"sources":["../../../packages/theme/yongdall/enumeration.mjs"],"sourcesContent":["export const theme = [\n\t{ theme: '@yongdall/theme#allSider', label: '全侧主题' },\n\t{ theme: '@yongdall/theme#base', label: '基础主题' },\n\t{ theme: '@yongdall/theme#tabs', label: '多页主题' },\n\t{ theme: '@yongdall/theme#pure', label: '纯净主题' },\n];\n"],"mappings":";AAAA,MAAa,QAAQ;CACpB;EAAE,OAAO;EAA4B,OAAO;CAAO;CACnD;EAAE,OAAO;EAAwB,OAAO;CAAO;CAC/C;EAAE,OAAO;EAAwB,OAAO;CAAO;CAC/C;EAAE,OAAO;EAAwB,OAAO;CAAO;AAChD"}
|
package/yongdall.assets.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"files": {
|
|
3
3
|
"style.css": "style.css",
|
|
4
4
|
"theme-allSider.css": "theme-allSider.css",
|
|
5
|
-
"theme-
|
|
6
|
-
"theme-
|
|
5
|
+
"theme-tabs.css": "theme-tabs.css",
|
|
6
|
+
"theme-base.css": "theme-base.css"
|
|
7
7
|
},
|
|
8
8
|
"alias": {
|
|
9
9
|
".": "index",
|
|
@@ -11,11 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"esm": {
|
|
13
13
|
"hooks": "hooks.mjs",
|
|
14
|
-
"index": "index.mjs"
|
|
15
|
-
"style": "style.mjs",
|
|
16
|
-
"theme-allSider": "theme-allSider.mjs",
|
|
17
|
-
"theme-base": "theme-base.mjs",
|
|
18
|
-
"theme-tabs": "theme-tabs.mjs"
|
|
14
|
+
"index": "index.mjs"
|
|
19
15
|
},
|
|
20
16
|
"styles": [
|
|
21
17
|
"style.css"
|
package/style.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"style.css","names":[],"sources":["../../packages/theme/pageManager/activity.css","../../packages/theme/user/user-menu.css","../../packages/theme/style.css"],"sourcesContent":[".YongDallTheme-activity-page {\n\tdisplay: flex;\n\t/* margin: 5px; */\n\tbackground-color: #DDD;\n\toutline: 1px solid #3337;\n\tflex-direction: row;\n\tflex-wrap: nowrap;\n\talign-content: center;\n\talign-items: center;\n\t/* border-radius: 5px; */\n\tposition: relative;\n\toverflow: hidden;\n}\n\n.YongDallTheme-activity-title {\n\tflex: 1;\n\tpadding-inline: 8px;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n.YongDallTheme-activity-title::before {\n\tcontent: '';\n\n\tposition: absolute;\n\tinset: 0;\n}\n\n.YongDallTheme-activity-current {\n\tbackground-color: #ADD;\n}\n\n.YongDallTheme-activity-close {\n\tappearance: none;\n\tbackground: none;\n\tborder: none;\n\tinline-size: 40px;\n\tblock-size: 40px;\n\tposition: relative;\n\toverflow: clip;\n\tcursor: pointer;\n\n\t&::before,\n\t&::after {\n\t\tposition: absolute;\n\t\tinset: 0;\n\t\tmargin: auto;\n\t\ttransform-origin: center center;\n\t\tinline-size: 50%;\n\t\tblock-size: 6.25%;\n\t\tborder-radius: 1000px;\n\t\tbackground-color: currentColor;\n\n\t}\n\n\t&::before {\n\t\ttransform: rotate(45deg);\n\t}\n\n\t&::after {\n\t\ttransform: rotate(-45deg);\n\t}\n}\n\n.YongDallTheme-activity-page:hover,\n.YongDallTheme-activity-current,\n.YongDallTheme-activity-page:focus-within {\n\n\t.YongDallTheme-activity-close {\n\t\tdisplay: block;\n\n\t\t&::before,\n\t\t&::after {\n\t\t\tcontent: '';\n\n\t\t}\n\t}\n}\n\n.YongDallTheme-activity-unsaved .YongDallTheme-activity-close {\n\tcolor: #AAAAAA;\n\t\tdisplay: block;\n\n\t&::before,\n\t&::after {\n\t\tcontent: '';\n\t\tinline-size: 25%;\n\t\tblock-size: 25%;\n\t}\n}\n\n.YongDallTheme-activity-close {\n\n\t&:hover,\n\t&:focus {\n\t\tcolor: #40a9ff;\n\n\t\t&::before,\n\t\t&::after {\n\t\t\tinline-size: 50%;\n\t\t\tblock-size: 6.25%;\n\t\t}\n\t}\n}\n","\n.YongDallTheme-user-info {\n\tposition: sticky;\n\ttop: 0;\n\tbackground-color: #fff;\n\tdisplay: flex;\n\tflex-direction: row;\n\tfont-size: 16px;\n\tborder-bottom: solid 1px #f0f0f0;\n}\n\n.YongDallTheme-user-info > * {\n\tmargin: auto;\n}\n\n.YongDallTheme-user-info .btns {\n\tblock-size: 40px;\n\tmargin-right: 8px;\n\tfont-size: 32px;\n\tmargin-left: auto;\n\talign-items: center;\n\tdisplay: inline-flex;\n\tgap: 8px;\n}\n\n.YongDallTheme-user-info .btns > * {\n\tinline-size: 40px;\n\tfont-size: 32px;\n\tcolor: inherit;\n\tcursor: pointer;\n}\n\n\n.YongDallTheme-user-info .btns > *:hover {\n\tcolor: var(--color-primary);\n}\n\n.avatar {\n\tmargin: 8px;\n\tbackground: transparent;\n\tbox-sizing: border-box;\n\tpadding: 0;\n\tfont-variant: tabular-nums;\n\tlist-style: none;\n\tfont-feature-settings: 'tnum';\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\twhite-space: nowrap;\n\ttext-align: center;\n\tvertical-align: middle;\n\tinline-size: 48px;\n\tblock-size: 48px;\n\tline-height: 48px;\n}\n\n.username {\n\tflex: 1;\n\toverflow: hidden;\n\twhite-space: nowrap;\n\ttext-overflow: ellipsis;\n}\n\n.YongDallTheme-user-avatar {\n\tposition: relative;\n\t& > img {\n\t\tborder-radius: 50%;\n\t}\n\t& > :last-child {\n\t\tposition: absolute;\n\t\tinline-size: auto;\n\t\tblock-size: auto;\n\t\tbottom: 0;\n\t\tright: 0;\n\t\ttop: 60%;\n\t\tleft: 60%;\n\t}\n\t& > :first-child {\n\t\tposition: absolute;\n\t\tinline-size: auto;\n\t\tblock-size: auto;\n\t\ttop: 0;\n\t\tleft: 0;\n\t}\n}\n","@import url('./pageManager/activity.css');\n@import url('./user/user-menu.css');\n\n.YongDallTheme-logo {\n\tcolor: var(--color-nav-logo);\n}\n.YongDallTheme-root {\n\tmin-block-size: 100%;\n\tcontainer-type: inline-size;\n\tposition: relative;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;ACtGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;ACjFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
|
package/style.mjs
DELETED
|
File without changes
|
package/theme-allSider.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"theme-allSider.css","names":[],"sources":["../../packages/theme/theme-allSider.css"],"sourcesContent":["body.YongDallTheme-allSider {\n\t--YongDallTheme-allSider-nav-size: 48px;\n\t--YongDallTheme-allSider-button-size: 40px;\n\t--YongDallTheme-allSider-button-font-size: 20px;\n\t--YongDallTheme-allSider-menu-button-size: 48px;\n\t--YongDallTheme-allSider-menu-button-font-size: 32px;\n\t--YongDallTheme-allSider-menu-button-inset: 20px;\n\t--YongDallTheme-allSider-button-border-size: 2px;\n\ttransition: padding-inline-start 0.2s;\n\n\n\n\t@media not print {\n\t\tpadding-inline-start: var(--YongDallTheme-allSider-nav-size);\n\t\t&.YongDallTheme-allSider-nav-open {\n\t\t\tpadding-inline-start: calc(var(--YongDallTheme-allSider-nav-size) + var(--theme-sider-size));\n\t\t}\n\t}\n\n\t@media screen and (max-width: 800px) {\n\n\t\t&.YongDallTheme-allSider-nav-open {\n\t\t\tpadding-inline-start: var(--YongDallTheme-allSider-nav-size);\n\t\t}\n\t}\n\t.YongDallTheme-activity-page {\n\t\tline-height: 40px;\n\t}\n}\n\n\n.YongDallTheme-allSider-nav-header {\n\tposition: fixed;\n\tbottom: 0;\n\tinset-inline-start: 0;\n\tblock-size: 100%;\n\tdisplay: flex;\n\tflex-direction: row;\n\tz-index: 100000;\n\ttransition: bottom 0.5s;\n\n\t@media print {\n\t\tdisplay: none!important;\n\t}\n}\n\n\n.YongDallTheme-allSider-nav-actions {\n\toverscroll-behavior: contain;\n\tinline-size: var(--YongDallTheme-allSider-nav-size);\n\tposition: relative;\n\tdisplay: flex;\n\tflex-direction: column;\n\tblock-size: 100%;\n\talign-items: center;\n\tcolor: var(--color-nav-text);\n\tbackground-color: var(--color-nav-bg);\n\tuser-select: none;\n\toverflow: auto;\n\tscrollbar-width: none;\n\n\n\t>* {\n\t\tflex-shrink: 0;\n\t\tbackground-color: inherit;\n\n\t}\n\n\t>span {\n\t\tflex: auto;\n\t}\n\n\t> :last-child {\n\t\tposition: sticky;\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tinline-size: 100%;\n\n\t\tinset-block-end: 0;\n\t\tbox-shadow: 0 0 20px 10px #fff5;\n\t}\n\n\ta:hover {\n\t\tcolor: var(--color-nav-text-highlight);\n\t}\n\n}\n\n\n.YongDallTheme-allSider-nav-group {\n\tdisplay: contents;\n}\n\n\n.YongDallTheme-allSider-nav-actions .YongDallTheme-logo {\n\tflex-shrink: 0;\n\toverflow: hidden;\n\tcursor: pointer;\n\tblock-size: var(--YongDallTheme-allSider-button-size);\n\tline-height: var(--YongDallTheme-allSider-button-size);\n\tinline-size: 100%;\n\ttext-align: center;\n\tposition: relative;\n\n\n\tsvg, img {\n\t\tposition: absolute;\n\t\tinset: 0;\n\t\tmargin: auto;\n\t\tmax-block-size: 40px;\n\t\tmax-inline-size: 40px;\n\t}\n\n}\n\n.YongDallTheme-allSider-nav-button {\n\tflex-shrink: 0;\n\toverflow: hidden;\n\tcursor: pointer;\n\tblock-size: var(--YongDallTheme-allSider-button-size);\n\tline-height: var(--YongDallTheme-allSider-button-size);\n\tinline-size: 100%;\n\ttext-align: center;\n\tposition: relative;\n\tfont-size: var(--YongDallTheme-allSider-button-font-size);\n\tborder-inline: var(--YongDallTheme-allSider-button-border-size) solid transparent;\n\n\t&[hidden] {\n\t\tdisplay: none;\n\t}\n\n\n\t>a {\n\t\tdisplay: block;\n\t\toverflow: hidden;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t}\n\n\t&.YongDallTheme-allSider-nav-selectable:hover {\n\t\tbackground-color: var(--color-nav-bg-highlight);\n\t}\n\n\t&.YongDallTheme-allSider-nav-selected {\n\t\tbackground-color: var(--color-nav-bg-highlight);\n\t\tborder-inline-end-color: currentColor;\n\t}\n}\n.YongDallTheme-allSider-nav-button:not(.YongDallTheme-user-button) {\n\tdisplay: flex;\n\n\talign-items: center;\n\tjustify-content: space-evenly;\n\n\n\t>svg:only-child, >img:only-child {\n\t\tblock-size: 80%;\n\t}\n\n}\n\n.YongDallTheme-allSider-nav-sidebar {\n\toverscroll-behavior: contain;\n\ttransition: inline-size 0.2s;\n\tborder-inline-end: 1px solid #f0f0f0;\n\tbackground: rgba(0, 21, 41, 0.08);\n\toverflow: hidden;\n\tblock-size: 100%;\n\tmax-inline-size: var(--theme-sider-size);\n\tinline-size: 0;\n\n\t>* {\n\t\tinline-size: var(--theme-sider-size);\n\t\tblock-size: 100%;\n\t\tbackground: #fff;\n\t\tposition: relative;\n\t\toverflow: auto;\n\t}\n\n\t@media screen and (max-width: 800px) {\n\t\ttransition: none;\n\t\tmax-inline-size: initial;\n\t\tinline-size: 0;\n\n\n\t\t>* {\n\t\t\tmax-inline-size: 100%;\n\t\t}\n\t}\n}\n\n.YongDallTheme-allSider-nav-open .YongDallTheme-allSider-nav-sidebar {\n\tinline-size: var(--theme-sider-size);\n\n\t@media screen and (max-width: 800px) {\n\t\tinline-size: calc(100vw - var(--YongDallTheme-allSider-nav-size));\n\t}\n\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;;AAGA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA"}
|
package/theme-allSider.mjs
DELETED
|
File without changes
|
package/theme-base.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"theme-base.css","names":[],"sources":["../../packages/theme/theme-base.css"],"sourcesContent":["body.YongDallTheme-base {\n\t--YongDallTheme-base-nav-size: 48px;\n\t--YongDallTheme-base-button-size: 40px;\n\t--YongDallTheme-base-button-font-size: 20px;\n\t--YongDallTheme-base-menu-button-size: 48px;\n\t--YongDallTheme-base-menu-button-font-size: 32px;\n\t--YongDallTheme-base-menu-button-inset: 20px;\n\t--YongDallTheme-base-button-border-size: 2px;\n\n\tpadding-inline-start: 0;\n\ttransition: padding-inline-start 0.2s;\n\n\n\t@media not print {\n\t\t--Page-block-start: var(--YongDallTheme-base-nav-size);\n\t\tpadding-block-start: var(--Page-block-start);\n\n\t\t&.YongDallTheme-base-menu-open {\n\t\t\tpadding-inline-start: var(--theme-sider-size);\n\n\t\t}\n\n\t}\n\n\n\n\t@media screen and (max-width: 800px) {\n\n\t\t&.YongDallTheme-base-menu-open {\n\t\t\tpadding-inline-start: 0;\n\n\t\t}\n\t}\n}\n\n.YongDallTheme-base-panels>div {\n\tinline-size: 300px;\n\tinset-block-start: var(--YongDallTheme-base-nav-size);\n\tinset-inline-end: 0;\n\tmax-inline-size: 100dvw;\n\tmax-block-size: calc(100dvb - var(--YongDallTheme-base-nav-size));\n\tborder: #001529 1px solid;\n\tbox-sizing: border-box;\n\tmargin: 0;\n\tinset-inline-start: auto;\n\tpadding: 0;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n}\n\n.YongDallTheme-base-header {\n\n\tposition: fixed;\n\tinset-inline: 0;\n\tinset-block-start: 0;\n\tblock-size: var(--YongDallTheme-base-nav-size);\n\tz-index: 100000;\n\ttransition: bottom 0.5s;\n\n\tdisplay: flex;\n\tflex-direction: row;\n\talign-items: center;\n\tcolor: var(--color-nav-text);\n\tbackground-color: var(--color-nav-bg);\n\tuser-select: none;\n\toverflow: auto;\n\tscrollbar-width: none;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n\n\t>* {\n\t\tflex-shrink: 0;\n\t\tbackground-color: inherit;\n\n\t}\n\n\t>span {\n\t\tflex: auto;\n\t}\n\n\n\ta:hover {\n\t\tcolor: var(--color-nav-text-highlight);\n\t}\n\n\t\n\t.YongDallTheme-base-actions {\n\t\tdisplay: contents;\n\n\t\t>* {\n\t\t\tflex-shrink: 0;\n\t\t\tbackground-color: inherit;\n\n\t\t}\n\n\t\t>span {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t>a,\n\t\t>div {\n\n\t\t\tflex-shrink: 0;\n\t\t\toverflow: hidden;\n\t\t\tcursor: pointer;\n\t\t\tinline-size: var(--YongDallTheme-base-button-size);\n\t\t\tline-height: var(--YongDallTheme-base-button-size);\n\t\t\tblock-size: 100%;\n\t\t\ttext-align: center;\n\t\t\tposition: relative;\n\t\t\tfont-size: var(--YongDallTheme-base-button-font-size);\n\t\t\tborder-block: var(--YongDallTheme-base-button-border-size) solid transparent;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: var(--color-nav-bg-highlight);\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\tposition: absolute;\n\t\t\t\tinset: 0;\n\t\t\t\tmargin: auto;\n\t\t\t\tmax-block-size: 100%;\n\t\t\t\tmax-inline-size: 100%;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n.YongDallTheme-base-header-title {\n\tfont-weight: bold;\n\tfont-size: 1.2em;\n\tmargin-inline-start: .4em;\n}\n\n\n.YongDallTheme-base-menu-button {\n\tflex-shrink: 0;\n\toverflow: hidden;\n\tcursor: pointer;\n\tinline-size: calc(var(--YongDallTheme-base-nav-size) * 0.6);\n\tblock-size: calc(var(--YongDallTheme-base-nav-size) * 0.6);\n\tmargin-inline: 4px;\n\ttext-align: center;\n\tposition: relative;\n\tborder-block: var(--YongDallTheme-base-button-border-size) solid transparent;\n\n\n\n\n}\n\n.YongDallTheme-base-header .YongDallTheme-logo {\n\tdisplay: contents;\n\n}\n\nbody.YongDallTheme-base .YongDallTheme-logo>* {\n\tmax-block-size: 100%;\n}\n\n\n.YongDallTheme-base-button {\n\t&:hover {\n\t\tbackground-color: var(--color-nav-bg-highlight);\n\t}\n}\n\n.YongDallTheme-base-sidebar {\n\toverscroll-behavior: contain;\n\tposition: fixed;\n\tinset-block-start: var(--YongDallTheme-base-nav-size);\n\tinset-block-end: 0;\n\tinset-inline-start: 0;\n\tblock-size: 100%;\n\tdisplay: flex;\n\tflex-direction: row;\n\tz-index: 100000;\n\ttransition: bottom 0.5s;\n\n\ttransition: inline-size 0.2s;\n\tborder-inline-end: 1px solid #f0f0f0;\n\tbackground: rgba(0, 21, 41, 0.08);\n\toverflow: hidden;\n\tblock-size: calc(100% - var(--YongDallTheme-base-nav-size));\n\tmax-inline-size: var(--theme-sider-size);\n\tinline-size: 0;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n\n\t>* {\n\t\tinline-size: var(--theme-sider-size);\n\t\tblock-size: 100%;\n\t\tbackground: #fff;\n\t\tposition: relative;\n\t\toverflow: auto;\n\t}\n\n\t@media screen and (max-width: 800px) {\n\t\ttransition: none;\n\t\tmax-inline-size: initial;\n\t\tinline-size: 0;\n\n\n\t\t>* {\n\t\t\tmax-inline-size: 100%;\n\t\t}\n\t}\n}\n\n.YongDallTheme-base-menu-open .YongDallTheme-base-sidebar {\n\tinline-size: var(--theme-sider-size);\n\n\t@media screen and (max-width: 800px) {\n\t\tinline-size: 100vw;\n\t}\n\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;;;;AAIA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AAKA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA"}
|
package/theme-base.mjs
DELETED
|
File without changes
|
package/theme-tabs.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"theme-tabs.css","names":[],"sources":["../../packages/theme/theme-tabs.css"],"sourcesContent":["body.YongDallTheme-tabs {\n\t--YongDallTheme-tabs-nav-size: 48px;\n\t--YongDallTheme-tabs-activity-size: 48px;\n\t--YongDallTheme-tabs-button-size: 40px;\n\t--YongDallTheme-tabs-button-font-size: 20px;\n\t--YongDallTheme-tabs-menu-button-size: 48px;\n\t--YongDallTheme-tabs-menu-button-font-size: 32px;\n\t--YongDallTheme-tabs-menu-button-inset: 20px;\n\t--YongDallTheme-tabs-button-border-size: 2px;\n\n\tpadding-inline-start: 0;\n\ttransition: padding-inline-start 0.2s;\n\n\n\t.YongDallTheme-activity {\n\t\tposition: fixed;\n\t\tinset-inline: 0;\n\t\tinset-block-start: var(--YongDallTheme-tabs-nav-size);\n\t\tblock-size: var(--YongDallTheme-tabs-activity-size);\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\toverflow: auto;\n\t\toverflow-y: hidden;\n\t\tscrollbar-width: thin;\n\t\tz-index: 10000;\n\t\tbackground: var(--color-PageTab-background);\n\t\tborder-block-end: 1px solid var(--color-PageTab-border);\n\n\t\t@media print {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n\n\t.YongDallTheme-activity-page {\n\t\tmax-inline-size: 300px;\n\t\tmin-inline-size: 100px;\n\n\t\t>a {\n\t\t\tline-height: auto;\n\t\t}\n\t}\n\n\t@media not print {\n\t\t--Page-block-start: calc(var(--YongDallTheme-tabs-nav-size) + var(--YongDallTheme-tabs-activity-size));\n\t\tpadding-block-start: var(--Page-block-start);\n\n\t\t&.YongDallTheme-tabs-menu-open {\n\t\t\tpadding-inline-start: var(--theme-sider-size);\n\n\t\t\t.YongDallTheme-activity {\n\t\t\t\tinset-inline-start: var(--theme-sider-size);\n\t\t\t}\n\t\t}\n\t}\n\n\t@media screen and (max-width: 800px) {\n\n\t\t&.YongDallTheme-tabs-menu-open {\n\t\t\tpadding-inline-start: 0;\n\n\t\t\t.YongDallTheme-activity {\n\t\t\t\tinset-inline-start: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.YongDallTheme-tabs-panels>div {\n\tinline-size: 300px;\n\tinset-block-start: var(--YongDallTheme-tabs-nav-size);\n\tinset-inline-end: 0;\n\tmax-inline-size: 100dvw;\n\tmax-block-size: calc(100dvb - var(--YongDallTheme-tabs-nav-size));\n\tborder: #001529 1px solid;\n\tbox-sizing: border-box;\n\tmargin: 0;\n\tinset-inline-start: auto;\n\tpadding: 0;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n}\n\n.YongDallTheme-tabs-header {\n\n\tposition: fixed;\n\tinset-inline: 0;\n\tinset-block-start: 0;\n\tblock-size: var(--YongDallTheme-tabs-nav-size);\n\tz-index: 100000;\n\ttransition: bottom 0.5s;\n\n\tdisplay: flex;\n\tflex-direction: row;\n\talign-items: center;\n\tcolor: var(--color-nav-text);\n\tbackground-color: var(--color-nav-bg);\n\tuser-select: none;\n\toverflow: auto;\n\tscrollbar-width: none;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n\n\n\t>* {\n\t\tflex-shrink: 0;\n\t\tbackground-color: inherit;\n\n\t}\n\n\t>span {\n\t\tflex: auto;\n\t}\n\n\n\ta:hover {\n\t\tcolor: var(--color-nav-text-highlight);\n\t}\n\n\n\t.YongDallTheme-tabs-actions {\n\t\tdisplay: contents;\n\n\t\t>* {\n\t\t\tflex-shrink: 0;\n\t\t\tbackground-color: inherit;\n\n\t\t}\n\n\t\t>span {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t>a,\n\t\t>div {\n\n\t\t\tflex-shrink: 0;\n\t\t\toverflow: hidden;\n\t\t\tcursor: pointer;\n\t\t\tinline-size: var(--YongDallTheme-tabs-button-size);\n\t\t\tline-height: var(--YongDallTheme-tabs-button-size);\n\t\t\tblock-size: 100%;\n\t\t\ttext-align: center;\n\t\t\tposition: relative;\n\t\t\tfont-size: var(--YongDallTheme-tabs-button-font-size);\n\t\t\tborder-block: var(--YongDallTheme-tabs-button-border-size) solid transparent;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: var(--color-nav-bg-highlight);\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\tposition: absolute;\n\t\t\t\tinset: 0;\n\t\t\t\tmargin: auto;\n\t\t\t\tmax-block-size: 100%;\n\t\t\t\tmax-inline-size: 100%;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n.YongDallTheme-tabs-header-title {\n\tfont-weight: bold;\n\tfont-size: 1.2em;\n\tmargin-inline-start: .4em;\n}\n\n\n.YongDallTheme-tabs-menu-button {\n\tflex-shrink: 0;\n\toverflow: hidden;\n\tcursor: pointer;\n\tinline-size: calc(var(--YongDallTheme-tabs-nav-size) * 0.6);\n\tblock-size: calc(var(--YongDallTheme-tabs-nav-size) * 0.6);\n\tmargin-inline: 4px;\n\ttext-align: center;\n\tposition: relative;\n\tborder-block: var(--YongDallTheme-tabs-button-border-size) solid transparent;\n\n\n\n\n}\n\n.YongDallTheme-tabs-header .YongDallTheme-logo {\n\tdisplay: contents;\n\n}\n\nbody.YongDallTheme-tabs .YongDallTheme-logo>* {\n\tmax-block-size: 100%;\n}\n\n\n.YongDallTheme-tabs-button {\n\t&:hover {\n\t\tbackground-color: var(--color-nav-bg-highlight);\n\t}\n}\n\n.YongDallTheme-tabs-sidebar {\n\toverscroll-behavior: contain;\n\tposition: fixed;\n\tinset-block-start: var(--YongDallTheme-tabs-nav-size);\n\tinset-block-end: 0;\n\tinset-inline-start: 0;\n\tblock-size: 100%;\n\tdisplay: flex;\n\tflex-direction: row;\n\tz-index: 100000;\n\ttransition: bottom 0.5s;\n\n\ttransition: inline-size 0.2s;\n\tborder-inline-end: 1px solid #f0f0f0;\n\tbackground: rgba(0, 21, 41, 0.08);\n\toverflow: hidden;\n\tblock-size: calc(100% - var(--YongDallTheme-tabs-nav-size));\n\tmax-inline-size: var(--theme-sider-size);\n\tinline-size: 0;\n\n\t@media print {\n\t\tdisplay: none !important;\n\t}\n\n\t>* {\n\t\tinline-size: var(--theme-sider-size);\n\t\tblock-size: 100%;\n\t\tbackground: #fff;\n\t\tposition: relative;\n\t\toverflow: auto;\n\t}\n\n\t@media screen and (max-width: 800px) {\n\t\ttransition: none;\n\t\tmax-inline-size: initial;\n\t\tinline-size: 0;\n\n\n\t\t>* {\n\t\t\tmax-inline-size: 100%;\n\t\t}\n\t}\n}\n\n.YongDallTheme-tabs-menu-open .YongDallTheme-tabs-sidebar {\n\tinline-size: var(--theme-sider-size);\n\n\t@media screen and (max-width: 800px) {\n\t\tinline-size: 100vw;\n\t}\n\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AAKA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA"}
|
package/theme-tabs.mjs
DELETED
|
File without changes
|