noctemyth 0.0.36 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/noctemyth-skelton.css +267 -1233
- package/dist/css/noctemyth-skelton.css.map +1 -1
- package/dist/css/noctemyth-skelton.min.css +267 -1233
- package/dist/css/noctemyth-skelton.min.css.map +1 -1
- package/dist/css/noctemyth-utilities.css +14175 -2566
- package/dist/css/noctemyth-utilities.css.map +1 -1
- package/dist/css/noctemyth-utilities.min.css +14175 -2566
- package/dist/css/noctemyth-utilities.min.css.map +1 -1
- package/dist/css/noctemyth.css +3859 -8998
- package/dist/css/noctemyth.css.map +1 -1
- package/dist/css/noctemyth.min.css +1925 -5293
- package/dist/css/noctemyth.min.css.map +1 -1
- package/package.json +10 -9
- package/src/base/normalize.scss +110 -285
- package/src/components/dialogue.scss +0 -114
- package/src/components/header.scss +2 -0
- package/src/components/input.scss +81 -103
- package/src/css-variables/color.scss +1 -12
- package/src/layouts/columns.scss +2 -2
- package/src/layouts/container.scss +2 -2
- package/src/utilities/color.scss +14 -31
- package/src/variables/color.scss +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "noctemyth",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "design system by kaminoctem",
|
|
5
5
|
"main": "src/noctemyth.scss",
|
|
6
6
|
"scripts": {
|
|
@@ -25,8 +25,7 @@
|
|
|
25
25
|
"build-lib-skelton-copy-map": "node -e \"require('fs').copyFileSync('./dist/css/noctemyth-skelton.css.map', './dist/css/noctemyth-skelton.min.css.map')\"",
|
|
26
26
|
"build-lib-skelton-postcss": "postcss --output dist/css/noctemyth-skelton.css dist/css/noctemyth-skelton.css",
|
|
27
27
|
"build-lib-skelton-postcss-min": "postcss --output dist/css/noctemyth-skelton.min.css dist/css/noctemyth-skelton.min.css",
|
|
28
|
-
"prepublishOnly": "npm run build"
|
|
29
|
-
"prepare": "npm run build"
|
|
28
|
+
"prepublishOnly": "npm run build"
|
|
30
29
|
},
|
|
31
30
|
"repository": {
|
|
32
31
|
"type": "git",
|
|
@@ -51,11 +50,13 @@
|
|
|
51
50
|
},
|
|
52
51
|
"homepage": "https://github.com/kaminoctem/noctemyth#readme",
|
|
53
52
|
"devDependencies": {
|
|
54
|
-
"autoprefixer": "^10.4.
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
53
|
+
"autoprefixer": "^10.4.23",
|
|
54
|
+
"baseline-browser-mapping": "^2.9.19",
|
|
55
|
+
"caniuse-lite": "^1.0.30001766",
|
|
56
|
+
"cssnano": "^7.1.2",
|
|
57
|
+
"postcss": "^8.5.6",
|
|
58
|
+
"postcss-cli": "^11.0.1",
|
|
59
|
+
"rimraf": "^6.1.2",
|
|
60
|
+
"sass": "^1.97.3"
|
|
60
61
|
}
|
|
61
62
|
}
|
package/src/base/normalize.scss
CHANGED
|
@@ -8,387 +8,212 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* 1. Correct the line height in all browsers.
|
|
19
|
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
html {
|
|
23
|
-
line-height: 1.15; /* 1 */
|
|
24
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/* Sections
|
|
28
|
-
========================================================================== */
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Remove the margin in all browsers.
|
|
32
|
-
*/
|
|
33
|
-
|
|
34
|
-
body {
|
|
35
|
-
font-family: var(--#{variables.$prefix}font-family-main);
|
|
36
|
-
margin: 0;
|
|
37
|
-
}
|
|
13
|
+
/*
|
|
14
|
+
Document
|
|
15
|
+
========
|
|
16
|
+
*/
|
|
38
17
|
|
|
39
18
|
/**
|
|
40
|
-
|
|
41
|
-
|
|
19
|
+
Use a better box model (opinionated).
|
|
20
|
+
*/
|
|
42
21
|
|
|
43
|
-
|
|
44
|
-
|
|
22
|
+
*,
|
|
23
|
+
::before,
|
|
24
|
+
::after {
|
|
25
|
+
box-sizing: border-box;
|
|
45
26
|
}
|
|
46
27
|
|
|
47
28
|
/**
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
font-size: var(--#{variables.$prefix}font-size-xxxlarge);
|
|
54
|
-
margin: 0.5rem 0;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
h2 {
|
|
58
|
-
font-size: var(--#{variables.$prefix}font-size-xxlarge);
|
|
59
|
-
margin: 0.5rem 0;
|
|
60
|
-
}
|
|
29
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
30
|
+
2. Correct the line height in all browsers.
|
|
31
|
+
3. Prevent adjustments of font size after orientation changes in iOS.
|
|
32
|
+
4. Use a more readable tab size (opinionated).
|
|
33
|
+
*/
|
|
61
34
|
|
|
62
|
-
|
|
63
|
-
font-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
h4 {
|
|
68
|
-
font-size: var(--#{variables.$prefix}font-size-large);
|
|
69
|
-
margin: 0.5rem 0;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
h5 {
|
|
73
|
-
font-size: var(--#{variables.$prefix}font-size-medium);
|
|
74
|
-
margin: 0.5rem 0;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
h6 {
|
|
78
|
-
font-size: var(--#{variables.$prefix}font-size-normal);
|
|
79
|
-
margin: 0.5rem 0;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/* Grouping content
|
|
83
|
-
========================================================================== */
|
|
84
|
-
|
|
85
|
-
/**
|
|
86
|
-
* 1. Add the correct box sizing in Firefox.
|
|
87
|
-
* 2. Show the overflow in Edge and IE.
|
|
88
|
-
*/
|
|
89
|
-
|
|
90
|
-
hr {
|
|
91
|
-
box-sizing: content-box; /* 1 */
|
|
92
|
-
height: 0; /* 1 */
|
|
93
|
-
overflow: visible; /* 2 */
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
98
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
99
|
-
*/
|
|
100
|
-
|
|
101
|
-
pre {
|
|
102
|
-
font-family: var(--#{variables.$prefix}font-family-code);
|
|
103
|
-
font-size: var(--#{variables.$prefix}font-size-normal); /* 2 */
|
|
35
|
+
html {
|
|
36
|
+
font-family: var(--#{variables.$prefix}font-family-main); /* 1 */
|
|
37
|
+
line-height: 1.15; /* 2 */
|
|
38
|
+
-webkit-text-size-adjust: 100%; /* 3 */
|
|
39
|
+
tab-size: 4; /* 4 */
|
|
104
40
|
}
|
|
105
41
|
|
|
106
|
-
/*
|
|
107
|
-
|
|
42
|
+
/*
|
|
43
|
+
Sections
|
|
44
|
+
========
|
|
45
|
+
*/
|
|
108
46
|
|
|
109
47
|
/**
|
|
110
|
-
|
|
111
|
-
|
|
48
|
+
Remove the margin in all browsers.
|
|
49
|
+
*/
|
|
112
50
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
cursor: pointer;
|
|
51
|
+
body {
|
|
52
|
+
margin: 0;
|
|
116
53
|
}
|
|
117
54
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
abbr[title] {
|
|
124
|
-
border-bottom: none; /* 1 */
|
|
125
|
-
text-decoration: underline; /* 2 */
|
|
126
|
-
text-decoration: underline dotted; /* 2 */
|
|
127
|
-
}
|
|
55
|
+
/*
|
|
56
|
+
Text-level semantics
|
|
57
|
+
====================
|
|
58
|
+
*/
|
|
128
59
|
|
|
129
60
|
/**
|
|
130
|
-
|
|
131
|
-
|
|
61
|
+
Add the correct font weight in Chrome and Safari.
|
|
62
|
+
*/
|
|
132
63
|
|
|
133
64
|
b,
|
|
134
65
|
strong {
|
|
135
|
-
|
|
66
|
+
font-weight: bolder;
|
|
136
67
|
}
|
|
137
68
|
|
|
138
69
|
/**
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
70
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
71
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
|
72
|
+
*/
|
|
142
73
|
|
|
143
74
|
code,
|
|
144
75
|
kbd,
|
|
145
|
-
samp
|
|
76
|
+
samp,
|
|
77
|
+
pre {
|
|
146
78
|
font-family: var(--#{variables.$prefix}font-family-code); /* 1 */
|
|
147
|
-
font-size:
|
|
79
|
+
font-size: var(--#{variables.$prefix}font-size-normal); /* 2 */
|
|
148
80
|
}
|
|
149
81
|
|
|
150
82
|
/**
|
|
151
|
-
|
|
152
|
-
|
|
83
|
+
Add the correct font size in all browsers.
|
|
84
|
+
*/
|
|
153
85
|
|
|
154
86
|
small {
|
|
155
|
-
|
|
87
|
+
font-size: 80%;
|
|
156
88
|
}
|
|
157
89
|
|
|
158
90
|
/**
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
*/
|
|
91
|
+
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
|
92
|
+
*/
|
|
162
93
|
|
|
163
94
|
sub,
|
|
164
95
|
sup {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
96
|
+
font-size: 75%;
|
|
97
|
+
line-height: 0;
|
|
98
|
+
position: relative;
|
|
99
|
+
vertical-align: baseline;
|
|
169
100
|
}
|
|
170
101
|
|
|
171
102
|
sub {
|
|
172
|
-
|
|
103
|
+
bottom: -0.25em;
|
|
173
104
|
}
|
|
174
105
|
|
|
175
106
|
sup {
|
|
176
|
-
|
|
107
|
+
top: -0.5em;
|
|
177
108
|
}
|
|
178
109
|
|
|
179
|
-
/*
|
|
180
|
-
|
|
110
|
+
/*
|
|
111
|
+
Tabular data
|
|
112
|
+
============
|
|
113
|
+
*/
|
|
181
114
|
|
|
182
115
|
/**
|
|
183
|
-
|
|
184
|
-
|
|
116
|
+
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
117
|
+
*/
|
|
185
118
|
|
|
186
|
-
|
|
187
|
-
|
|
119
|
+
table {
|
|
120
|
+
border-color: currentcolor;
|
|
188
121
|
}
|
|
189
122
|
|
|
190
|
-
/*
|
|
191
|
-
|
|
123
|
+
/*
|
|
124
|
+
Forms
|
|
125
|
+
=====
|
|
126
|
+
*/
|
|
192
127
|
|
|
193
128
|
/**
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
129
|
+
1. Change the font styles in all browsers.
|
|
130
|
+
2. Remove the margin in Firefox and Safari.
|
|
131
|
+
*/
|
|
197
132
|
|
|
198
133
|
button,
|
|
199
134
|
input,
|
|
200
135
|
optgroup,
|
|
201
136
|
select,
|
|
202
137
|
textarea {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
138
|
+
font-family: inherit; /* 1 */
|
|
139
|
+
font-size: 100%; /* 1 */
|
|
140
|
+
line-height: 1.15; /* 1 */
|
|
141
|
+
margin: 0; /* 2 */
|
|
207
142
|
}
|
|
208
143
|
|
|
209
144
|
/**
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
*/
|
|
145
|
+
Correct the inability to style clickable types in iOS and Safari.
|
|
146
|
+
*/
|
|
213
147
|
|
|
214
148
|
button,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
149
|
+
[type='button'],
|
|
150
|
+
[type='reset'],
|
|
151
|
+
[type='submit'] {
|
|
152
|
+
-webkit-appearance: button;
|
|
218
153
|
}
|
|
219
154
|
|
|
220
155
|
/**
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
*/
|
|
224
|
-
|
|
225
|
-
button,
|
|
226
|
-
select {
|
|
227
|
-
/* 1 */
|
|
228
|
-
text-transform: none;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* Correct the inability to style clickable types in iOS and Safari.
|
|
233
|
-
*/
|
|
234
|
-
|
|
235
|
-
button,
|
|
236
|
-
[type="button"],
|
|
237
|
-
[type="reset"],
|
|
238
|
-
[type="submit"] {
|
|
239
|
-
-webkit-appearance: button;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
/**
|
|
243
|
-
* Remove the inner border and padding in Firefox.
|
|
244
|
-
*/
|
|
245
|
-
|
|
246
|
-
button::-moz-focus-inner,
|
|
247
|
-
[type="button"]::-moz-focus-inner,
|
|
248
|
-
[type="reset"]::-moz-focus-inner,
|
|
249
|
-
[type="submit"]::-moz-focus-inner {
|
|
250
|
-
border-style: none;
|
|
251
|
-
padding: 0;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
* Restore the focus styles unset by the previous rule.
|
|
256
|
-
*/
|
|
257
|
-
|
|
258
|
-
button:-moz-focusring,
|
|
259
|
-
[type="button"]:-moz-focusring,
|
|
260
|
-
[type="reset"]:-moz-focusring,
|
|
261
|
-
[type="submit"]:-moz-focusring {
|
|
262
|
-
outline: 1px dotted ButtonText;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/**
|
|
266
|
-
* Correct the padding in Firefox.
|
|
267
|
-
*/
|
|
268
|
-
|
|
269
|
-
fieldset {
|
|
270
|
-
padding: 0.35em 0.75em 0.625em;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
/**
|
|
274
|
-
* 1. Correct the text wrapping in Edge and IE.
|
|
275
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
276
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
277
|
-
* `fieldset` elements in all browsers.
|
|
278
|
-
*/
|
|
156
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
157
|
+
*/
|
|
279
158
|
|
|
280
159
|
legend {
|
|
281
|
-
|
|
282
|
-
color: inherit; /* 2 */
|
|
283
|
-
display: table; /* 1 */
|
|
284
|
-
max-width: 100%; /* 1 */
|
|
285
|
-
padding: 0; /* 3 */
|
|
286
|
-
white-space: normal; /* 1 */
|
|
160
|
+
padding: 0;
|
|
287
161
|
}
|
|
288
162
|
|
|
289
163
|
/**
|
|
290
|
-
|
|
291
|
-
|
|
164
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
165
|
+
*/
|
|
292
166
|
|
|
293
167
|
progress {
|
|
294
|
-
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
/**
|
|
298
|
-
* Remove the default vertical scrollbar in IE 10+.
|
|
299
|
-
*/
|
|
300
|
-
|
|
301
|
-
textarea {
|
|
302
|
-
overflow: auto;
|
|
168
|
+
vertical-align: baseline;
|
|
303
169
|
}
|
|
304
170
|
|
|
305
171
|
/**
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
*/
|
|
309
|
-
|
|
310
|
-
[type="checkbox"],
|
|
311
|
-
[type="radio"] {
|
|
312
|
-
box-sizing: border-box; /* 1 */
|
|
313
|
-
padding: 0; /* 2 */
|
|
314
|
-
}
|
|
172
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
173
|
+
*/
|
|
315
174
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
[type="number"]::-webkit-inner-spin-button,
|
|
321
|
-
[type="number"]::-webkit-outer-spin-button {
|
|
322
|
-
height: auto;
|
|
175
|
+
::-webkit-inner-spin-button,
|
|
176
|
+
::-webkit-outer-spin-button {
|
|
177
|
+
height: auto;
|
|
323
178
|
}
|
|
324
179
|
|
|
325
180
|
/**
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
181
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
182
|
+
2. Correct the outline style in Safari.
|
|
183
|
+
*/
|
|
329
184
|
|
|
330
|
-
[type=
|
|
331
|
-
|
|
332
|
-
|
|
185
|
+
[type='search'] {
|
|
186
|
+
-webkit-appearance: textfield; /* 1 */
|
|
187
|
+
outline-offset: -2px; /* 2 */
|
|
333
188
|
}
|
|
334
189
|
|
|
335
190
|
/**
|
|
336
|
-
|
|
337
|
-
|
|
191
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
192
|
+
*/
|
|
338
193
|
|
|
339
|
-
|
|
340
|
-
|
|
194
|
+
::-webkit-search-decoration {
|
|
195
|
+
-webkit-appearance: none;
|
|
341
196
|
}
|
|
342
197
|
|
|
343
198
|
/**
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
199
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
200
|
+
2. Change font properties to 'inherit' in Safari.
|
|
201
|
+
*/
|
|
347
202
|
|
|
348
203
|
::-webkit-file-upload-button {
|
|
349
|
-
|
|
350
|
-
|
|
204
|
+
-webkit-appearance: button; /* 1 */
|
|
205
|
+
font: inherit; /* 2 */
|
|
351
206
|
}
|
|
352
207
|
|
|
353
|
-
/* Interactive
|
|
354
|
-
========================================================================== */
|
|
355
|
-
|
|
356
208
|
/*
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
details {
|
|
361
|
-
display: block;
|
|
362
|
-
}
|
|
209
|
+
Interactive
|
|
210
|
+
===========
|
|
211
|
+
*/
|
|
363
212
|
|
|
364
213
|
/*
|
|
365
|
-
|
|
366
|
-
|
|
214
|
+
Add the correct display in Chrome and Safari.
|
|
215
|
+
*/
|
|
367
216
|
|
|
368
217
|
summary {
|
|
369
|
-
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
/* Misc
|
|
373
|
-
========================================================================== */
|
|
374
|
-
|
|
375
|
-
/**
|
|
376
|
-
* Add the correct display in IE 10+.
|
|
377
|
-
*/
|
|
378
|
-
|
|
379
|
-
template {
|
|
380
|
-
display: none;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
/**
|
|
384
|
-
* Add the correct display in IE 10.
|
|
385
|
-
*/
|
|
386
|
-
|
|
387
|
-
[hidden] {
|
|
388
|
-
display: none;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
figure {
|
|
392
|
-
display: block;
|
|
393
|
-
margin: 0;
|
|
218
|
+
display: list-item;
|
|
394
219
|
}
|
|
@@ -48,14 +48,6 @@
|
|
|
48
48
|
var(--#{variables.$prefix}dialogue-avatar-top-offset) +
|
|
49
49
|
(var(--#{variables.$prefix}dialogue-avatar-size) / 2)
|
|
50
50
|
);
|
|
51
|
-
--#{variables.$prefix}dialogue-name-text-shadow-inner-color: var(
|
|
52
|
-
--#{variables.$prefix}color-default-dialogue-name-back
|
|
53
|
-
);
|
|
54
|
-
--#{variables.$prefix}dialogue-name-text-shadow-outer-color: var(
|
|
55
|
-
--#{variables.$prefix}color-default-dialogue-name-shadow
|
|
56
|
-
);
|
|
57
|
-
--#{variables.$prefix}dialogue-name-text-shadow-inner-width: 0.1rem;
|
|
58
|
-
--#{variables.$prefix}dialogue-name-text-shadow-outer-width: 0.2rem;
|
|
59
51
|
|
|
60
52
|
display: flex;
|
|
61
53
|
max-width: 100%;
|
|
@@ -158,104 +150,6 @@
|
|
|
158
150
|
var(--#{variables.$prefix}dialogue-name-padding-x);
|
|
159
151
|
font-weight: var(--#{variables.$prefix}font-weight-bold);
|
|
160
152
|
z-index: 1;
|
|
161
|
-
&.has-text-shadow {
|
|
162
|
-
text-shadow: var(
|
|
163
|
-
--#{variables.$prefix}dialogue-name-text-shadow-inner-width
|
|
164
|
-
)
|
|
165
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
166
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
167
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
168
|
-
calc(
|
|
169
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
170
|
-
-1
|
|
171
|
-
)
|
|
172
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
173
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
174
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
175
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
176
|
-
calc(
|
|
177
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
178
|
-
-1
|
|
179
|
-
)
|
|
180
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
181
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
182
|
-
calc(
|
|
183
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
184
|
-
-1
|
|
185
|
-
)
|
|
186
|
-
calc(
|
|
187
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
188
|
-
-1
|
|
189
|
-
)
|
|
190
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
191
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
192
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) 0
|
|
193
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
194
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
195
|
-
0 var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
196
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
197
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
198
|
-
calc(
|
|
199
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
200
|
-
-1
|
|
201
|
-
)
|
|
202
|
-
0 var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
203
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
204
|
-
0
|
|
205
|
-
calc(
|
|
206
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width) *
|
|
207
|
-
-1
|
|
208
|
-
)
|
|
209
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-width)
|
|
210
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-inner-color),
|
|
211
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
212
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
213
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
214
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
215
|
-
calc(
|
|
216
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
217
|
-
-1
|
|
218
|
-
)
|
|
219
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
220
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
221
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
222
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
223
|
-
calc(
|
|
224
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
225
|
-
-1
|
|
226
|
-
)
|
|
227
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
228
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
229
|
-
calc(
|
|
230
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
231
|
-
-1
|
|
232
|
-
)
|
|
233
|
-
calc(
|
|
234
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
235
|
-
-1
|
|
236
|
-
)
|
|
237
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
238
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
239
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) 0
|
|
240
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
241
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
242
|
-
0 var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
243
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
244
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
245
|
-
calc(
|
|
246
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
247
|
-
-1
|
|
248
|
-
)
|
|
249
|
-
0 var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
250
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color),
|
|
251
|
-
0
|
|
252
|
-
calc(
|
|
253
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width) *
|
|
254
|
-
-1
|
|
255
|
-
)
|
|
256
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-width)
|
|
257
|
-
var(--#{variables.$prefix}dialogue-name-text-shadow-outer-color);
|
|
258
|
-
}
|
|
259
153
|
}
|
|
260
154
|
> .dialogue-message {
|
|
261
155
|
@include mixins.element();
|
|
@@ -409,14 +303,6 @@
|
|
|
409
303
|
color: var(
|
|
410
304
|
--#{variables.$prefix}color-#{$colorName}-dialogue-name-fore
|
|
411
305
|
);
|
|
412
|
-
&.has-text-shadow {
|
|
413
|
-
--#{variables.$prefix}dialogue-name-text-shadow-inner-color: var(
|
|
414
|
-
--#{variables.$prefix}-color-#{$colorName}-dialogue-name-back
|
|
415
|
-
);
|
|
416
|
-
--#{variables.$prefix}dialogue-name-text-shadow-outer-color: var(
|
|
417
|
-
--#{variables.$prefix}-color-#{$colorName}-dialogue-name-shadow
|
|
418
|
-
);
|
|
419
|
-
}
|
|
420
306
|
}
|
|
421
307
|
> .dialogue-message {
|
|
422
308
|
background-color: var(
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
@include mixins.element();
|
|
7
7
|
display: block;
|
|
8
8
|
width: 100%;
|
|
9
|
+
box-shadow: 0 0 0.5rem var(--#{variables.$prefix}color-default-header-shadow);
|
|
9
10
|
backdrop-filter: var(--#{variables.$prefix}header-backdrop-filter);
|
|
10
11
|
|
|
11
12
|
&.is-sticky {
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
$colorName: map.get($color, "name");
|
|
30
31
|
&.is-#{$colorName} {
|
|
31
32
|
background-color: oklch(var(--#{variables.$prefix}color-#{$colorName}-header-back-oklch) / 0.5);
|
|
33
|
+
box-shadow: 0 0 0.5rem var(--#{variables.$prefix}color-#{$colorName}-header-shadow);
|
|
32
34
|
color: var(--#{variables.$prefix}color-#{$colorName}-header-fore);
|
|
33
35
|
}
|
|
34
36
|
}
|