@quidgest/ui 0.7.6 → 0.7.7
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/index.d.ts +1 -1
- package/dist/ui.css +9 -12
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +13 -34
- 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.7
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -486,41 +486,19 @@ $input-height: 31.89px;
|
|
|
486
486
|
}
|
|
487
487
|
}
|
|
488
488
|
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
&--mini {
|
|
495
|
-
> #{$this}__control {
|
|
496
|
-
width: 4.35rem;
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
&--small {
|
|
500
|
-
> #{$this}__control {
|
|
501
|
-
width: 6.525rem;
|
|
502
|
-
}
|
|
503
|
-
}
|
|
504
|
-
&--medium {
|
|
505
|
-
> #{$this}__control {
|
|
506
|
-
width: 10.875rem;
|
|
507
|
-
}
|
|
508
|
-
}
|
|
509
|
-
&--large {
|
|
510
|
-
> #{$this}__control {
|
|
511
|
-
width: 15.225rem;
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
|
-
&--x-large {
|
|
515
|
-
> #{$this}__control {
|
|
516
|
-
width: 19.575rem;
|
|
517
|
-
}
|
|
518
|
-
}
|
|
519
|
-
&--xx-large {
|
|
520
|
-
> #{$this}__control {
|
|
521
|
-
width: 36.975rem;
|
|
489
|
+
@mixin field-size($size, $multiplier: 1) {
|
|
490
|
+
&--#{$size} {
|
|
491
|
+
> #{$this}__control {
|
|
492
|
+
width: calc(#{$multiplier} * 5em + #{$multiplier - 1} * $space-base);
|
|
493
|
+
}
|
|
522
494
|
}
|
|
523
495
|
}
|
|
496
|
+
@include field-size(mini, 1);
|
|
497
|
+
@include field-size(small, 2);
|
|
498
|
+
@include field-size(medium, 3);
|
|
499
|
+
@include field-size(large, 4);
|
|
500
|
+
@include field-size(xlarge, 6);
|
|
501
|
+
@include field-size(xxlarge, 8);
|
|
524
502
|
&--block {
|
|
525
503
|
width: 100%;
|
|
526
504
|
}
|
|
@@ -1000,6 +978,7 @@ $spinner-color: var(--q-theme-primary);
|
|
|
1000
978
|
outline: none;
|
|
1001
979
|
background-color: inherit;
|
|
1002
980
|
cursor: inherit;
|
|
981
|
+
padding: 0;
|
|
1003
982
|
&::placeholder {
|
|
1004
983
|
font-style: italic;
|
|
1005
984
|
color: rgb(var(--q-theme-on-background-rgb) / 0.5);
|