studiokit-scaffolding-js 7.0.14-alpha.1.7 → 7.0.14-alpha.1.8
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/lib/css/utils/_focus.css
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
/* global visible focus */
|
|
2
|
-
|
|
3
|
-
body
|
|
2
|
+
:focus-visible,
|
|
3
|
+
/* tachyons overrides (use 'body' to increase specificity */
|
|
4
4
|
body [type="button"]:focus-visible,
|
|
5
|
-
body
|
|
5
|
+
body [type="reset"]:focus-visible,
|
|
6
|
+
body [type="submit"]:focus-visible,
|
|
7
|
+
body button:focus-visible,
|
|
8
|
+
/* @material-ui switch override */
|
|
6
9
|
.MuiSwitch-switchBase.Mui-focusVisible .MuiIconButton-label {
|
|
7
10
|
outline: 0.2rem solid var(--color-focus-border);
|
|
8
11
|
outline-offset: 0;
|
package/lib/css/variables.css
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
--color-dark-gold: #7d882d;
|
|
29
29
|
--color-light-green: #e4f1d4;
|
|
30
30
|
--color-orange: #ee701b;
|
|
31
|
-
--color-light-orange: #
|
|
31
|
+
--color-light-orange: #fef6f1;
|
|
32
32
|
--color-dark-yellow: #b2a44a;
|
|
33
33
|
--color-dark-grey: #30363d;
|
|
34
34
|
|
|
@@ -60,6 +60,8 @@
|
|
|
60
60
|
--color-primary: var(--color-blue);
|
|
61
61
|
--color-error: var(--color-red);
|
|
62
62
|
--color-success: var(--color-green);
|
|
63
|
+
|
|
64
|
+
/** Focus Colors / Styles */
|
|
63
65
|
--color-focus-border: #3590f8;
|
|
64
66
|
--color-focus-shadow: rgb(0 123 255 / 25%); /** from Bootstrap form controls */
|
|
65
67
|
--box-shadow-focus-border: 0 0 0 0.2rem var(--color-focus-border);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "studiokit-scaffolding-js",
|
|
3
|
-
"version": "7.0.14-alpha.1.
|
|
3
|
+
"version": "7.0.14-alpha.1.8",
|
|
4
4
|
"description": "Common scaffolding for Studio apps at Purdue",
|
|
5
5
|
"repository": "https://gitlab.com/purdue-informatics/studiokit/studiokit-scaffolding-js",
|
|
6
6
|
"license": "MIT",
|