@quidgest/ui 0.5.10 → 0.5.11
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/ui.css +107 -191
- package/dist/ui.min.css +1 -1
- package/dist/ui.scss +80 -90
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -1,102 +1,82 @@
|
|
|
1
|
-
/*! normalize
|
|
2
|
-
/*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
7
|
-
*/
|
|
8
|
-
html {
|
|
9
|
-
line-height: 1.15; /* 1 */
|
|
10
|
-
-webkit-text-size-adjust: 100%;
|
|
11
|
-
-moz-text-size-adjust: 100%;
|
|
12
|
-
text-size-adjust: 100%; /* 2 */
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/* Sections
|
|
16
|
-
========================================================================== */
|
|
1
|
+
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
2
|
+
/*
|
|
3
|
+
Document
|
|
4
|
+
========
|
|
5
|
+
*/
|
|
17
6
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
7
|
+
Use a better box model (opinionated).
|
|
8
|
+
*/
|
|
9
|
+
*,
|
|
10
|
+
::before,
|
|
11
|
+
::after {
|
|
12
|
+
box-sizing: border-box;
|
|
22
13
|
}
|
|
23
14
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
15
|
+
html {
|
|
16
|
+
/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
|
|
17
|
+
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
18
|
+
line-height: 1.15; /* 1. Correct the line height in all browsers. */
|
|
19
|
+
-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
|
|
20
|
+
-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
|
|
21
|
+
-o-tab-size: 4;
|
|
22
|
+
tab-size: 4; /* 3 */
|
|
29
23
|
}
|
|
30
24
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
margin: 0.67em 0;
|
|
25
|
+
/*
|
|
26
|
+
Sections
|
|
27
|
+
========
|
|
28
|
+
*/
|
|
29
|
+
body {
|
|
30
|
+
margin: 0; /* Remove the margin in all browsers. */
|
|
38
31
|
}
|
|
39
32
|
|
|
40
|
-
/*
|
|
41
|
-
|
|
33
|
+
/*
|
|
34
|
+
Grouping content
|
|
35
|
+
================
|
|
36
|
+
*/
|
|
42
37
|
/**
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
38
|
+
1. Add the correct height in Firefox.
|
|
39
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
40
|
+
*/
|
|
46
41
|
hr {
|
|
47
|
-
box-sizing: content-box; /* 1 */
|
|
48
42
|
height: 0; /* 1 */
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
54
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
55
|
-
*/
|
|
56
|
-
pre {
|
|
57
|
-
font-family: monospace, monospace; /* 1 */
|
|
58
|
-
font-size: 1em; /* 2 */
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* Text-level semantics
|
|
62
|
-
========================================================================== */
|
|
63
|
-
/**
|
|
64
|
-
* Remove the gray background on active links in IE 10.
|
|
65
|
-
*/
|
|
66
|
-
a {
|
|
67
|
-
background-color: transparent;
|
|
43
|
+
color: inherit; /* 2 */
|
|
68
44
|
}
|
|
69
45
|
|
|
46
|
+
/*
|
|
47
|
+
Text-level semantics
|
|
48
|
+
====================
|
|
49
|
+
*/
|
|
70
50
|
/**
|
|
71
|
-
|
|
72
|
-
|
|
51
|
+
Add the correct font weight in Edge and Safari.
|
|
52
|
+
*/
|
|
73
53
|
b,
|
|
74
54
|
strong {
|
|
75
55
|
font-weight: bolder;
|
|
76
56
|
}
|
|
77
57
|
|
|
78
58
|
/**
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
59
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
60
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
|
61
|
+
*/
|
|
82
62
|
code,
|
|
83
63
|
kbd,
|
|
84
|
-
samp
|
|
85
|
-
|
|
64
|
+
samp,
|
|
65
|
+
pre {
|
|
66
|
+
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
|
|
86
67
|
font-size: 1em; /* 2 */
|
|
87
68
|
}
|
|
88
69
|
|
|
89
70
|
/**
|
|
90
|
-
|
|
91
|
-
|
|
71
|
+
Add the correct font size in all browsers.
|
|
72
|
+
*/
|
|
92
73
|
small {
|
|
93
74
|
font-size: 80%;
|
|
94
75
|
}
|
|
95
76
|
|
|
96
77
|
/**
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
*/
|
|
78
|
+
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
|
79
|
+
*/
|
|
100
80
|
sub,
|
|
101
81
|
sup {
|
|
102
82
|
font-size: 75%;
|
|
@@ -113,21 +93,27 @@ sup {
|
|
|
113
93
|
top: -0.5em;
|
|
114
94
|
}
|
|
115
95
|
|
|
116
|
-
/*
|
|
117
|
-
|
|
96
|
+
/*
|
|
97
|
+
Tabular data
|
|
98
|
+
============
|
|
99
|
+
*/
|
|
118
100
|
/**
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
101
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
102
|
+
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
103
|
+
*/
|
|
104
|
+
table {
|
|
105
|
+
text-indent: 0; /* 1 */
|
|
106
|
+
border-color: inherit; /* 2 */
|
|
123
107
|
}
|
|
124
108
|
|
|
125
|
-
/*
|
|
126
|
-
|
|
109
|
+
/*
|
|
110
|
+
Forms
|
|
111
|
+
=====
|
|
112
|
+
*/
|
|
127
113
|
/**
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
114
|
+
1. Change the font styles in all browsers.
|
|
115
|
+
2. Remove the margin in Firefox and Safari.
|
|
116
|
+
*/
|
|
131
117
|
button,
|
|
132
118
|
input,
|
|
133
119
|
optgroup,
|
|
@@ -140,178 +126,108 @@ textarea {
|
|
|
140
126
|
}
|
|
141
127
|
|
|
142
128
|
/**
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
*/
|
|
146
|
-
button,
|
|
147
|
-
input {
|
|
148
|
-
/* 1 */
|
|
149
|
-
overflow: visible;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
154
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
|
155
|
-
*/
|
|
129
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
130
|
+
*/
|
|
156
131
|
button,
|
|
157
132
|
select {
|
|
158
|
-
/* 1 */
|
|
159
133
|
text-transform: none;
|
|
160
134
|
}
|
|
161
135
|
|
|
162
136
|
/**
|
|
163
|
-
|
|
164
|
-
|
|
137
|
+
Correct the inability to style clickable types in iOS and Safari.
|
|
138
|
+
*/
|
|
165
139
|
button,
|
|
166
140
|
[type=button],
|
|
167
141
|
[type=reset],
|
|
168
142
|
[type=submit] {
|
|
169
143
|
-webkit-appearance: button;
|
|
170
|
-
-moz-appearance: button;
|
|
171
|
-
appearance: button;
|
|
172
144
|
}
|
|
173
145
|
|
|
174
146
|
/**
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
[type=button]::-moz-focus-inner,
|
|
179
|
-
[type=reset]::-moz-focus-inner,
|
|
180
|
-
[type=submit]::-moz-focus-inner {
|
|
147
|
+
Remove the inner border and padding in Firefox.
|
|
148
|
+
*/
|
|
149
|
+
::-moz-focus-inner {
|
|
181
150
|
border-style: none;
|
|
182
151
|
padding: 0;
|
|
183
152
|
}
|
|
184
153
|
|
|
185
154
|
/**
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
[type=button]:-moz-focusring,
|
|
190
|
-
[type=reset]:-moz-focusring,
|
|
191
|
-
[type=submit]:-moz-focusring {
|
|
155
|
+
Restore the focus styles unset by the previous rule.
|
|
156
|
+
*/
|
|
157
|
+
:-moz-focusring {
|
|
192
158
|
outline: 1px dotted ButtonText;
|
|
193
159
|
}
|
|
194
160
|
|
|
195
161
|
/**
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
162
|
+
Remove the additional ':invalid' styles in Firefox.
|
|
163
|
+
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
|
164
|
+
*/
|
|
165
|
+
:-moz-ui-invalid {
|
|
166
|
+
box-shadow: none;
|
|
200
167
|
}
|
|
201
168
|
|
|
202
169
|
/**
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
206
|
-
* `fieldset` elements in all browsers.
|
|
207
|
-
*/
|
|
170
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
171
|
+
*/
|
|
208
172
|
legend {
|
|
209
|
-
|
|
210
|
-
color: inherit; /* 2 */
|
|
211
|
-
display: table; /* 1 */
|
|
212
|
-
max-width: 100%; /* 1 */
|
|
213
|
-
padding: 0; /* 3 */
|
|
214
|
-
white-space: normal; /* 1 */
|
|
173
|
+
padding: 0;
|
|
215
174
|
}
|
|
216
175
|
|
|
217
176
|
/**
|
|
218
|
-
|
|
219
|
-
|
|
177
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
178
|
+
*/
|
|
220
179
|
progress {
|
|
221
180
|
vertical-align: baseline;
|
|
222
181
|
}
|
|
223
182
|
|
|
224
183
|
/**
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* 1. Add the correct box sizing in IE 10.
|
|
233
|
-
* 2. Remove the padding in IE 10.
|
|
234
|
-
*/
|
|
235
|
-
[type=checkbox],
|
|
236
|
-
[type=radio] {
|
|
237
|
-
box-sizing: border-box; /* 1 */
|
|
238
|
-
padding: 0; /* 2 */
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
243
|
-
*/
|
|
244
|
-
[type=number]::-webkit-inner-spin-button,
|
|
245
|
-
[type=number]::-webkit-outer-spin-button {
|
|
184
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
185
|
+
*/
|
|
186
|
+
::-webkit-inner-spin-button,
|
|
187
|
+
::-webkit-outer-spin-button {
|
|
246
188
|
height: auto;
|
|
247
189
|
}
|
|
248
190
|
|
|
249
191
|
/**
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
192
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
193
|
+
2. Correct the outline style in Safari.
|
|
194
|
+
*/
|
|
253
195
|
[type=search] {
|
|
254
|
-
-webkit-appearance: textfield;
|
|
255
|
-
-moz-appearance: textfield;
|
|
256
|
-
appearance: textfield; /* 1 */
|
|
196
|
+
-webkit-appearance: textfield; /* 1 */
|
|
257
197
|
outline-offset: -2px; /* 2 */
|
|
258
198
|
}
|
|
259
199
|
|
|
260
200
|
/**
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
201
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
202
|
+
*/
|
|
203
|
+
::-webkit-search-decoration {
|
|
264
204
|
-webkit-appearance: none;
|
|
265
|
-
appearance: none;
|
|
266
205
|
}
|
|
267
206
|
|
|
268
207
|
/**
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
208
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
209
|
+
2. Change font properties to 'inherit' in Safari.
|
|
210
|
+
*/
|
|
272
211
|
::-webkit-file-upload-button {
|
|
273
|
-
-webkit-appearance: button;
|
|
274
|
-
appearance: button; /* 1 */
|
|
212
|
+
-webkit-appearance: button; /* 1 */
|
|
275
213
|
font: inherit; /* 2 */
|
|
276
214
|
}
|
|
277
215
|
|
|
278
|
-
/* Interactive
|
|
279
|
-
========================================================================== */
|
|
280
216
|
/*
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
display: block;
|
|
285
|
-
}
|
|
286
|
-
|
|
217
|
+
Interactive
|
|
218
|
+
===========
|
|
219
|
+
*/
|
|
287
220
|
/*
|
|
288
|
-
|
|
289
|
-
|
|
221
|
+
Add the correct display in Chrome and Safari.
|
|
222
|
+
*/
|
|
290
223
|
summary {
|
|
291
224
|
display: list-item;
|
|
292
225
|
}
|
|
293
226
|
|
|
294
|
-
/* Misc
|
|
295
|
-
========================================================================== */
|
|
296
|
-
/**
|
|
297
|
-
* Add the correct display in IE 10+.
|
|
298
|
-
*/
|
|
299
|
-
template {
|
|
300
|
-
display: none;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
/**
|
|
304
|
-
* Add the correct display in IE 10.
|
|
305
|
-
*/
|
|
306
|
-
[hidden] {
|
|
307
|
-
display: none;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
227
|
/* global settings */
|
|
311
228
|
*,
|
|
312
229
|
::after,
|
|
313
230
|
::before {
|
|
314
|
-
box-sizing: border-box;
|
|
315
231
|
border: 0 solid #dce3e8;
|
|
316
232
|
outline-offset: 1px;
|
|
317
233
|
}
|
|
@@ -535,7 +451,7 @@ body {
|
|
|
535
451
|
align-items: center;
|
|
536
452
|
height: 31.89px;
|
|
537
453
|
width: 100%;
|
|
538
|
-
border-radius: 0.
|
|
454
|
+
border-radius: 0.25rem;
|
|
539
455
|
border-width: 1px;
|
|
540
456
|
background-color: transparent;
|
|
541
457
|
padding: 0.26rem 0.25rem;
|
package/dist/ui.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;-moz-appearance:button;appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none;appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}*,:after,:before{box-sizing:border-box;border:0 solid #dce3e8;outline-offset:1px}body{font-size:0.9rem}*{scrollbar-color:#ccc #f1f1f1;scrollbar-width:thin}::-webkit-scrollbar{width:7px}::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:0.25rem}::-webkit-scrollbar-track{background-color:#f1f1f1;border-radius:0.25rem}.fade-enter-from,.fade-leave-to{opacity:0}.fade-enter-to,.fade-leave-from{opacity:1}.fade-enter-active,.fade-leave-active{transition:opacity 0.2s}.q-btn{--box-shadow-tint:0 0 0;position:relative;display:flex;flex-direction:row;align-items:center;padding:0.4rem;border-width:1px;background-color:transparent;color:var(--q-theme-on-background);user-select:none;-webkit-user-select:none;-moz-user-select:none;border-radius:0.25rem;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:0.15s;line-height:15px}.q-btn:hover:not(:disabled){cursor:pointer}.q-btn:focus{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25);z-index:3}.q-btn:focus:not(:focus-visible){outline:0;box-shadow:none}.q-btn__content{position:relative;display:flex;flex-direction:row;align-items:center;justify-content:center;font-size:0.9rem;white-space:nowrap;gap:0.25rem;pointer-events:none;line-height:15px;min-width:15px}.q-btn .e-icon__svg{padding:0;margin:0;fill:currentColor;width:15px;height:15px}.q-btn .q-spinner-loader{color:currentColor}.q-btn--active{z-index:2;background-color:var(--q-theme-primary-light)}.q-btn:disabled{opacity:0.6}.q-btn--loading{cursor:progress}.q-btn--loading span{visibility:hidden}.q-btn--primary{--box-shadow-tint:var(--q-theme-primary-rgb);background-color:var(--q-theme-primary);border-color:var(--q-theme-primary);color:var(--q-theme-on-primary)}.q-btn--primary:hover:not(:disabled){background-color:var(--q-theme-primary-dark);border-color:var(--q-theme-primary-dark)}.q-btn--secondary{--box-shadow-tint:var(--q-theme-primary-rgb);border-color:currentColor;color:var(--q-theme-primary)}.q-btn--secondary:hover:not(:disabled){background-color:var(--q-theme-primary-dark);border-color:var(--q-theme-primary-dark);color:var(--q-theme-on-primary)}.q-btn--tertiary{--box-shadow-tint:var(--q-theme-primary-rgb);background-color:transparent;border-color:transparent;color:var(--q-theme-primary)}.q-btn--tertiary:focus:not(:disabled),.q-btn--tertiary:hover:not(:disabled){color:var(--q-theme-primary-dark)}.q-btn--danger{--outline-color:var(--q-theme-danger-light);--box-shadow-tint:var(--q-theme-danger-rgb);background-color:var(--q-theme-danger);border-color:var(--q-theme-danger);color:var(--q-theme-on-danger)}.q-btn--danger:hover:not(:disabled){background-color:var(--q-theme-danger-dark);border-color:var(--q-theme-danger-dark)}.q-btn--plain:hover:not(:disabled){background-color:rgb(var(--q-theme-on-background-rgb)/0.1)}.q-btn--small{padding:0.25rem;line-height:14px}.q-btn--small span{font-size:0.75rem;line-height:14px}.q-btn--small .e-icon__svg{width:14px;height:14px}.q-btn--borderless{border-color:transparent!important}.q-btn--elevated{box-shadow:0 2px 4px -1px rgb(var(--box-shadow-tint)/0.2),0 4px 5px 0 rgb(var(--box-shadow-tint)/0.14),0 1px 10px 0 rgb(var(--box-shadow-tint)/0.12)}.q-btn--block{display:block;width:100%;padding:0.5rem}.q-btn--block span{gap:0.5rem}.q-btn--block+.q-btn--block{margin-top:0.5rem}.q-btn__spinner{position:absolute;left:50%;transform:translateX(-50%)}.q-btn-group{position:relative;display:inline-flex;border-radius:0.25rem}.q-btn-group--elevated{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.q-btn-group>.q-btn{position:relative;flex:0 1 auto}.q-btn-group>.q-btn:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.q-btn-group>.q-btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.q-btn-group>.q-btn:hover{z-index:3}.q-icon{display:inline-block}.q-icon__svg{fill:currentColor;width:1em;height:1em}.q-input{display:flex;align-items:center;height:31.89px;width:100%;border-radius:0.375rem;border-width:1px;background-color:transparent;padding:0.26rem 0.25rem;font-size:0.9rem;line-height:1.5rem;transition:color var(--transition-duration) var(--transition-timing-function)}.q-input:focus-within{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25)}.q-input__append,.q-input__prepend{display:flex;align-items:center}.q-input__append{margin-left:auto}.q-input--readonly{background-color:#eaebec}.q-input--disabled{cursor:not-allowed;opacity:0.5}.q-input--mini{width:4.35rem}.q-input--small{width:6.525rem}.q-input--medium{width:10.875rem}.q-input--large{width:15.225rem}.q-input--x-large{width:19.575rem}.q-input--xx-large{width:36.975rem}.q-input--block{width:100%}.q-line-loader{width:100%;height:2px;display:inline-block;position:relative;background:transparent;overflow:hidden}.q-line-loader:after{content:"";min-width:33%;height:2px;background:linear-gradient(to right,#edebe9 0%,var(--q-theme-primary) 50%,#edebe9 100%);position:absolute;top:0;left:0;box-sizing:border-box;animation:q-move 2s linear infinite}@keyframes q-move{0%{left:0;transform:translateX(-100%)}to{left:100%;transform:translateX(0%)}}.q-list{display:flex;flex-direction:column;align-items:center;position:relative;overflow-x:hidden;overflow-y:auto;margin:0;padding:0;-webkit-overflow-scrolling:touch;width:100%;border-radius:0.25rem}.q-list:focus-visible{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25)}.q-list-item-group{display:flex;flex-direction:column;align-items:center;gap:1px;list-style:none;padding:0;margin:0;width:inherit}.q-list-item-group__title{color:rgb(var(--q-theme-on-background-rgb)/0.62);padding:5px 6px;line-height:15px;width:inherit}.q-list-item-group+.q-list-item-group{padding-top:0.25rem;margin-top:0.25rem;border-top-width:1px}.q-list-item{display:flex;gap:0.25rem;align-items:center;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;width:inherit;cursor:pointer;border-radius:0.25rem;outline:none}.q-list-item--disabled{cursor:not-allowed;pointer-events:none;opacity:0.5}.q-list-item--highlighted,.q-list-item:focus-visible,.q-list-item:hover{background-color:var(--q-theme-primary-light)}.q-list-item--selected{background-color:rgb(var(--q-theme-primary-rgb)/0.24)}.q-list-item--selected--highlighted,.q-list-item--selected:focus-visible,.q-list-item--selected:hover{background-color:rgb(var(--q-theme-primary-rgb)/0.39)}.q-list-item em{font-style:normal;text-decoration:underline}.q-list-item__check{margin-left:auto}.q-list-item+.q-list-item{margin-top:1px}.q-overlay{--q-overlay-bg:var(--q-theme-background);--q-overlay-color:var(--q-theme-on-background);--q-overlay-border-color:rgb(var(--q-theme-on-background-rgb)/0.1);position:absolute;z-index:1070}.q-overlay__content{display:block;position:relative;width:100%;background-color:var(--q-overlay-bg);color:var(--q-overlay-color);background-clip:padding-box;border:1px solid var(--q-overlay-border-color);border-radius:0.25rem;box-shadow:0 0 transparent,0 0 transparent,0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.q-overlay__arrow{position:absolute;display:block;width:1rem;height:0.5rem}.q-overlay__arrow:after,.q-overlay__arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.q-overlay--top .q-overlay__arrow{left:calc(50% - 0.5rem);bottom:calc(-0.5rem - 1px)}.q-overlay--top .q-overlay__arrow:after,.q-overlay--top .q-overlay__arrow:before{border-width:0.5rem 0.5rem 0}.q-overlay--top .q-overlay__arrow:before{bottom:0;border-top-color:var(--q-overlay-border-color)}.q-overlay--top .q-overlay__arrow:after{bottom:1px;border-top-color:var(--q-overlay-bg)}.q-overlay--bottom .q-overlay__arrow{top:calc(-0.5rem - 1px);left:calc(50% - 0.5rem)}.q-overlay--bottom .q-overlay__arrow:after,.q-overlay--bottom .q-overlay__arrow:before{border-width:0 0.5rem 0.5rem}.q-overlay--bottom .q-overlay__arrow:before{top:0;border-bottom-color:var(--q-overlay-border-color)}.q-overlay--bottom .q-overlay__arrow:after{top:1px;border-bottom-color:var(--q-overlay-bg)}.q-overlay--left .q-overlay__arrow{top:calc(50% - 0.5rem);right:-0.5rem;width:0.5rem;height:1rem}.q-overlay--left .q-overlay__arrow:after,.q-overlay--left .q-overlay__arrow:before{border-width:0.5rem 0 0.5rem 0.5rem}.q-overlay--left .q-overlay__arrow:before{right:0;border-left-color:var(--q-overlay-border-color)}.q-overlay--left .q-overlay__arrow:after{right:1px;border-left-color:var(--q-overlay-bg)}.q-overlay--right .q-overlay__arrow{top:calc(50% - 0.5rem);left:-0.5rem;width:0.5rem;height:1rem}.q-overlay--right .q-overlay__arrow:after,.q-overlay--right .q-overlay__arrow:before{border-width:0.5rem 0.5rem 0.5rem 0}.q-overlay--right .q-overlay__arrow:before{left:0;border-right-color:var(--q-overlay-border-color)}.q-overlay--right .q-overlay__arrow:after{left:1px;border-right-color:var(--q-overlay-bg)}.q-overlay--inverted{--q-overlay-bg:var(--q-theme-on-background);--q-overlay-color:var(--q-theme-background);--q-overlay-border-color:transparent}.q-popover .q-overlay__content{z-index:1070;position:relative;max-width:276px;line-height:1.5;word-break:normal;word-spacing:normal;word-wrap:break-word;white-space:normal;line-break:auto;font-size:0.7875rem}.q-popover__header{padding:0.5rem 1rem;margin:0;font-size:0.9rem;background-color:rgb(var(--q-theme-on-background-rgb)/0.04);border-bottom:1px solid var(--q-overlay-border-color);border-top-left-radius:inherit;border-top-right-radius:inherit}.q-popover__body{padding:1rem}.q-popover.q-overlay--bottom .q-overlay__arrow:after{border-bottom-color:rgb(var(--q-theme-on-background-rgb)/0.04)}.q-select:not(.q-select--readonly){background-color:transparent}.q-select:not(.q-select--readonly):not(.q-select--disabled){cursor:pointer}.q-select__placeholder{font-style:italic;color:rgb(var(--q-theme-on-background-rgb)/0.5)}.q-select--expanded .q-select__chevron{transform:rotate(-180deg)}.q-select .q-input__prepend{padding-left:6px;padding-right:0.25rem}.q-select__chevron,.q-select__clear,.q-select__search-icon{opacity:0.5}.q-select__chevron:hover,.q-select__clear:hover{opacity:1}.q-select__chevron{transition:all 0.2s}.q-select__body{display:flex;flex-direction:column;align-items:center;gap:0.25rem;width:100%;padding:0.25rem 0}.q-select__body .q-list-item,.q-select__search{width:calc(100% - 0.5rem)}.q-select__search:focus-within{outline:none}.q-select__items{max-height:240px}.q-select__empty,.q-select__loader{margin:1rem 0}.q-spinner-loader{display:flex;position:relative;width:1em;height:1em;font-size:48px;line-height:1;align-items:center;justify-content:center;color:var(--q-theme-primary)}.q-spinner-loader svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0;animation:q-spin 2s linear infinite;transform-origin:center center}.q-spinner-loader .path{stroke-dasharray:1,250;stroke-dashoffset:0;animation:q-md-dash 1.5s ease-in-out infinite}@keyframes q-spin{0%{transform:rotate3d(0,0,1,0)}25%{transform:rotate3d(0,0,1,90deg)}50%{transform:rotate3d(0,0,1,180deg)}75%{transform:rotate3d(0,0,1,270deg)}to{transform:rotate3d(0,0,1,359deg)}}@keyframes q-md-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.q-tooltip .q-overlay__content{padding:0.5rem;text-align:center;font-style:normal;font-size:0.7875rem;font-weight:400;text-decoration:none;text-shadow:none;text-transform:none;line-height:1.5;line-break:auto;word-wrap:break-word;word-break:normal;word-spacing:normal;white-space:normal;letter-spacing:normal;max-width:200px}
|
|
1
|
+
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,:after,:before{box-sizing:border-box}html{font-family:system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;line-height:1.15;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0}hr{height:0;color:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}*,:after,:before{border:0 solid #dce3e8;outline-offset:1px}body{font-size:0.9rem}*{scrollbar-color:#ccc #f1f1f1;scrollbar-width:thin}::-webkit-scrollbar{width:7px}::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:0.25rem}::-webkit-scrollbar-track{background-color:#f1f1f1;border-radius:0.25rem}.fade-enter-from,.fade-leave-to{opacity:0}.fade-enter-to,.fade-leave-from{opacity:1}.fade-enter-active,.fade-leave-active{transition:opacity 0.2s}.q-btn{--box-shadow-tint:0 0 0;position:relative;display:flex;flex-direction:row;align-items:center;padding:0.4rem;border-width:1px;background-color:transparent;color:var(--q-theme-on-background);user-select:none;-webkit-user-select:none;-moz-user-select:none;border-radius:0.25rem;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:0.15s;line-height:15px}.q-btn:hover:not(:disabled){cursor:pointer}.q-btn:focus{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25);z-index:3}.q-btn:focus:not(:focus-visible){outline:0;box-shadow:none}.q-btn__content{position:relative;display:flex;flex-direction:row;align-items:center;justify-content:center;font-size:0.9rem;white-space:nowrap;gap:0.25rem;pointer-events:none;line-height:15px;min-width:15px}.q-btn .e-icon__svg{padding:0;margin:0;fill:currentColor;width:15px;height:15px}.q-btn .q-spinner-loader{color:currentColor}.q-btn--active{z-index:2;background-color:var(--q-theme-primary-light)}.q-btn:disabled{opacity:0.6}.q-btn--loading{cursor:progress}.q-btn--loading span{visibility:hidden}.q-btn--primary{--box-shadow-tint:var(--q-theme-primary-rgb);background-color:var(--q-theme-primary);border-color:var(--q-theme-primary);color:var(--q-theme-on-primary)}.q-btn--primary:hover:not(:disabled){background-color:var(--q-theme-primary-dark);border-color:var(--q-theme-primary-dark)}.q-btn--secondary{--box-shadow-tint:var(--q-theme-primary-rgb);border-color:currentColor;color:var(--q-theme-primary)}.q-btn--secondary:hover:not(:disabled){background-color:var(--q-theme-primary-dark);border-color:var(--q-theme-primary-dark);color:var(--q-theme-on-primary)}.q-btn--tertiary{--box-shadow-tint:var(--q-theme-primary-rgb);background-color:transparent;border-color:transparent;color:var(--q-theme-primary)}.q-btn--tertiary:focus:not(:disabled),.q-btn--tertiary:hover:not(:disabled){color:var(--q-theme-primary-dark)}.q-btn--danger{--outline-color:var(--q-theme-danger-light);--box-shadow-tint:var(--q-theme-danger-rgb);background-color:var(--q-theme-danger);border-color:var(--q-theme-danger);color:var(--q-theme-on-danger)}.q-btn--danger:hover:not(:disabled){background-color:var(--q-theme-danger-dark);border-color:var(--q-theme-danger-dark)}.q-btn--plain:hover:not(:disabled){background-color:rgb(var(--q-theme-on-background-rgb)/0.1)}.q-btn--small{padding:0.25rem;line-height:14px}.q-btn--small span{font-size:0.75rem;line-height:14px}.q-btn--small .e-icon__svg{width:14px;height:14px}.q-btn--borderless{border-color:transparent!important}.q-btn--elevated{box-shadow:0 2px 4px -1px rgb(var(--box-shadow-tint)/0.2),0 4px 5px 0 rgb(var(--box-shadow-tint)/0.14),0 1px 10px 0 rgb(var(--box-shadow-tint)/0.12)}.q-btn--block{display:block;width:100%;padding:0.5rem}.q-btn--block span{gap:0.5rem}.q-btn--block+.q-btn--block{margin-top:0.5rem}.q-btn__spinner{position:absolute;left:50%;transform:translateX(-50%)}.q-btn-group{position:relative;display:inline-flex;border-radius:0.25rem}.q-btn-group--elevated{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.q-btn-group>.q-btn{position:relative;flex:0 1 auto}.q-btn-group>.q-btn:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.q-btn-group>.q-btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.q-btn-group>.q-btn:hover{z-index:3}.q-icon{display:inline-block}.q-icon__svg{fill:currentColor;width:1em;height:1em}.q-input{display:flex;align-items:center;height:31.89px;width:100%;border-radius:0.25rem;border-width:1px;background-color:transparent;padding:0.26rem 0.25rem;font-size:0.9rem;line-height:1.5rem;transition:color var(--transition-duration) var(--transition-timing-function)}.q-input:focus-within{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25)}.q-input__append,.q-input__prepend{display:flex;align-items:center}.q-input__append{margin-left:auto}.q-input--readonly{background-color:#eaebec}.q-input--disabled{cursor:not-allowed;opacity:0.5}.q-input--mini{width:4.35rem}.q-input--small{width:6.525rem}.q-input--medium{width:10.875rem}.q-input--large{width:15.225rem}.q-input--x-large{width:19.575rem}.q-input--xx-large{width:36.975rem}.q-input--block{width:100%}.q-line-loader{width:100%;height:2px;display:inline-block;position:relative;background:transparent;overflow:hidden}.q-line-loader:after{content:"";min-width:33%;height:2px;background:linear-gradient(to right,#edebe9 0%,var(--q-theme-primary) 50%,#edebe9 100%);position:absolute;top:0;left:0;box-sizing:border-box;animation:q-move 2s linear infinite}@keyframes q-move{0%{left:0;transform:translateX(-100%)}to{left:100%;transform:translateX(0%)}}.q-list{display:flex;flex-direction:column;align-items:center;position:relative;overflow-x:hidden;overflow-y:auto;margin:0;padding:0;-webkit-overflow-scrolling:touch;width:100%;border-radius:0.25rem}.q-list:focus-visible{outline:2px solid rgb(var(--q-theme-primary-rgb)/0.25)}.q-list-item-group{display:flex;flex-direction:column;align-items:center;gap:1px;list-style:none;padding:0;margin:0;width:inherit}.q-list-item-group__title{color:rgb(var(--q-theme-on-background-rgb)/0.62);padding:5px 6px;line-height:15px;width:inherit}.q-list-item-group+.q-list-item-group{padding-top:0.25rem;margin-top:0.25rem;border-top-width:1px}.q-list-item{display:flex;gap:0.25rem;align-items:center;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;width:inherit;cursor:pointer;border-radius:0.25rem;outline:none}.q-list-item--disabled{cursor:not-allowed;pointer-events:none;opacity:0.5}.q-list-item--highlighted,.q-list-item:focus-visible,.q-list-item:hover{background-color:var(--q-theme-primary-light)}.q-list-item--selected{background-color:rgb(var(--q-theme-primary-rgb)/0.24)}.q-list-item--selected--highlighted,.q-list-item--selected:focus-visible,.q-list-item--selected:hover{background-color:rgb(var(--q-theme-primary-rgb)/0.39)}.q-list-item em{font-style:normal;text-decoration:underline}.q-list-item__check{margin-left:auto}.q-list-item+.q-list-item{margin-top:1px}.q-overlay{--q-overlay-bg:var(--q-theme-background);--q-overlay-color:var(--q-theme-on-background);--q-overlay-border-color:rgb(var(--q-theme-on-background-rgb)/0.1);position:absolute;z-index:1070}.q-overlay__content{display:block;position:relative;width:100%;background-color:var(--q-overlay-bg);color:var(--q-overlay-color);background-clip:padding-box;border:1px solid var(--q-overlay-border-color);border-radius:0.25rem;box-shadow:0 0 transparent,0 0 transparent,0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.q-overlay__arrow{position:absolute;display:block;width:1rem;height:0.5rem}.q-overlay__arrow:after,.q-overlay__arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.q-overlay--top .q-overlay__arrow{left:calc(50% - 0.5rem);bottom:calc(-0.5rem - 1px)}.q-overlay--top .q-overlay__arrow:after,.q-overlay--top .q-overlay__arrow:before{border-width:0.5rem 0.5rem 0}.q-overlay--top .q-overlay__arrow:before{bottom:0;border-top-color:var(--q-overlay-border-color)}.q-overlay--top .q-overlay__arrow:after{bottom:1px;border-top-color:var(--q-overlay-bg)}.q-overlay--bottom .q-overlay__arrow{top:calc(-0.5rem - 1px);left:calc(50% - 0.5rem)}.q-overlay--bottom .q-overlay__arrow:after,.q-overlay--bottom .q-overlay__arrow:before{border-width:0 0.5rem 0.5rem}.q-overlay--bottom .q-overlay__arrow:before{top:0;border-bottom-color:var(--q-overlay-border-color)}.q-overlay--bottom .q-overlay__arrow:after{top:1px;border-bottom-color:var(--q-overlay-bg)}.q-overlay--left .q-overlay__arrow{top:calc(50% - 0.5rem);right:-0.5rem;width:0.5rem;height:1rem}.q-overlay--left .q-overlay__arrow:after,.q-overlay--left .q-overlay__arrow:before{border-width:0.5rem 0 0.5rem 0.5rem}.q-overlay--left .q-overlay__arrow:before{right:0;border-left-color:var(--q-overlay-border-color)}.q-overlay--left .q-overlay__arrow:after{right:1px;border-left-color:var(--q-overlay-bg)}.q-overlay--right .q-overlay__arrow{top:calc(50% - 0.5rem);left:-0.5rem;width:0.5rem;height:1rem}.q-overlay--right .q-overlay__arrow:after,.q-overlay--right .q-overlay__arrow:before{border-width:0.5rem 0.5rem 0.5rem 0}.q-overlay--right .q-overlay__arrow:before{left:0;border-right-color:var(--q-overlay-border-color)}.q-overlay--right .q-overlay__arrow:after{left:1px;border-right-color:var(--q-overlay-bg)}.q-overlay--inverted{--q-overlay-bg:var(--q-theme-on-background);--q-overlay-color:var(--q-theme-background);--q-overlay-border-color:transparent}.q-popover .q-overlay__content{z-index:1070;position:relative;max-width:276px;line-height:1.5;word-break:normal;word-spacing:normal;word-wrap:break-word;white-space:normal;line-break:auto;font-size:0.7875rem}.q-popover__header{padding:0.5rem 1rem;margin:0;font-size:0.9rem;background-color:rgb(var(--q-theme-on-background-rgb)/0.04);border-bottom:1px solid var(--q-overlay-border-color);border-top-left-radius:inherit;border-top-right-radius:inherit}.q-popover__body{padding:1rem}.q-popover.q-overlay--bottom .q-overlay__arrow:after{border-bottom-color:rgb(var(--q-theme-on-background-rgb)/0.04)}.q-select:not(.q-select--readonly){background-color:transparent}.q-select:not(.q-select--readonly):not(.q-select--disabled){cursor:pointer}.q-select__placeholder{font-style:italic;color:rgb(var(--q-theme-on-background-rgb)/0.5)}.q-select--expanded .q-select__chevron{transform:rotate(-180deg)}.q-select .q-input__prepend{padding-left:6px;padding-right:0.25rem}.q-select__chevron,.q-select__clear,.q-select__search-icon{opacity:0.5}.q-select__chevron:hover,.q-select__clear:hover{opacity:1}.q-select__chevron{transition:all 0.2s}.q-select__body{display:flex;flex-direction:column;align-items:center;gap:0.25rem;width:100%;padding:0.25rem 0}.q-select__body .q-list-item,.q-select__search{width:calc(100% - 0.5rem)}.q-select__search:focus-within{outline:none}.q-select__items{max-height:240px}.q-select__empty,.q-select__loader{margin:1rem 0}.q-spinner-loader{display:flex;position:relative;width:1em;height:1em;font-size:48px;line-height:1;align-items:center;justify-content:center;color:var(--q-theme-primary)}.q-spinner-loader svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0;animation:q-spin 2s linear infinite;transform-origin:center center}.q-spinner-loader .path{stroke-dasharray:1,250;stroke-dashoffset:0;animation:q-md-dash 1.5s ease-in-out infinite}@keyframes q-spin{0%{transform:rotate3d(0,0,1,0)}25%{transform:rotate3d(0,0,1,90deg)}50%{transform:rotate3d(0,0,1,180deg)}75%{transform:rotate3d(0,0,1,270deg)}to{transform:rotate3d(0,0,1,359deg)}}@keyframes q-md-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.q-tooltip .q-overlay__content{padding:0.5rem;text-align:center;font-style:normal;font-size:0.7875rem;font-weight:400;text-decoration:none;text-shadow:none;text-transform:none;line-height:1.5;line-break:auto;word-wrap:break-word;word-break:normal;word-spacing:normal;white-space:normal;letter-spacing:normal;max-width:200px}
|
package/dist/ui.scss
CHANGED
|
@@ -1,50 +1,62 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.5.
|
|
2
|
+
* Quidgest Framework v0.5.11
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
|
-
/*! normalize
|
|
6
|
-
/*
|
|
7
|
-
|
|
5
|
+
/*! modern-normalize v2.0.0 | MIT License | https:
|
|
6
|
+
/*
|
|
7
|
+
Document
|
|
8
|
+
========
|
|
9
|
+
*/
|
|
10
|
+
*,
|
|
11
|
+
::before,
|
|
12
|
+
::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
}
|
|
8
15
|
html {
|
|
16
|
+
/* Improve consistency of default fonts in all browsers. (https:
|
|
17
|
+
font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji',
|
|
18
|
+
'Segoe UI Emoji';
|
|
9
19
|
line-height: 1.15;
|
|
10
|
-
text-size-adjust: 100%;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
20
|
+
-webkit-text-size-adjust: 100%;
|
|
21
|
+
-moz-tab-size: 4;
|
|
22
|
+
tab-size: 4;
|
|
23
|
+
}
|
|
24
|
+
/*
|
|
25
|
+
Sections
|
|
26
|
+
========
|
|
27
|
+
*/
|
|
14
28
|
body {
|
|
15
|
-
margin: 0;
|
|
16
|
-
}
|
|
17
|
-
main {
|
|
18
|
-
display: block;
|
|
19
|
-
}
|
|
20
|
-
h1 {
|
|
21
|
-
font-size: 2em;
|
|
22
|
-
margin: 0.67em 0;
|
|
29
|
+
margin: 0;
|
|
23
30
|
}
|
|
24
|
-
/*
|
|
25
|
-
|
|
31
|
+
/*
|
|
32
|
+
Grouping content
|
|
33
|
+
================
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
1. Add the correct height in Firefox.
|
|
37
|
+
2. Correct the inheritance of border color in Firefox. (https:
|
|
38
|
+
*/
|
|
26
39
|
hr {
|
|
27
|
-
box-sizing: content-box;
|
|
28
40
|
height: 0;
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
pre {
|
|
32
|
-
font-family: monospace, monospace;
|
|
33
|
-
font-size: 1em;
|
|
34
|
-
}
|
|
35
|
-
/* Text-level semantics
|
|
36
|
-
========================================================================== */
|
|
37
|
-
a {
|
|
38
|
-
background-color: transparent;
|
|
41
|
+
color: inherit;
|
|
39
42
|
}
|
|
43
|
+
/*
|
|
44
|
+
Text-level semantics
|
|
45
|
+
====================
|
|
46
|
+
*/
|
|
40
47
|
b,
|
|
41
48
|
strong {
|
|
42
49
|
font-weight: bolder;
|
|
43
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
1. Improve consistency of default fonts in all browsers. (https:
|
|
53
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
|
54
|
+
*/
|
|
44
55
|
code,
|
|
45
56
|
kbd,
|
|
46
|
-
samp
|
|
47
|
-
|
|
57
|
+
samp,
|
|
58
|
+
pre {
|
|
59
|
+
font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
|
48
60
|
font-size: 1em;
|
|
49
61
|
}
|
|
50
62
|
small {
|
|
@@ -63,13 +75,22 @@ sub {
|
|
|
63
75
|
sup {
|
|
64
76
|
top: -0.5em;
|
|
65
77
|
}
|
|
66
|
-
/*
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
78
|
+
/*
|
|
79
|
+
Tabular data
|
|
80
|
+
============
|
|
81
|
+
*/
|
|
82
|
+
/**
|
|
83
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https:
|
|
84
|
+
2. Correct table border color inheritance in Chrome and Safari. (https:
|
|
85
|
+
*/
|
|
86
|
+
table {
|
|
87
|
+
text-indent: 0;
|
|
88
|
+
border-color: inherit;
|
|
89
|
+
}
|
|
90
|
+
/*
|
|
91
|
+
Forms
|
|
92
|
+
=====
|
|
93
|
+
*/
|
|
73
94
|
button,
|
|
74
95
|
input,
|
|
75
96
|
optgroup,
|
|
@@ -81,87 +102,57 @@ textarea {
|
|
|
81
102
|
margin: 0;
|
|
82
103
|
}
|
|
83
104
|
button,
|
|
84
|
-
input {
|
|
85
|
-
|
|
86
|
-
overflow: visible;
|
|
87
|
-
}
|
|
88
|
-
button,
|
|
89
105
|
select {
|
|
90
|
-
|
|
91
106
|
text-transform: none;
|
|
92
107
|
}
|
|
93
108
|
button,
|
|
94
109
|
[type='button'],
|
|
95
110
|
[type='reset'],
|
|
96
111
|
[type='submit'] {
|
|
97
|
-
appearance: button;
|
|
112
|
+
-webkit-appearance: button;
|
|
98
113
|
}
|
|
99
|
-
|
|
100
|
-
[type='button']::-moz-focus-inner,
|
|
101
|
-
[type='reset']::-moz-focus-inner,
|
|
102
|
-
[type='submit']::-moz-focus-inner {
|
|
114
|
+
::-moz-focus-inner {
|
|
103
115
|
border-style: none;
|
|
104
116
|
padding: 0;
|
|
105
117
|
}
|
|
106
|
-
|
|
107
|
-
[type='button']:-moz-focusring,
|
|
108
|
-
[type='reset']:-moz-focusring,
|
|
109
|
-
[type='submit']:-moz-focusring {
|
|
118
|
+
:-moz-focusring {
|
|
110
119
|
outline: 1px dotted ButtonText;
|
|
111
120
|
}
|
|
112
|
-
|
|
113
|
-
|
|
121
|
+
/**
|
|
122
|
+
Remove the additional ':invalid' styles in Firefox.
|
|
123
|
+
See: https:
|
|
124
|
+
*/
|
|
125
|
+
:-moz-ui-invalid {
|
|
126
|
+
box-shadow: none;
|
|
114
127
|
}
|
|
115
128
|
legend {
|
|
116
|
-
|
|
117
|
-
color: inherit;
|
|
118
|
-
display: table;
|
|
119
|
-
max-width: 100%;
|
|
120
|
-
padding: 0;
|
|
121
|
-
white-space: normal;
|
|
129
|
+
padding: 0;
|
|
122
130
|
}
|
|
123
131
|
progress {
|
|
124
132
|
vertical-align: baseline;
|
|
125
133
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
[type='checkbox'],
|
|
130
|
-
[type='radio'] {
|
|
131
|
-
box-sizing: border-box;
|
|
132
|
-
padding: 0;
|
|
133
|
-
}
|
|
134
|
-
[type='number']::-webkit-inner-spin-button,
|
|
135
|
-
[type='number']::-webkit-outer-spin-button {
|
|
134
|
+
::-webkit-inner-spin-button,
|
|
135
|
+
::-webkit-outer-spin-button {
|
|
136
136
|
height: auto;
|
|
137
137
|
}
|
|
138
138
|
[type='search'] {
|
|
139
|
-
appearance: textfield;
|
|
139
|
+
-webkit-appearance: textfield;
|
|
140
140
|
outline-offset: -2px;
|
|
141
141
|
}
|
|
142
|
-
|
|
143
|
-
appearance: none;
|
|
142
|
+
::-webkit-search-decoration {
|
|
143
|
+
-webkit-appearance: none;
|
|
144
144
|
}
|
|
145
145
|
::-webkit-file-upload-button {
|
|
146
|
-
appearance: button;
|
|
146
|
+
-webkit-appearance: button;
|
|
147
147
|
font: inherit;
|
|
148
148
|
}
|
|
149
|
-
/*
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
}
|
|
149
|
+
/*
|
|
150
|
+
Interactive
|
|
151
|
+
===========
|
|
152
|
+
*/
|
|
154
153
|
summary {
|
|
155
154
|
display: list-item;
|
|
156
155
|
}
|
|
157
|
-
/* Misc
|
|
158
|
-
========================================================================== */
|
|
159
|
-
template {
|
|
160
|
-
display: none;
|
|
161
|
-
}
|
|
162
|
-
[hidden] {
|
|
163
|
-
display: none;
|
|
164
|
-
}
|
|
165
156
|
$border-radius: 0.25rem !default;
|
|
166
157
|
$compact: true !default;
|
|
167
158
|
$space-base: 0.25rem !default;
|
|
@@ -242,7 +233,6 @@ $outline: $outline-width $outline-style $outline-color;
|
|
|
242
233
|
*,
|
|
243
234
|
::after,
|
|
244
235
|
::before {
|
|
245
|
-
box-sizing: border-box;
|
|
246
236
|
border: 0 solid $border;
|
|
247
237
|
outline-offset: 1px;
|
|
248
238
|
}
|
|
@@ -502,7 +492,7 @@ $input-height: 31.89px;
|
|
|
502
492
|
align-items: center;
|
|
503
493
|
height: $input-height;
|
|
504
494
|
width: 100%;
|
|
505
|
-
border-radius:
|
|
495
|
+
border-radius: $border-radius;
|
|
506
496
|
border-width: 1px;
|
|
507
497
|
background-color: transparent;
|
|
508
498
|
padding: $input-padding-y $input-padding-x;
|