@rogieking/figui3 1.2.1 → 1.2.2
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/example.html +7 -0
- package/fig.css +4 -0
- package/package.json +1 -1
package/example.html
CHANGED
|
@@ -553,6 +553,13 @@
|
|
|
553
553
|
<fig-spinner></fig-spinner>
|
|
554
554
|
|
|
555
555
|
<h2>Misc.</h2>
|
|
556
|
+
<fig-field>
|
|
557
|
+
<label>Minimal ranges</label>
|
|
558
|
+
<fig-slider text="true"
|
|
559
|
+
default="50"
|
|
560
|
+
variant="minimal"
|
|
561
|
+
value="50"></fig-slider>
|
|
562
|
+
</fig-field>
|
|
556
563
|
<fig-field direction="horizontal">
|
|
557
564
|
<label>Opacity</label>
|
|
558
565
|
<fig-slider type="opacity"
|
package/fig.css
CHANGED
|
@@ -1087,6 +1087,9 @@ fig-chit {
|
|
|
1087
1087
|
grid-area: 1/1;
|
|
1088
1088
|
place-self: center;
|
|
1089
1089
|
}
|
|
1090
|
+
input[type="color"] {
|
|
1091
|
+
opacity: 0;
|
|
1092
|
+
}
|
|
1090
1093
|
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
1091
1094
|
background: none;
|
|
1092
1095
|
}
|
|
@@ -1743,6 +1746,7 @@ fig-slider {
|
|
|
1743
1746
|
position: relative;
|
|
1744
1747
|
display: block;
|
|
1745
1748
|
width: 100%;
|
|
1749
|
+
box-shadow: none;
|
|
1746
1750
|
|
|
1747
1751
|
/* Track */
|
|
1748
1752
|
&::before {
|