bkui-vue 0.0.1-beta.124 → 0.0.1-beta.125

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.
Files changed (88) hide show
  1. package/dist/index.cjs.js +145 -31
  2. package/dist/index.esm.js +3392 -441
  3. package/dist/index.umd.js +145 -31
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -0
  6. package/lib/affix/affix.variable.css +2 -2
  7. package/lib/alert/alert.variable.css +2 -2
  8. package/lib/backtop/backtop.variable.css +2 -2
  9. package/lib/badge/badge.variable.css +2 -2
  10. package/lib/breadcrumb/breadcrumb.variable.css +2 -2
  11. package/lib/button/button.css +4 -0
  12. package/lib/button/button.less +13 -7
  13. package/lib/button/button.variable.css +6 -2
  14. package/lib/card/card.variable.css +2 -2
  15. package/lib/cascader/cascader.variable.css +2 -2
  16. package/lib/checkbox/checkbox.css +1 -1
  17. package/lib/checkbox/checkbox.less +1 -1
  18. package/lib/checkbox/checkbox.variable.css +3 -3
  19. package/lib/code-diff/code-diff.variable.css +2 -2
  20. package/lib/collapse/collapse.variable.css +2 -2
  21. package/lib/components.d.ts +1 -0
  22. package/lib/components.js +1 -1
  23. package/lib/container/container.variable.css +2 -2
  24. package/lib/date-picker/date-picker.variable.css +2 -2
  25. package/lib/directives/index.js +1 -1
  26. package/lib/directives/tooltips.d.ts +0 -1
  27. package/lib/divider/divider.variable.css +2 -2
  28. package/lib/dropdown/dropdown.variable.css +2 -2
  29. package/lib/exception/exception.variable.css +2 -2
  30. package/lib/fixed-navbar/fixed-navbar.variable.css +2 -2
  31. package/lib/form/form.variable.css +2 -2
  32. package/lib/input/index.js +1 -1
  33. package/lib/input/input.css +13 -5
  34. package/lib/input/input.less +12 -2
  35. package/lib/input/input.variable.css +12 -4
  36. package/lib/link/link.variable.css +2 -2
  37. package/lib/loading/loading.css +0 -2
  38. package/lib/loading/loading.less +2 -2
  39. package/lib/loading/loading.variable.css +2 -4
  40. package/lib/menu/menu.variable.css +2 -2
  41. package/lib/menu/submenu.variable.css +2 -2
  42. package/lib/message/message.variable.css +2 -2
  43. package/lib/navigation/navigation.variable.css +2 -2
  44. package/lib/notify/notify.variable.css +2 -2
  45. package/lib/pagination/pagination.variable.css +2 -2
  46. package/lib/popover/popover.variable.css +2 -2
  47. package/lib/popover2/popover2.variable.css +2 -2
  48. package/lib/process/process.variable.css +2 -2
  49. package/lib/progress/progress.variable.css +2 -2
  50. package/lib/radio/radio.variable.css +2 -2
  51. package/lib/resize-layout/resize-layout.variable.css +2 -2
  52. package/lib/select/select.variable.css +2 -2
  53. package/lib/sideslider/sideslider.variable.css +2 -2
  54. package/lib/slider/slider.variable.css +2 -2
  55. package/lib/steps/steps.variable.css +2 -2
  56. package/lib/styles/mixins/scroll.css +17 -0
  57. package/lib/styles/mixins/scroll.less +22 -0
  58. package/lib/styles/mixins/scroll.variable.css +119 -0
  59. package/lib/styles/themes/themes.less +2 -2
  60. package/lib/switcher/switcher.variable.css +2 -2
  61. package/lib/tab/tab.variable.css +2 -2
  62. package/lib/table/index.d.ts +5 -16
  63. package/lib/table/index.js +1 -1
  64. package/lib/table/plugins/head-filter.less +1 -1
  65. package/lib/table/plugins/head-filter.variable.css +2 -2
  66. package/lib/table/plugins/head-sort.less +1 -1
  67. package/lib/table/plugins/head-sort.variable.css +2 -2
  68. package/lib/table/plugins/settings.css +22 -4
  69. package/lib/table/plugins/settings.less +25 -5
  70. package/lib/table/plugins/settings.variable.css +24 -6
  71. package/lib/table/props.d.ts +2 -3
  72. package/lib/table/table.css +664 -4
  73. package/lib/table/table.d.ts +2 -7
  74. package/lib/table/table.less +6 -0
  75. package/lib/table/table.variable.css +666 -6
  76. package/lib/tag/tag.variable.css +2 -2
  77. package/lib/tag-input/tag-input.variable.css +2 -2
  78. package/lib/timeline/timeline.variable.css +2 -2
  79. package/lib/transfer/transfer.variable.css +2 -2
  80. package/lib/tree/index.js +1 -1
  81. package/lib/tree/tree.css +105 -0
  82. package/lib/tree/tree.less +2 -0
  83. package/lib/tree/tree.variable.css +107 -2
  84. package/lib/tree/use-node-action.d.ts +1 -1
  85. package/lib/tree/use-node-attribute.d.ts +1 -0
  86. package/lib/upload/upload.variable.css +2 -2
  87. package/lib/virtual-render/virtual-render.variable.css +2 -2
  88. package/package.json +2 -2
