@spark-hire/bootstrap-themes 0.8.0 → 0.8.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.
- package/css/dark.css +1 -1
- package/css/dark.map +2 -1
- package/css/light.css +1 -1
- package/css/light.map +2 -1
- package/package.json +1 -1
- package/scss/buttons.scss +8 -4
- package/scss/line-clamp.scss +9 -0
- package/scss/shared.scss +1 -0
package/package.json
CHANGED
package/scss/buttons.scss
CHANGED
|
@@ -106,16 +106,12 @@
|
|
|
106
106
|
@include button-variant($value, $value);
|
|
107
107
|
@include button-svg($value);
|
|
108
108
|
}
|
|
109
|
-
}
|
|
110
109
|
|
|
111
|
-
@each $color, $value in $colors {
|
|
112
110
|
.btn-outline-#{$color} {
|
|
113
111
|
@include button-outline-variant($value);
|
|
114
112
|
@include button-outline-svg($value);
|
|
115
113
|
}
|
|
116
|
-
}
|
|
117
114
|
|
|
118
|
-
@each $color, $value in $colors {
|
|
119
115
|
.btn-link-#{$color} {
|
|
120
116
|
color: $value;
|
|
121
117
|
|
|
@@ -123,6 +119,14 @@
|
|
|
123
119
|
fill: $value;
|
|
124
120
|
}
|
|
125
121
|
}
|
|
122
|
+
|
|
123
|
+
.btn-link-#{$color}:hover {
|
|
124
|
+
color: lighten($value, 4%);
|
|
125
|
+
|
|
126
|
+
svg {
|
|
127
|
+
fill: lighten($value, 4%);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
126
130
|
}
|
|
127
131
|
|
|
128
132
|
@each $color, $value in $theme-colors {
|
package/scss/shared.scss
CHANGED