@spark-hire/bootstrap-themes 3.2.2 → 3.2.3
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/CHANGELOG.md +12 -0
- package/css/dark.css +1 -1
- package/css/dark.map +1 -1
- package/css/light.css +1 -1
- package/css/light.map +1 -1
- package/package.json +1 -1
- package/scss/buttons.scss +19 -6
package/package.json
CHANGED
package/scss/buttons.scss
CHANGED
|
@@ -222,12 +222,12 @@ fieldset[disabled] .btn {
|
|
|
222
222
|
// button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%))
|
|
223
223
|
.btn-secondary {
|
|
224
224
|
@include button-variant(
|
|
225
|
-
$gray-
|
|
226
|
-
$gray-
|
|
227
|
-
$gray-
|
|
228
|
-
$gray-
|
|
229
|
-
$gray-
|
|
230
|
-
$gray-
|
|
225
|
+
$gray-300,
|
|
226
|
+
$gray-300,
|
|
227
|
+
$gray-500,
|
|
228
|
+
$gray-500,
|
|
229
|
+
$gray-500,
|
|
230
|
+
$gray-500
|
|
231
231
|
);
|
|
232
232
|
@include button-svg($gray-200);
|
|
233
233
|
color: $black;
|
|
@@ -245,6 +245,19 @@ fieldset[disabled] .btn {
|
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
|
|
248
|
+
.btn-tertiary {
|
|
249
|
+
@include button-variant(
|
|
250
|
+
$gray-400,
|
|
251
|
+
$gray-400,
|
|
252
|
+
$gray-500,
|
|
253
|
+
$gray-500,
|
|
254
|
+
$gray-500,
|
|
255
|
+
$gray-500
|
|
256
|
+
);
|
|
257
|
+
@include button-svg($gray-300);
|
|
258
|
+
color: $black;
|
|
259
|
+
}
|
|
260
|
+
|
|
248
261
|
// ADA compliance
|
|
249
262
|
.btn:focus-visible {
|
|
250
263
|
outline: solid;
|