benivo-ui-library 1.7.41 → 1.7.42
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/button.less +25 -6
- package/package.json +1 -1
package/button.less
CHANGED
|
@@ -153,6 +153,25 @@
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
&.btn-link {
|
|
157
|
+
color: @link-color;
|
|
158
|
+
border: none;
|
|
159
|
+
|
|
160
|
+
.bn-spinner {
|
|
161
|
+
div {
|
|
162
|
+
border-color: @link-color transparent transparent transparent;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.btn-icon {
|
|
167
|
+
color: @link-color;
|
|
168
|
+
|
|
169
|
+
&:before {
|
|
170
|
+
color: @link-color;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
156
175
|
&.bg-grey {
|
|
157
176
|
border: 1px solid #CED0DA !important;
|
|
158
177
|
background-color: #CED0DA !important;
|
|
@@ -201,7 +220,7 @@
|
|
|
201
220
|
&.btn-with-icon {
|
|
202
221
|
.btn-icon {
|
|
203
222
|
border-right: 0;
|
|
204
|
-
font-size: @extra-small-font-size
|
|
223
|
+
font-size: @extra-small-font-size !important;
|
|
205
224
|
margin: -0.5rem 0.7rem -0.5rem 0.7rem;
|
|
206
225
|
}
|
|
207
226
|
|
|
@@ -316,13 +335,13 @@
|
|
|
316
335
|
}
|
|
317
336
|
|
|
318
337
|
&.has-error {
|
|
319
|
-
border-color: @error-color
|
|
338
|
+
border-color: @error-color !important;
|
|
320
339
|
}
|
|
321
340
|
|
|
322
341
|
&.btn-danger {
|
|
323
|
-
color: @white
|
|
324
|
-
border-color: @error-color
|
|
325
|
-
background-color: @error-color
|
|
342
|
+
color: @white !important;
|
|
343
|
+
border-color: @error-color !important;
|
|
344
|
+
background-color: @error-color !important;
|
|
326
345
|
}
|
|
327
346
|
}
|
|
328
347
|
|
|
@@ -463,4 +482,4 @@
|
|
|
463
482
|
border-color: @secondary-btn-text-color transparent transparent transparent;
|
|
464
483
|
}
|
|
465
484
|
}
|
|
466
|
-
}
|
|
485
|
+
}
|