@quidgest/ui 0.5.7 → 0.5.9
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 +16 -19
- package/dist/ui.esm.js +330 -327
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +4 -4
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +9 -9
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +20 -31
- package/package.json +4 -6
package/dist/ui.css
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
*/
|
|
8
8
|
html {
|
|
9
9
|
line-height: 1.15; /* 1 */
|
|
10
|
-
-webkit-text-size-adjust: 100%;
|
|
10
|
+
-webkit-text-size-adjust: 100%;
|
|
11
|
+
-moz-text-size-adjust: 100%;
|
|
12
|
+
text-size-adjust: 100%; /* 2 */
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
/* Sections
|
|
@@ -65,17 +67,6 @@ a {
|
|
|
65
67
|
background-color: transparent;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
|
-
/**
|
|
69
|
-
* 1. Remove the bottom border in Chrome 57-
|
|
70
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
71
|
-
*/
|
|
72
|
-
abbr[title] {
|
|
73
|
-
border-bottom: none; /* 1 */
|
|
74
|
-
text-decoration: underline; /* 2 */
|
|
75
|
-
-webkit-text-decoration: underline dotted;
|
|
76
|
-
text-decoration: underline dotted; /* 2 */
|
|
77
|
-
}
|
|
78
|
-
|
|
79
70
|
/**
|
|
80
71
|
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
81
72
|
*/
|
|
@@ -176,6 +167,8 @@ button,
|
|
|
176
167
|
[type=reset],
|
|
177
168
|
[type=submit] {
|
|
178
169
|
-webkit-appearance: button;
|
|
170
|
+
-moz-appearance: button;
|
|
171
|
+
appearance: button;
|
|
179
172
|
}
|
|
180
173
|
|
|
181
174
|
/**
|
|
@@ -258,7 +251,9 @@ textarea {
|
|
|
258
251
|
* 2. Correct the outline style in Safari.
|
|
259
252
|
*/
|
|
260
253
|
[type=search] {
|
|
261
|
-
-webkit-appearance: textfield;
|
|
254
|
+
-webkit-appearance: textfield;
|
|
255
|
+
-moz-appearance: textfield;
|
|
256
|
+
appearance: textfield; /* 1 */
|
|
262
257
|
outline-offset: -2px; /* 2 */
|
|
263
258
|
}
|
|
264
259
|
|
|
@@ -267,6 +262,7 @@ textarea {
|
|
|
267
262
|
*/
|
|
268
263
|
[type=search]::-webkit-search-decoration {
|
|
269
264
|
-webkit-appearance: none;
|
|
265
|
+
appearance: none;
|
|
270
266
|
}
|
|
271
267
|
|
|
272
268
|
/**
|
|
@@ -274,7 +270,8 @@ textarea {
|
|
|
274
270
|
* 2. Change font properties to `inherit` in Safari.
|
|
275
271
|
*/
|
|
276
272
|
::-webkit-file-upload-button {
|
|
277
|
-
-webkit-appearance: button;
|
|
273
|
+
-webkit-appearance: button;
|
|
274
|
+
appearance: button; /* 1 */
|
|
278
275
|
font: inherit; /* 2 */
|
|
279
276
|
}
|
|
280
277
|
|
|
@@ -312,8 +309,8 @@ template {
|
|
|
312
309
|
|
|
313
310
|
/* global settings */
|
|
314
311
|
*,
|
|
315
|
-
|
|
316
|
-
|
|
312
|
+
::after,
|
|
313
|
+
::before {
|
|
317
314
|
box-sizing: border-box;
|
|
318
315
|
border: 0 solid #dce3e8;
|
|
319
316
|
outline-offset: 1px;
|
|
@@ -480,7 +477,7 @@ body {
|
|
|
480
477
|
border-color: transparent !important;
|
|
481
478
|
}
|
|
482
479
|
.q-btn--elevated {
|
|
483
|
-
box-shadow:
|
|
480
|
+
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);
|
|
484
481
|
}
|
|
485
482
|
.q-btn--block {
|
|
486
483
|
display: block;
|
|
@@ -505,7 +502,7 @@ body {
|
|
|
505
502
|
border-radius: 0.25rem;
|
|
506
503
|
}
|
|
507
504
|
.q-btn-group--elevated {
|
|
508
|
-
box-shadow:
|
|
505
|
+
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
509
506
|
}
|
|
510
507
|
.q-btn-group > .q-btn {
|
|
511
508
|
position: relative;
|
|
@@ -536,7 +533,7 @@ body {
|
|
|
536
533
|
.q-input {
|
|
537
534
|
display: flex;
|
|
538
535
|
align-items: center;
|
|
539
|
-
height:
|
|
536
|
+
height: 31.89px;
|
|
540
537
|
width: 100%;
|
|
541
538
|
border-radius: 0.375rem;
|
|
542
539
|
border-width: 1px;
|