@@ -1,5 +1,11 @@
1
1
  @import '../styles/themes/themes.less';
2
2
  @import '../styles/mixins/scroll.less';
3
+ @import '../virtual-render/virtual-render.less';
4
+ @import '../checkbox/checkbox.less';
5
+ @import '../button/button.less';
6
+ @import '../exception/exception.less';
7
+ @import '../pagination/pagination.less';
8
+ @import '../popover2/popover2.less';
3
9
  @import './plugins/head-filter.less';
4
10
  @import './plugins/head-sort.less';
5
11
  @import './plugins/settings.less';
@@ -19,7 +19,7 @@
19
19
  --line-height-large: 18px;
20
20
  --component-size-small: 26px;
21
21
  --component-size-base: 32px;
22
- --component-size-large: 38px;
22
+ --component-size-large: 40px;
23
23
  --border-width-base: 1px;
24
24
  --border-style-base: solid;
25
25
  --border-radius-base: 2px;
@@ -34,7 +34,7 @@
34
34
  --input-horizontal-padding: 10px;
35
35
  --input-block-color: #f5f7fa;
36
36
  --input-block-hover-color: #eaebf0;
37
- --input-icon-size: var(--font-size-large);
37
+ --input-icon-size: var(--font-size-medium);
38
38
  --input-maxlength-color: #979ba5;
39
39
  --button-primary-hover-color: #5594fa;
40
40
  --button-danger-hover-color: #ff5656;
@@ -117,6 +117,648 @@
117
117
  .bk-F-scroll-y::-webkit-scrollbar-thumb {
118
118
  border-radius: 4px;
119
119
  }
