studiokit-scaffolding-js 4.5.10 → 4.5.11
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.
|
@@ -115,29 +115,18 @@ a[class*="btn-"]:active:focus {
|
|
|
115
115
|
|
|
116
116
|
/* Disabled */
|
|
117
117
|
.btn-primary[disabled],
|
|
118
|
+
.btn-primary.disabled,
|
|
119
|
+
.btn-primary.Mui-disabled,
|
|
120
|
+
.btn-primary.Mui-disabled:hover,
|
|
121
|
+
.btn-primary.Mui-disabled:focus,
|
|
118
122
|
.btn-disabled,
|
|
119
123
|
.btn-disabled:hover {
|
|
120
124
|
background-color: var(--color-light-grey);
|
|
121
|
-
color: var(--color-dark-grey);
|
|
122
|
-
}
|
|
123
125
|
|
|
124
|
-
/* making disabled button color darker to meet accessibility standards */
|
|
125
|
-
.MuiButton-root.Mui-disabled {
|
|
126
|
+
/* making disabled button color darker to meet accessibility standards */
|
|
126
127
|
color: rgba(0, 0, 0, 0.6);
|
|
127
128
|
}
|
|
128
129
|
|
|
129
|
-
/* allow disabled buttons to have popovers */
|
|
130
|
-
.MuiButtonBase-root.Mui-disabled.enable-popovers {
|
|
131
|
-
cursor: auto;
|
|
132
|
-
pointer-events: all;
|
|
133
|
-
|
|
134
|
-
&.MuiButton-outlinedPrimary {
|
|
135
|
-
&:hover {
|
|
136
|
-
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
130
|
/* Bad */
|
|
142
131
|
.btn-bad {
|
|
143
132
|
background-color: var(--color-pink);
|
package/package.json
CHANGED