bkui-vue 0.0.2-beta.57 → 0.0.2-beta.59
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +3 -2
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/button/button.css +20 -0
- package/lib/button/button.less +105 -94
- package/lib/button/button.variable.css +20 -0
- package/lib/date-picker/index.js +1 -1
- package/lib/form/index.js +1 -1
- package/lib/table/table.css +20 -0
- package/lib/table/table.variable.css +20 -0
- package/package.json +1 -1
@@ -300,6 +300,11 @@
|
|
300
300
|
border-color: #5594fa;
|
301
301
|
color: white;
|
302
302
|
}
|
303
|
+
.bk-button.bk-button-primary.is-outline:active {
|
304
|
+
background-color: #2c77f4;
|
305
|
+
border-color: #2c77f4;
|
306
|
+
color: white;
|
307
|
+
}
|
303
308
|
.bk-button.bk-button-primary.is-text {
|
304
309
|
color: #3a84ff;
|
305
310
|
background-color: transparent;
|
@@ -346,6 +351,11 @@
|
|
346
351
|
border-color: #ffb848;
|
347
352
|
color: white;
|
348
353
|
}
|
354
|
+
.bk-button.bk-button-warning.is-outline:active {
|
355
|
+
background-color: #eb9000;
|
356
|
+
border-color: #eb9000;
|
357
|
+
color: white;
|
358
|
+
}
|
349
359
|
.bk-button.bk-button-warning.is-text {
|
350
360
|
color: #ff9c01;
|
351
361
|
background-color: transparent;
|
@@ -392,6 +402,11 @@
|
|
392
402
|
border-color: #45e35f;
|
393
403
|
color: white;
|
394
404
|
}
|
405
|
+
.bk-button.bk-button-success.is-outline:active {
|
406
|
+
background-color: #1ab943;
|
407
|
+
border-color: #1ab943;
|
408
|
+
color: white;
|
409
|
+
}
|
395
410
|
.bk-button.bk-button-success.is-text {
|
396
411
|
color: #2dcb56;
|
397
412
|
background-color: transparent;
|
@@ -438,6 +453,11 @@
|
|
438
453
|
border-color: #ff5656;
|
439
454
|
color: white;
|
440
455
|
}
|
456
|
+
.bk-button.bk-button-danger.is-outline:active {
|
457
|
+
background-color: #db2626;
|
458
|
+
border-color: #db2626;
|
459
|
+
color: white;
|
460
|
+
}
|
441
461
|
.bk-button.bk-button-danger.is-text {
|
442
462
|
color: #ea3636;
|
443
463
|
background-color: transparent;
|