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.
@@ -13,6 +13,7 @@
13
13
  .form-control :focus, .MuiInputBase-input:focus {
14
14
  border-color: var(--color-focus-border);
15
15
  box-shadow: var(--box-shadow-focus-shadow);
16
+ transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
16
17
  }
17
18
 
18
19
  select.form-control {
@@ -1,8 +1,11 @@
1
1
  /* global visible focus */
2
- body :focus-visible,
3
- body button:focus-visible,
2
+ :focus-visible,
3
+ /* tachyons overrides (use 'body' to increase specificity */
4
4
  body [type="button"]:focus-visible,
5
- body .btn-primary:focus-visible,
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;
@@ -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: #f8f5e6;
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.7",
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",