@oneblink/apps-react 5.5.1-beta.6 → 5.5.1-beta.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/styles/number.scss +8 -1
- package/dist/styles.css +5 -1
- package/package.json +1 -1
package/dist/styles/number.scss
CHANGED
@@ -41,8 +41,15 @@
|
|
41
41
|
}
|
42
42
|
}
|
43
43
|
|
44
|
+
// While these are identical CSS attributes, they need to be kept
|
45
|
+
// separated, if a browser cannot understand one of these properties,
|
46
|
+
// the css will not be applied.
|
47
|
+
|
44
48
|
// Works for all other major browser except Firefox
|
45
|
-
input[type="range"]:focus-visible::-webkit-slider-thumb
|
49
|
+
input[type="range"]:focus-visible::-webkit-slider-thumb {
|
50
|
+
outline-offset: $size-9;
|
51
|
+
outline: $input-focus-border-color auto 3px;
|
52
|
+
}
|
46
53
|
// Works for Firefox
|
47
54
|
input[type="range"]:focus-visible::-moz-range-thumb {
|
48
55
|
outline-offset: $size-9;
|
package/dist/styles.css
CHANGED
@@ -8749,7 +8749,11 @@ button on-loading {
|
|
8749
8749
|
border-top-color: #407E8C;
|
8750
8750
|
}
|
8751
8751
|
|
8752
|
-
input[type=range]:focus-visible::-webkit-slider-thumb
|
8752
|
+
input[type=range]:focus-visible::-webkit-slider-thumb {
|
8753
|
+
outline-offset: 0.25rem;
|
8754
|
+
outline: hsl(229, 53%, 53%) auto 3px;
|
8755
|
+
}
|
8756
|
+
|
8753
8757
|
input[type=range]:focus-visible::-moz-range-thumb {
|
8754
8758
|
outline-offset: 0.25rem;
|
8755
8759
|
outline: hsl(229, 53%, 53%) auto 3px;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@oneblink/apps-react",
|
3
3
|
"description": "Helper functions for OneBlink apps in ReactJS.",
|
4
|
-
"version": "5.5.1-beta.
|
4
|
+
"version": "5.5.1-beta.7",
|
5
5
|
"author": "OneBlink <developers@oneblink.io> (https://oneblink.io)",
|
6
6
|
"bugs": {
|
7
7
|
"url": "https://github.com/oneblink/apps-react/issues"
|