We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5da62d commit b1040f0Copy full SHA for b1040f0
src/scss/custom/_buttons.scss
@@ -3,7 +3,9 @@
3
font-size: $btn-font-size;
4
white-space: initial;
5
text-decoration: none;
6
- box-shadow: none;
+ &:not(.btn-outline-primary, .btn-outline-secondary) {
7
+ box-shadow: none;
8
+ }
9
}
10
11
.btn-me {
@@ -170,12 +172,19 @@
170
172
171
173
.btn-outline-secondary {
174
box-shadow: inset 0 0 0 2px $secondary;
175
+ &.disabled,
176
&:hover,
177
&:active {
178
box-shadow: inset 0 0 0 2px color-hover($secondary);
179
180
181
182
+.btn-outline-primary {
183
+ &.disabled {
184
+ box-shadow: inset 0 0 0 2px color-hover($primary);
185
186
+}
187
+
188
.bg-dark {
189
.btn-link {
190
color: $white;
0 commit comments