@quidgest/ui 0.7.16 → 0.7.17
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 +6 -5
- package/dist/ui.esm.js +78 -78
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +2 -2
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +9 -9
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.7.
|
|
2
|
+
* Quidgest Framework v0.7.17
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -186,6 +186,8 @@ $outline-width: 2px !default;
|
|
|
186
186
|
$outline-style: solid !default;
|
|
187
187
|
$outline-color: rgb(var(--q-theme-info-rgb) / 0.5) !default;
|
|
188
188
|
$outline: $outline-width $outline-style $outline-color;
|
|
189
|
+
$input-padding-y: 0.26rem;
|
|
190
|
+
$input-padding-x: 0.25rem;
|
|
189
191
|
*,
|
|
190
192
|
::after,
|
|
191
193
|
::before {
|
|
@@ -419,9 +421,6 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
419
421
|
cursor: pointer;
|
|
420
422
|
}
|
|
421
423
|
}
|
|
422
|
-
$input-padding-y: 0.26rem;
|
|
423
|
-
$input-padding-x: 0.25rem;
|
|
424
|
-
$input-height: 31.89px;
|
|
425
424
|
.q-field {
|
|
426
425
|
$this: &;
|
|
427
426
|
display: flex;
|
|
@@ -438,14 +437,14 @@ $input-height: 31.89px;
|
|
|
438
437
|
&__control {
|
|
439
438
|
display: flex;
|
|
440
439
|
align-items: center;
|
|
441
|
-
height:
|
|
440
|
+
height: inherit;
|
|
442
441
|
width: 100%;
|
|
443
442
|
border-radius: inherit;
|
|
444
443
|
border-width: 1px;
|
|
445
444
|
background-color: transparent;
|
|
446
445
|
padding: $input-padding-y $input-padding-x;
|
|
447
446
|
font-size: 0.9rem;
|
|
448
|
-
line-height: 1.
|
|
447
|
+
line-height: 1.5;
|
|
449
448
|
transition: color var(--transition-duration) var(--transition-timing-function);
|
|
450
449
|
&:focus-within {
|
|
451
450
|
outline: $outline;
|
|
@@ -527,7 +526,7 @@ $input-height: 31.89px;
|
|
|
527
526
|
&__append {
|
|
528
527
|
display: flex;
|
|
529
528
|
align-items: flex-end;
|
|
530
|
-
height:
|
|
529
|
+
height: inherit;
|
|
531
530
|
> * {
|
|
532
531
|
border-radius: 0;
|
|
533
532
|
min-width: 40px;
|
|
@@ -539,7 +538,8 @@ $input-height: 31.89px;
|
|
|
539
538
|
align-items: center;
|
|
540
539
|
justify-content: center;
|
|
541
540
|
text-align: center;
|
|
542
|
-
padding:
|
|
541
|
+
padding: $input-padding-y $input-padding-x;
|
|
542
|
+
line-height: 1.5;
|
|
543
543
|
font-size: $font-size-base;
|
|
544
544
|
border-width: 1px;
|
|
545
545
|
background-color: rgb(var(--q-theme-on-background-rgb) / 0.1);
|
|
@@ -552,7 +552,7 @@ $input-height: 31.89px;
|
|
|
552
552
|
}
|
|
553
553
|
> .q-field__control {
|
|
554
554
|
display: flex;
|
|
555
|
-
align-items:
|
|
555
|
+
align-items: stretch;
|
|
556
556
|
height: auto;
|
|
557
557
|
border-width: 0;
|
|
558
558
|
padding: 0;
|