120
+ .bk-virtual-render {
121
+ position: relative;
122
+ }
123
+ .bk-virtual-render .bk-virtual-content,
124
+ .bk-virtual-render.bk-virtual-content {
125
+ position: absolute;
126
+ top: 0;
127
+ bottom: 0;
128
+ left: 0;
129
+ width: 100%;
130
+ height: 100%;
131
+ }
132
+ .bk-virtual-render .bk-virtual-section {
133
+ width: 1px;
134
+ background: transparent;
135
+ }
136
+ .bk-checkbox {
137
+ display: inline-flex;
138
+ justify-self: center;
139
+ margin-right: 30px;
140
+ font-size: 14px;
141
+ line-height: 18px;
142
+ letter-spacing: normal;
143
+ color: #63656e;
144
+ cursor: pointer;
145
+ user-select: none;
146
+ }
147
+ .bk-checkbox.is-checked .bk-checkbox-input {
148
+ background: #3a84ff;
149
+ border-color: #3a84ff;
150
+ transition: all 0.1s;
151
+ }
152
+ .bk-checkbox.is-checked .bk-checkbox-input.small::after {
153
+ width: 3px;
154
+ height: 6px;
155
+ }
156
+ .bk-checkbox.is-checked .bk-checkbox-input::after {
157
+ position: absolute;
158
+ top: 50%;
159
+ left: 50%;
160
+ width: 4px;
161
+ height: 8px;
162
+ border: 2px solid #fff;
163
+ border-top: 0;
164
+ border-left: 0;
165
+ content: '';
166
+ transform: translate(-50%, -60%) scaleY(1) rotate(45deg);
167
+ transform-origin: center;
168
+ }
169
+ .bk-checkbox.is-indeterminated .bk-checkbox-input.small::after {
170
+ width: 6px;
171
+ height: 2px;
172
+ }
173
+ .bk-checkbox.is-indeterminated .bk-checkbox-input::after {
174
+ position: absolute;
175
+ top: 50%;
176
+ left: 50%;
177
+ width: 8px;
178
+ height: 2px;
179
+ background: #fff;
180
+ border: none;
181
+ border-radius: 2px;
182
+ content: '';
183
+ transform: translate(-50%, -50%);
184
+ }
185
+ .bk-checkbox.is-disabled {
186
+ color: #c4c6cc;
187
+ cursor: not-allowed;
188
+ }
189
+ .bk-checkbox.is-disabled .bk-checkbox-input {
190
+ background: #fafbfd;
191
+ border-color: #dcdee5;
192
+ }
193
+ .bk-checkbox.is-disabled .bk-checkbox-input::after {
194
+ background: #dcdee5;
195
+ }
196
+ .bk-checkbox.is-disabled.is-checked .bk-checkbox-input {
197
+ background: #dcdee5;
198
+ }
199
+ .bk-checkbox .bk-checkbox-input {
200
+ position: relative;
201
+ display: inline-block;
202
+ width: 16px;
203
+ height: 16px;
204
+ margin-right: 5px;
205
+ vertical-align: middle;
206
+ border: 1px solid #979ba5;
207
+ border-radius: 2px;
208
+ }
209
+ .bk-checkbox .bk-checkbox-input.small {
210
+ width: 14px;
211
+ height: 14px;
212
+ }
213
+ .bk-checkbox .bk-checkbox-original {
214
+ position: absolute;
215
+ top: 0;
216
+ left: 0;
217
+ z-index: -1;
218
+ width: 0;
219
+ height: 0;
220
+ }
221
+ .bk-checkbox .bk-checkbox-label {
222
+ display: inline-block;
223
+ vertical-align: middle;
224
+ }
225
+ .bk-button {
226
+ display: inline-flex;
227
+ height: 32px;
228
+ padding: 5px 12px;
229
+ font-size: 14px;
230
+ color: #63656e;
231
+ text-decoration: none;
232
+ white-space: nowrap;
233
+ cursor: pointer;
234
+ background-color: white;
235
+ border: 1px solid #c4c6cc;
236
+ border-radius: 2px;
237
+ outline: none;
238
+ box-sizing: border-box;
239
+ transition: background-color ease 0.3s;
240
+ appearance: none;
241
+ align-items: center;
242
+ justify-content: center;
243
+ }
244
+ .bk-button.bk-button-primary {
245
+ background-color: #3a84ff;
246
+ color: white;
247
+ border-color: #3a84ff;
248
+ }
249
+ .bk-button.bk-button-primary:hover {
250
+ background-color: #5594fa;
251
+ border-color: #5594fa;
252
+ }
253
+ .bk-button.bk-button-primary:active {
254
+ background-color: #2c77f4;
255
+ border-color: #2c77f4;
256
+ color: white;
257
+ }
258
+ .bk-button.bk-button-primary.is-outline {
259
+ color: #3a84ff;
260
+ border-color: #3a84ff;
261
+ background-color: white;
262
+ }
263
+ .bk-button.bk-button-primary.is-outline:hover {
264
+ background-color: #5594fa;
265
+ border-color: #5594fa;
266
+ color: white;
267
+ }
268
+ .bk-button.bk-button-primary.is-text {
269
+ color: #3a84ff;
270
+ background-color: transparent;
271
+ border: none;
272
+ }
273
+ .bk-button.bk-button-primary.is-text:not(.is-disabled):hover {
274
+ color: #5594fa;
275
+ }
276
+ .bk-button.bk-button-primary.is-disabled {
277
+ color: #dcdee5;
278
+ cursor: not-allowed;
279
+ }
280
+ .bk-button.bk-button-primary.is-disabled:not(.is-text) {
281
+ background-color: #dcdee5;
282
+ color: white;
283
+ border-color: #dcdee5;
284
+ }
285
+ .bk-button.bk-button-hover-primary:hover {
286
+ background-color: #5594fa;
287
+ border-color: #5594fa;
288
+ color: white;
289
+ }
290
+ .bk-button.bk-button-warning {
291
+ background-color: #ff9c01;
292
+ color: white;
293
+ border-color: #ff9c01;
294
+ }
295
+ .bk-button.bk-button-warning:hover {
296
+ background-color: #ffb848;
297
+ border-color: #ffb848;
298
+ }
299
+ .bk-button.bk-button-warning:active {
300
+ background-color: #eb9000;
301
+ border-color: #eb9000;
302
+ color: white;
303
+ }
304
+ .bk-button.bk-button-warning.is-outline {
305
+ color: #ff9c01;
306
+ border-color: #ff9c01;
307
+ background-color: white;
308
+ }
309
+ .bk-button.bk-button-warning.is-outline:hover {
310
+ background-color: #ffb848;
311
+ border-color: #ffb848;
312
+ color: white;
313
+ }
314
+ .bk-button.bk-button-warning.is-text {
315
+ color: #ff9c01;
316
+ background-color: transparent;
317
+ border: none;
318
+ }
319
+ .bk-button.bk-button-warning.is-text:not(.is-disabled):hover {
320
+ color: #ffb848;
321
+ }
322
+ .bk-button.bk-button-warning.is-disabled {
323
+ color: #dcdee5;
324
+ cursor: not-allowed;
325
+ }
326
+ .bk-button.bk-button-warning.is-disabled:not(.is-text) {
327
+ background-color: #dcdee5;
328
+ color: white;
329
+ border-color: #dcdee5;
330
+ }
331
+ .bk-button.bk-button-hover-warning:hover {
332
+ background-color: #ffb848;
333
+ border-color: #ffb848;
334
+ color: white;
335
+ }
336
+ .bk-button.bk-button-success {
337
+ background-color: #2dcb56;
338
+ color: white;
339
+ border-color: #2dcb56;
340
+ }
341
+ .bk-button.bk-button-success:hover {
342
+ background-color: #45e35f;
343
+ border-color: #45e35f;
344
+ }
345
+ .bk-button.bk-button-success:active {
346
+ background-color: #1ab943;
347
+ border-color: #1ab943;
348
+ color: white;
349
+ }
350
+ .bk-button.bk-button-success.is-outline {
351
+ color: #2dcb56;
352
+ border-color: #2dcb56;
353
+ background-color: white;
354
+ }
355
+ .bk-button.bk-button-success.is-outline:hover {
356
+ background-color: #45e35f;
357
+ border-color: #45e35f;
358
+ color: white;
359
+ }
360
+ .bk-button.bk-button-success.is-text {
361
+ color: #2dcb56;
362
+ background-color: transparent;
363
+ border: none;
364
+ }
365
+ .bk-button.bk-button-success.is-text:not(.is-disabled):hover {
366
+ color: #45e35f;
367
+ }
368
+ .bk-button.bk-button-success.is-disabled {
369
+ color: #dcdee5;
370
+ cursor: not-allowed;
371
+ }
372
+ .bk-button.bk-button-success.is-disabled:not(.is-text) {
373
+ background-color: #dcdee5;
374
+ color: white;
375
+ border-color: #dcdee5;
376
+ }
377
+ .bk-button.bk-button-hover-success:hover {
378
+ background-color: #45e35f;
379
+ border-color: #45e35f;
380
+ color: white;
381
+ }
382
+ .bk-button.bk-button-danger {
383
+ background-color: #ea3636;
384
+ color: white;
385
+ border-color: #ea3636;
386
+ }
387
+ .bk-button.bk-button-danger:hover {
388
+ background-color: #ff5656;
389
+ border-color: #ff5656;
390
+ }
391
+ .bk-button.bk-button-danger:active {
392
+ background-color: #db2626;
393
+ border-color: #db2626;
394
+ color: white;
395
+ }
396
+ .bk-button.bk-button-danger.is-outline {
397
+ color: #ea3636;
398
+ border-color: #ea3636;
399
+ background-color: white;
400
+ }
401
+ .bk-button.bk-button-danger.is-outline:hover {
402
+ background-color: #ff5656;
403
+ border-color: #ff5656;
404
+ color: white;
405
+ }
406
+ .bk-button.bk-button-danger.is-text {
407
+ color: #ea3636;
408
+ background-color: transparent;
409
+ border: none;
410
+ }
411
+ .bk-button.bk-button-danger.is-text:not(.is-disabled):hover {
412
+ color: #ff5656;
413
+ }
414
+ .bk-button.bk-button-danger.is-disabled {
415
+ color: #dcdee5;
416
+ cursor: not-allowed;
417
+ }
418
+ .bk-button.bk-button-danger.is-disabled:not(.is-text) {
419
+ background-color: #dcdee5;
420
+ color: white;
421
+ border-color: #dcdee5;
422
+ }
423
+ .bk-button.bk-button-hover-danger:hover {
424
+ background-color: #ff5656;
425
+ border-color: #ff5656;
426
+ color: white;
427
+ }
428
+ .bk-button.bk-button-small {
429
+ height: 26px;
430
+ padding: 3px 12px;
431
+ font-size: 12px;
432
+ }
433
+ .bk-button.bk-button-large {
434
+ height: 38px;
435
+ padding: 8px 20px;
436
+ font-size: 16px;
437
+ }
438
+ .bk-button .bk-button-text {
439
+ display: inline-flex;
440
+ align-items: center;
441
+ line-height: 1;
442
+ }
443
+ .bk-button.is-loading {
444
+ position: relative;
445
+ }
446
+ .bk-button.is-loading .bk-button-loading:not(:last-child) {
447
+ position: absolute;
448
+ }
449
+ .bk-button.is-loading .bk-button-text {
450
+ visibility: hidden;
451
+ }
452
+ .bk-button:hover {
453
+ border-color: #979ba5;
454
+ }
455
+ .bk-button:active {
456
+ color: #3a84ff;
457
+ border-color: #3a84ff;
458
+ }
459
+ .bk-button.is-text {
460
+ height: auto;
461
+ padding: 0;
462
+ font-size: 14px;
463
+ font-size: inherit;
464
+ color: #63656e;
465
+ text-decoration: none;
466
+ cursor: pointer;
467
+ background-color: transparent;
468
+ border: none;
469
+ outline: none;
470
+ }
471
+ .bk-button.is-disabled {
472
+ color: #dcdee5;
473
+ cursor: not-allowed;
474
+ border-color: #dcdee5;
475
+ }
476
+ .bk-button-group {
477
+ display: inline-block;
478
+ font-size: 0;
479
+ }
480
+ .bk-button-group.bk-button-group-small .bk-button {
481
+ height: 26px;
482
+ padding: 3px 12px;
483
+ font-size: 12px;
484
+ }
485
+ .bk-button-group.bk-button-group-large .bk-button {
486
+ height: 38px;
487
+ padding: 8px 20px;
488
+ font-size: 16px;
489
+ }
490
+ .bk-button-group .bk-button {
491
+ height: 32px;
492
+ margin: 0 0 0 -1px;
493
+ border-radius: 0;
494
+ }
495
+ .bk-button-group .bk-button:not(.is-disabled) {
496
+ color: #63656e;
497
+ background-color: white;
498
+ border-color: #c4c6cc;
499
+ }
500
+ .bk-button-group .bk-button.is-disabled {
501
+ color: #c4c6cc;
502
+ }
503
+ .bk-button-group .bk-button:first-child {
504
+ border-radius: 2px 0 0 2px;
505
+ }
506
+ .bk-button-group .bk-button:last-child {
507
+ border-radius: 0 2px 2px 0;
508
+ }
509
+ .bk-button-group .bk-button:only-child {
510
+ border-radius: 2px;
511
+ }
512
+ .bk-button-group .bk-button:hover:not(.is-disabled),
513
+ .bk-button-group .bk-button.is-selected:not(.is-disabled) {
514
+ position: relative;
515
+ z-index: 1;
516
+ color: #3a84ff;
517
+ background-color: white;
518
+ border-color: #3a84ff;
519
+ }
520
+ .bk-button-group .bk-button.is-selected:not(.is-disabled) {
521
+ background-color: #e1ecff;
522
+ }
523
+ .bk-button-group .bk-button.is-selected.is-disabled {
524
+ background-color: #f0f1f5;
525
+ }
526
+ .bk-exception-wrapper {
527
+ position: relative;
528
+ display: flex;
529
+ width: 100%;
530
+ align-items: center;
531
+ flex-direction: column;
532
+ }
533
+ .bk-exception-wrapper .bk-exception-img {
534
+ display: flex;
535
+ width: 480px;
536
+ height: 240px;
537
+ align-items: center;
538
+ justify-content: center;
539
+ }
540
+ .bk-exception-wrapper .bk-exception-img.part-img {
541
+ width: 120px;
542
+ height: 100px;
543
+ }
544
+ .bk-exception-wrapper .bk-exception-img .exception-image {
545
+ display: block;
546
+ height: 100%;
547
+ vertical-align: middle;
548
+ object-fit: contain;
549
+ }
550
+ .bk-exception-wrapper .bk-exception-text {
551
+ font-size: 24px;
552
+ color: #63656e;
553
+ text-align: center;
554
+ }
555
+ .bk-exception-wrapper .bk-exception-text.part-text {
556
+ font-size: 14px;
557
+ }
558
+ .bk-pagination {
559
+ display: flex;
560
+ align-items: center;
561
+ font-size: 12px;
562
+ letter-spacing: normal;
563
+ color: #63656e;
564
+ user-select: none;
565
+ }
566
+ .bk-pagination.is-disabled {
567
+ cursor: not-allowed;
568
+ }
569
+ .bk-pagination.is-align-left {
570
+ justify-content: flex-start;
571
+ }
572
+ .bk-pagination.is-align-center {
573
+ justify-content: center;
574
+ }
575
+ .bk-pagination.is-align-right {
576
+ justify-content: flex-end;
577
+ }
578
+ .bk-pagination > * {
579
+ margin: 0 6px;
580
+ }
581
+ .bk-pagination > .is-first {
582
+ margin-left: 0;
583
+ }
584
+ .bk-pagination > .is-last {
585
+ margin-right: 0;
586
+ }
587
+ .bk-pagination-total {
588
+ display: flex;
589
+ user-select: none;
590
+ }
591
+ .bk-pagination-total-num {
592
+ padding: 0 2px;
593
+ color: #3f4046;
594
+ }
595
+ .bk-pagination-list {
596
+ display: flex;
597
+ }
598
+ .bk-pagination-list-pre,
599
+ .bk-pagination-list-next,
600
+ .bk-pagination-list-item {
601
+ display: flex;
602
+ align-items: center;
603
+ justify-content: center;
604
+ height: 32px;
605
+ min-width: 32px;
606
+ padding: 0 4px;
607
+ margin-right: 2px;
608
+ margin-left: 2px;
609
+ color: #63656e;
610
+ cursor: pointer;
611
+ background: #fff;
612
+ border: 1px solid #c4c6cc;
613
+ border-radius: 2px;
614
+ user-select: none;
615
+ }
616
+ .bk-pagination-list-pre:hover,
617
+ .bk-pagination-list-next:hover,
618
+ .bk-pagination-list-item:hover,
619
+ .bk-pagination-list-pre.is-active,
620
+ .bk-pagination-list-next.is-active,
621
+ .bk-pagination-list-item.is-active {
622
+ color: #3a84ff;
623
+ border-color: #3a84ff;
624
+ }
625
+ .bk-pagination-list-pre.is-disabled,
626
+ .bk-pagination-list-next.is-disabled,
627
+ .bk-pagination-list-item.is-disabled {
628
+ color: #c4c6cc;
629
+ cursor: not-allowed;
630
+ background-color: #fafbfd;
631
+ border-color: #dcdee5;
632
+ }
633
+ .bk-pagination-list-pre-batch,
634
+ .bk-pagination-list-next-batch {
635
+ display: flex;
636
+ align-items: center;
637
+ justify-content: center;
638
+ height: 32px;
639
+ cursor: pointer;
640
+ user-select: none;
641
+ }
642
+ .bk-pagination-list-pre-batch:hover,
643
+ .bk-pagination-list-next-batch:hover {
644
+ color: #3a84ff;
645
+ }
646
+ .bk-pagination-list-pre,
647
+ .bk-pagination-list-next {
648
+ font-size: 14px;
649
+ }
650
+ .bk-pagination-list-item {
651
+ margin-right: 4px;
652
+ margin-left: 4px;
653
+ }
654
+ .bk-pagination-limit {
655
+ display: flex;
656
+ align-items: center;
657
+ user-select: none;
658
+ }
659
+ .bk-pagination-limit-select {
660
+ width: 60px;
661
+ margin: 0 4px;
662
+ }
663
+ .bk-pagination-small-list {
664
+ display: flex;
665
+ }
666
+ .bk-pagination-small-list .bk-pagination-picker {
667
+ display: flex;
668
+ height: 24px;
669
+ cursor: pointer;
670
+ background-color: #f0f1f5;
671
+ border: 1px solid #f0f1f5;
672
+ border-radius: 2px;
673
+ align-items: center;
674
+ }
675
+ .bk-pagination-small-list .bk-pagination-picker:hover {
676
+ background-color: #e1ecff;
677
+ border-color: #e1ecff;
678
+ }
679
+ .bk-pagination-small-list .bk-pagination-picker.is-focused {
680
+ background-color: #fff;
681
+ border-color: #3a84ff;
682
+ box-shadow: 0px 0px 4px rgba(58, 132, 255, 0.4);
683
+ }
684
+ .bk-pagination-editor {
685
+ height: 16px;
686
+ min-width: 14px;
687
+ padding-right: 4px;
688
+ padding-left: 8px;
689
+ line-height: 16px;
690
+ text-align: center;
691
+ background-color: transparent;
692
+ border: 0;
693
+ border-radius: 2px;
694
+ outline: none;
695
+ transition: all 0.15s;
696
+ }
697
+ .bk-pagination-small-list-total {
698
+ padding-right: 8px;
699
+ padding-left: 4px;
700
+ }
701
+ .bk-pagination-btn-pre,
702
+ .bk-pagination-btn-next {
703
+ display: flex;
704
+ justify-content: center;
705
+ align-items: center;
706
+ width: 24px;
707
+ cursor: pointer;
708
+ }
709
+ .bk-pagination-btn-pre:hover,
710
+ .bk-pagination-btn-next:hover {
711
+ color: #3a84ff;
712
+ }
713
+ .bk-pagination-btn-pre.is-disabled,
714
+ .bk-pagination-btn-next.is-disabled {
715
+ color: #dcdee5;
716
+ cursor: not-allowed;
717
+ }
718
+ .bk-pagination-picker-list {
719
+ max-height: 216px;
720
+ padding: 7px 0;
721
+ margin: -7px -14px;
722
+ overflow: auto;
723
+ }
724
+ .bk-pagination-picker-list .item {
725
+ height: 32px;
726
+ padding: 0 10px;
727
+ font-size: 12px;
728
+ line-height: 32px;
729
+ color: #63656e;
730
+ cursor: pointer;
731
+ }
732
+ .bk-pagination-picker-list .item:hover,
733
+ .bk-pagination-picker-list .item.is-actived {
734
+ color: #3a84ff;
735
+ background: #f4f6fa;
736
+ }
737
+ .bk-popover2.bk-pop2-content {
738
+ position: absolute;
739
+ display: none;
740
+ padding: 7px 14px;
741
+ font-size: 12px;
742
+ color: #fff;
743
+ background: #26323d;
744
+ border-radius: 4px;
745
+ box-sizing: border-box;
746
+ }
747
+ .bk-popover2.bk-pop2-content .bk-pop2-arrow {
748
+ position: absolute;
749
+ width: 8px;
750
+ height: 8px;
751
+ background: #333;
752
+ transform: rotate(45deg);
753
+ }
754
+ .bk-popover2.bk-pop2-content[data-theme^='light'] {
755
+ color: #26323d;
756
+ background-color: #fff;
757
+ box-shadow: 0 0 6px 0 #dcdee5;
758
+ }
759
+ .bk-popover2.bk-pop2-content[data-theme^='light'] .bk-pop2-arrow {
760
+ background-color: #fff;
761
+ }
120
762
  .bk-table-head-action {
121
763
  display: flex;
122
764
  width: 32px;
@@ -232,6 +874,14 @@
232
874
  right: 15px;
233
875
  cursor: pointer;
234
876
  }
