studiokit-scaffolding-js 7.0.1 → 7.0.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.
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
font-size: 1rem;
|
|
7
7
|
padding: 0.5rem;
|
|
8
8
|
line-height: 1.5;
|
|
9
|
+
border-color: var(--color-light-grey);
|
|
10
|
+
border-bottom-color: var(--color-medium-dark-grey);
|
|
11
|
+
box-shadow: none;
|
|
9
12
|
}
|
|
10
13
|
|
|
11
14
|
select.form-control {
|
|
@@ -89,3 +92,10 @@ select.form-control {
|
|
|
89
92
|
margin-top: 1.4rem;
|
|
90
93
|
}
|
|
91
94
|
}
|
|
95
|
+
|
|
96
|
+
/* making disabled color darker to meet accessibility standards */
|
|
97
|
+
.MuiFormControlLabel-label.Mui-disabled,
|
|
98
|
+
.MuiFormLabel-root.Mui-disabled,
|
|
99
|
+
.MuiIconButton-root.Mui-disabled {
|
|
100
|
+
color: var(--color-disabled);
|
|
101
|
+
}
|
package/lib/css/utils/_color.css
CHANGED
|
@@ -92,6 +92,10 @@
|
|
|
92
92
|
|
|
93
93
|
/* Theme Colors */
|
|
94
94
|
|
|
95
|
+
.color-disabled {
|
|
96
|
+
color: var(--color-disabled);
|
|
97
|
+
}
|
|
98
|
+
|
|
95
99
|
.color-primary {
|
|
96
100
|
color: var(--color-primary);
|
|
97
101
|
}
|
|
@@ -154,6 +158,10 @@
|
|
|
154
158
|
background-color: var(--color-dark-grey);
|
|
155
159
|
}
|
|
156
160
|
|
|
161
|
+
.bg-color-lightest-yellow {
|
|
162
|
+
background-color: var(--color-lightest-yellow);
|
|
163
|
+
}
|
|
164
|
+
|
|
157
165
|
.bg-color-accent-blue {
|
|
158
166
|
background-color: var(--color-accent-blue);
|
|
159
167
|
}
|
package/lib/css/variables.css
CHANGED
|
@@ -32,12 +32,17 @@
|
|
|
32
32
|
--color-dark-yellow: #b2a44a;
|
|
33
33
|
--color-dark-grey: #30363d;
|
|
34
34
|
|
|
35
|
+
/* from Bootstrap's warning alert border and bg */
|
|
36
|
+
--color-light-yellow: #ffeeba;
|
|
37
|
+
--color-lightest-yellow: #fff3cd;
|
|
38
|
+
|
|
35
39
|
/**
|
|
36
40
|
* Common Colors
|
|
37
41
|
* These usually vary across each app
|
|
38
42
|
*/
|
|
39
43
|
--color-accent-blue: #086ee4;
|
|
40
44
|
--color-grey: #555;
|
|
45
|
+
--color-medium-dark-grey: #888;
|
|
41
46
|
--color-medium-grey: #ccc;
|
|
42
47
|
--color-lightest-grey: #e8e8f0;
|
|
43
48
|
--color-blue-grey: #3b444b;
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
* Themed Colors
|
|
52
57
|
* These will be customized per app
|
|
53
58
|
*/
|
|
59
|
+
--color-disabled: #747474;
|
|
54
60
|
--color-primary: var(--color-blue);
|
|
55
61
|
--color-error: var(--color-red);
|
|
56
62
|
--color-success: var(--color-green);
|
package/package.json
CHANGED