@spark-hire/bootstrap-themes 1.0.3 → 1.0.5
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/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/_global_variables.scss +4 -3
- package/scss/buttons.scss +8 -0
package/package.json
CHANGED
|
@@ -70,6 +70,7 @@ $theme-colors: map-merge(
|
|
|
70
70
|
"light": $light,
|
|
71
71
|
"dark": $dark,
|
|
72
72
|
"dark-blue": $dark-blue,
|
|
73
|
+
"blue": $blue,
|
|
73
74
|
"teal": $teal,
|
|
74
75
|
"purple": $purple,
|
|
75
76
|
"orange": $orange,
|
|
@@ -100,10 +101,10 @@ $btn-line-height-lg: 1.4;
|
|
|
100
101
|
$btn-disabled-opacity: .45;
|
|
101
102
|
$btn-padding-y-sm: .75;
|
|
102
103
|
|
|
103
|
-
$link-color: #
|
|
104
|
+
$link-color: #6BA3D5;
|
|
104
105
|
$link-decoration: none;
|
|
105
|
-
$link-hover-color: lighten($link-color,
|
|
106
|
-
$link-hover-decoration:
|
|
106
|
+
$link-hover-color: lighten($link-color, 8%);
|
|
107
|
+
$link-hover-decoration: underline;
|
|
107
108
|
|
|
108
109
|
$border-width: 1px;
|
|
109
110
|
|
package/scss/buttons.scss
CHANGED
|
@@ -100,6 +100,11 @@
|
|
|
100
100
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
.btn-lg {
|
|
104
|
+
font-size: 1.15rem;
|
|
105
|
+
font-weight: 600;
|
|
106
|
+
}
|
|
107
|
+
|
|
103
108
|
.btn svg {
|
|
104
109
|
vertical-align: text-top;
|
|
105
110
|
}
|
|
@@ -185,6 +190,9 @@ fieldset[disabled] .btn {
|
|
|
185
190
|
}
|
|
186
191
|
}
|
|
187
192
|
|
|
193
|
+
.btn-cyan {
|
|
194
|
+
color: $white;
|
|
195
|
+
}
|
|
188
196
|
|
|
189
197
|
// ADA compliance
|
|
190
198
|
.btn:focus-visible {
|