877
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-head .head-title {
878
+ display: inline-block;
879
+ height: 26px;
880
+ margin: 24px 0;
881
+ font-size: 20px;
882
+ line-height: 26px;
883
+ color: #313238;
884
+ }
235
885
  .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body {
236
886
  padding: 0 24px;
237
887
  }
@@ -242,6 +892,13 @@
242
892
  color: #63656e;
243
893
  justify-content: space-between;
244
894
  }
895
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title .field-setting-label {
896
+ height: 22px;
897
+ font-size: 14px;
898
+ line-height: 22px;
899
+ color: #313238;
900
+ text-align: left;
901
+ }
245
902
  .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title .limit {
246
903
  color: #c4c6cc;
247
904
  }
@@ -257,8 +914,9 @@
257
914
  }
258
915
  .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-fields .field-item {
259
916
  width: 150px;
260
- height: 42px;
261
- line-height: 42px;
917
+ height: 16px;
918
+ margin-top: 16px;
919
+ line-height: 16px;
262
920
  }
263
921
  .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-fields .field-item > label {
264
922
  overflow: hidden;
@@ -311,9 +969,11 @@
311
969
  }
312
970
  .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-footer {
313
971
  display: flex;
314
- height: 56px;
972
+ height: 50px;
315
973
  padding: 0 24px;
316
- background-color: #fafbfd;
974
+ background: #fafbfd;
975
+ border: 1px solid #dcdee5;
976
+ border-radius: 0px 0px 2px 2px;
317
977
  justify-content: flex-end;
318
978
  align-items: center;
319
979
  }