@kispace-io/gs-lib 1.3.0 → 1.3.1
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/gs-lib.css +8 -3
- package/dist/index.js +815 -680
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/gs-lib.css
CHANGED
|
@@ -401,7 +401,11 @@
|
|
|
401
401
|
video {
|
|
402
402
|
max-width: 100%;
|
|
403
403
|
height: auto;
|
|
404
|
+
}
|
|
404
405
|
|
|
406
|
+
img,
|
|
407
|
+
picture,
|
|
408
|
+
video {
|
|
405
409
|
border-radius: var(--wa-border-radius-m);
|
|
406
410
|
}
|
|
407
411
|
|
|
@@ -648,7 +652,8 @@
|
|
|
648
652
|
input[type='button'],
|
|
649
653
|
input[type='reset'],
|
|
650
654
|
input[type='submit'],
|
|
651
|
-
input[type='file']
|
|
655
|
+
input[type='file'],
|
|
656
|
+
a.wa-button {
|
|
652
657
|
/* We allow modifier classes on <input type="file">,
|
|
653
658
|
* but these selectors ensure the styles only apply to
|
|
654
659
|
* the file selector button in the user agent's shadow root */
|
|
@@ -683,7 +688,7 @@
|
|
|
683
688
|
}
|
|
684
689
|
|
|
685
690
|
/* Default styles for standard buttons */
|
|
686
|
-
|
|
691
|
+
&:not(input[type='file']) {
|
|
687
692
|
color: var(--wa-color-on-loud, var(--wa-color-neutral-on-loud));
|
|
688
693
|
background-color: var(--wa-color-fill-loud, var(--wa-color-neutral-fill-loud));
|
|
689
694
|
border-color: transparent;
|
|
@@ -708,7 +713,7 @@
|
|
|
708
713
|
}
|
|
709
714
|
|
|
710
715
|
/* Default styles for file selector buttons */
|
|
711
|
-
|
|
716
|
+
&:is(input[type='file']) {
|
|
712
717
|
&::file-selector-button {
|
|
713
718
|
color: var(--wa-color-on-normal, var(--wa-color-neutral-on-normal));
|
|
714
719
|
background-color: var(--wa-color-fill-normal, var(--wa-color-neutral-fill-normal));
|