bkui-vue 0.0.1-beta.10 → 0.0.1-beta.11

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 (206) hide show
  1. package/dist/bkui-vue.cjs.js +4977 -578
  2. package/dist/bkui-vue.esm.js +4972 -580
  3. package/dist/bkui-vue.umd.js +4977 -578
  4. package/dist/style.css +1685 -16
  5. package/lib/alert/alert.variable.css +16 -0
  6. package/lib/backtop/backtop.variable.css +16 -0
  7. package/lib/badge/badge.variable.css +16 -0
  8. package/lib/breadcrumb/breadcrumb.variable.css +16 -0
  9. package/lib/button/button.d.ts +10 -10
  10. package/lib/button/button.less +6 -6
  11. package/lib/button/button.variable.css +16 -0
  12. package/lib/button/index.d.ts +9 -12
  13. package/lib/button/index.js +1 -1
  14. package/lib/card/card.variable.css +16 -0
  15. package/lib/checkbox/checkbox.variable.css +16 -0
  16. package/lib/collapse/collapse.css +8 -0
  17. package/lib/collapse/collapse.less +10 -0
  18. package/lib/collapse/collapse.variable.css +8 -0
  19. package/lib/collapse/index.js +1 -1
  20. package/lib/components.d.ts +6 -1
  21. package/lib/date-picker/date-picker.css +373 -0
  22. package/lib/date-picker/date-picker.d.ts +357 -0
  23. package/lib/date-picker/date-picker.less +486 -0
  24. package/lib/date-picker/date-picker.variable.css +459 -0
  25. package/lib/date-picker/fecha.d.ts +6 -0
  26. package/lib/date-picker/index.d.ts +525 -0
  27. package/lib/date-picker/index.js +1 -0
  28. package/lib/date-picker/interface.d.ts +21 -0
  29. package/lib/date-picker/utils.d.ts +96 -0
  30. package/lib/directives/index.d.ts +1 -0
  31. package/lib/directives/index.js +14 -14
  32. package/lib/directives/tooltips.d.ts +17 -0
  33. package/lib/divider/divider.css +38 -0
  34. package/lib/divider/divider.d.ts +40 -0
  35. package/lib/divider/divider.less +53 -0
  36. package/lib/divider/divider.variable.css +124 -0
  37. package/lib/divider/index.d.ts +110 -0
  38. package/lib/divider/index.js +1 -0
  39. package/lib/dropdown/dropdown-item.d.ts +18 -0
  40. package/lib/dropdown/dropdown-menu.d.ts +15 -0
  41. package/lib/dropdown/dropdown.css +43 -0
  42. package/lib/dropdown/dropdown.d.ts +49 -0
  43. package/lib/dropdown/dropdown.less +54 -0
  44. package/lib/dropdown/dropdown.variable.css +129 -0
  45. package/lib/dropdown/index.d.ts +160 -0
  46. package/lib/dropdown/index.js +1 -0
  47. package/lib/exception/exception.variable.css +16 -0
  48. package/lib/fixed-navbar/fixed-navbar.variable.css +16 -0
  49. package/lib/form/common.d.ts +3 -0
  50. package/lib/form/form-item.d.ts +140 -0
  51. package/lib/form/form.css +39 -0
  52. package/lib/form/form.d.ts +76 -0
  53. package/lib/form/form.less +50 -0
  54. package/lib/form/form.variable.css +39 -0
  55. package/lib/form/index.d.ts +4 -0
  56. package/lib/form/index.js +1 -0
  57. package/lib/form/type.d.ts +21 -0
  58. package/lib/form/validator.d.ts +8 -0
  59. package/lib/icon/angle-double-left.d.ts +4 -0
  60. package/lib/icon/angle-double-right.d.ts +4 -0
  61. package/lib/icon/angle-down-line.d.ts +4 -0
  62. package/lib/icon/angle-down.d.ts +4 -0
  63. package/lib/icon/angle-left.d.ts +4 -0
  64. package/lib/icon/angle-right.d.ts +4 -0
  65. package/lib/icon/circle.d.ts +4 -0
  66. package/lib/icon/code.d.ts +4 -0
  67. package/lib/icon/cog-shape.d.ts +4 -0
  68. package/lib/icon/collapse-left.d.ts +4 -0
  69. package/lib/icon/copy.d.ts +4 -0
  70. package/lib/icon/done.d.ts +4 -0
  71. package/lib/icon/down-shape.d.ts +4 -0
  72. package/lib/icon/error.d.ts +4 -0
  73. package/lib/icon/folder-open.d.ts +4 -0
  74. package/lib/icon/folder-shape-open.d.ts +4 -0
  75. package/lib/icon/folder-shape.d.ts +4 -0
  76. package/lib/icon/folder.d.ts +4 -0
  77. package/lib/icon/index.d.ts +27 -0
  78. package/lib/icon/index.js +1 -1
  79. package/lib/icon/info.d.ts +4 -0
  80. package/lib/icon/play-shape.d.ts +4 -0
  81. package/lib/icon/plus.d.ts +4 -0
  82. package/lib/icon/right-shape.d.ts +4 -0
  83. package/lib/icon/share.d.ts +4 -0
  84. package/lib/icon/success.d.ts +4 -0
  85. package/lib/icon/text-file.d.ts +4 -0
  86. package/lib/icon/tree-application-shape.d.ts +4 -0
  87. package/lib/icon/warn.d.ts +4 -0
  88. package/lib/input/index.d.ts +29 -29
  89. package/lib/input/input.d.ts +8 -8
  90. package/lib/input/input.variable.css +16 -0
  91. package/lib/link/link.variable.css +16 -0
  92. package/lib/loading/loading.variable.css +16 -0
  93. package/lib/menu/index.d.ts +169 -0
  94. package/lib/menu/index.js +1 -0
  95. package/lib/menu/menu-group.d.ts +13 -0
  96. package/lib/menu/menu-item.d.ts +15 -0
  97. package/lib/menu/menu.css +182 -0
  98. package/lib/menu/menu.d.ts +60 -0
  99. package/lib/menu/menu.less +180 -0
  100. package/lib/menu/menu.variable.css +268 -0
  101. package/lib/menu/submenu.d.ts +21 -0
  102. package/lib/menu/submenu.less +5 -0
  103. package/lib/menu/submenu.variable.css +86 -0
  104. package/lib/menu/utils.d.ts +41 -0
  105. package/lib/message/index.d.ts +1 -1
  106. package/lib/message/index.js +1 -1
  107. package/lib/message/message.css +17 -0
  108. package/lib/message/message.less +18 -0
  109. package/lib/message/message.variable.css +33 -0
  110. package/lib/message/messageConstructor.d.ts +12 -6
  111. package/lib/navigation/index.d.ts +2 -0
  112. package/lib/navigation/index.js +1 -0
  113. package/lib/navigation/navigation-title.d.ts +22 -0
  114. package/lib/navigation/navigation.css +184 -0
  115. package/lib/navigation/navigation.d.ts +94 -0
  116. package/lib/navigation/navigation.less +210 -0
  117. package/lib/navigation/navigation.variable.css +270 -0
  118. package/lib/notify/index.d.ts +2 -0
  119. package/lib/notify/index.js +1 -0
  120. package/lib/notify/notify.css +49 -0
  121. package/lib/notify/notify.less +58 -0
  122. package/lib/notify/notify.variable.css +135 -0
  123. package/lib/notify/notifyConstructor.d.ts +75 -0
  124. package/lib/popover/index.d.ts +19 -19
  125. package/lib/popover/index.js +1 -1
  126. package/lib/popover/popover.css +2 -3
  127. package/lib/popover/popover.d.ts +8 -8
  128. package/lib/popover/popover.less +2 -3
  129. package/lib/popover/popover.variable.css +18 -3
  130. package/lib/progress/index.d.ts +4 -4
  131. package/lib/progress/progress.d.ts +1 -1
  132. package/lib/progress/progress.variable.css +16 -0
  133. package/lib/radio/radio.css +6 -0
  134. package/lib/radio/radio.less +7 -0
  135. package/lib/radio/radio.variable.css +22 -0
  136. package/lib/rate/star.d.ts +2 -2
  137. package/lib/select/common.d.ts +4 -3
  138. package/lib/select/index.d.ts +211 -60
  139. package/lib/select/index.js +15 -1
  140. package/lib/select/option.d.ts +2 -2
  141. package/lib/select/optionGroup.d.ts +115 -0
  142. package/lib/select/select.css +52 -12
  143. package/lib/select/select.d.ts +24 -21
  144. package/lib/select/select.less +73 -7
  145. package/lib/select/select.variable.css +68 -12
  146. package/lib/shared/bk-popover.d.ts +11 -1
  147. package/lib/shared/index.d.ts +7 -0
  148. package/lib/shared/index.js +1 -1
  149. package/lib/shared/vue-types.d.ts +1 -0
  150. package/lib/shared/z-index-manager.d.ts +6 -1
  151. package/lib/sideslider/sideslider.variable.css +16 -0
  152. package/lib/slider/index.d.ts +27 -0
  153. package/lib/slider/index.js +15 -0
  154. package/lib/slider/slider-button.d.ts +72 -0
  155. package/lib/slider/slider.css +149 -0
  156. package/lib/slider/slider.d.ts +159 -0
  157. package/lib/slider/slider.less +179 -0
  158. package/lib/slider/slider.variable.css +235 -0
  159. package/lib/steps/index.d.ts +8 -8
  160. package/lib/steps/index.js +2 -2
  161. package/lib/steps/steps.css +1 -1
  162. package/lib/steps/steps.d.ts +2 -2
  163. package/lib/steps/steps.less +1 -1
  164. package/lib/steps/steps.variable.css +17 -1
  165. package/lib/styles/index.d.ts +11 -0
  166. package/lib/styles/index.js +1 -1
  167. package/lib/styles/mixins/popper.css +43 -0
  168. package/lib/styles/mixins/popper.less +52 -0
  169. package/lib/styles/mixins/popper.variable.css +43 -0
  170. package/lib/styles/mixins/size.less +9 -0
  171. package/lib/styles/reset.css +273 -0
  172. package/lib/styles/reset.less +313 -0
  173. package/lib/styles/reset.variable.css +273 -0
  174. package/lib/styles/themes/themes.less +26 -1
  175. package/lib/switcher/switcher.variable.css +16 -0
  176. package/lib/tab/index.d.ts +416 -0
  177. package/lib/tab/index.js +1 -0
  178. package/lib/tab/tab-nav.d.ts +154 -0
  179. package/lib/tab/tab-panel.d.ts +46 -0
  180. package/lib/tab/tab.css +147 -0
  181. package/lib/tab/tab.d.ts +131 -0
  182. package/lib/tab/tab.less +221 -0
  183. package/lib/tab/tab.variable.css +233 -0
  184. package/lib/table/index.d.ts +71 -60
  185. package/lib/table/index.js +1 -1
  186. package/lib/table/props.d.ts +41 -0
  187. package/lib/table/render.d.ts +47 -0
  188. package/lib/table/table.css +44 -0
  189. package/lib/table/table.d.ts +22 -63
  190. package/lib/table/table.less +63 -1
  191. package/lib/table/table.variable.css +60 -0
  192. package/lib/table/utils.d.ts +22 -0
  193. package/lib/tag/tag.variable.css +16 -0
  194. package/lib/tree/index.d.ts +149 -0
  195. package/lib/tree/index.js +1 -0
  196. package/lib/tree/tree.css +35 -0
  197. package/lib/tree/tree.d.ts +58 -0
  198. package/lib/tree/tree.less +55 -0
  199. package/lib/tree/tree.variable.css +35 -0
  200. package/lib/tree/util.d.ts +89 -0
  201. package/lib/use-message.d.ts +2 -0
  202. package/package.json +7 -1
  203. package/lib/message/message.d.ts +0 -2
  204. package/lib/table/common.d.ts +0 -3
  205. package/lib/table/table-layout.d.ts +0 -14
  206. package/lib/table/type.d.ts +0 -12
package/dist/style.css CHANGED
@@ -1,3 +1,276 @@
1
+ html,
2
+ body {
3
+ padding: 0;
4
+ margin: 0;
5
+ }
6
+ * {
7
+ box-sizing: border-box;
8
+ }
9
+ /**
10
+ * HTML5 display definitions
11
+ * ==========================================================================
12
+ *
13
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
14
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
15
+ * Correct `block` display not defined for `main` in IE 11.
16
+ */
17
+ article,
18
+ aside,
19
+ details,
20
+ figcaption,
21
+ figure,
22
+ footer,
23
+ header,
24
+ hgroup,
25
+ main,
26
+ menu,
27
+ nav,
28
+ section,
29
+ summary {
30
+ display: block;
31
+ }
32
+ /**
33
+ * 1. Correct `inline-block` display not defined in IE 8/9.
34
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
35
+ */
36
+ audio,
37
+ canvas,
38
+ progress,
39
+ video {
40
+ /* 1 */
41
+ display: inline-block;
42
+ /* 2 */
43
+ vertical-align: baseline;
44
+ }
45
+ /**
46
+ * Prevent modern browsers from displaying `audio` without controls.
47
+ * Remove excess height in iOS 5 devices.
48
+ */
49
+ audio:not([controls]) {
50
+ display: none;
51
+ height: 0;
52
+ }
53
+ /**
54
+ * Address `[hidden]` styling not present in IE 8/9/10.
55
+ * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
56
+ */
57
+ [hidden],
58
+ template {
59
+ display: none;
60
+ }
61
+ /**
62
+ * Links
63
+ * ==========================================================================
64
+ *
65
+ * Remove the gray background color from active links in IE 10.
66
+ */
67
+ a {
68
+ background-color: transparent;
69
+ }
70
+ /**
71
+ * Improve readability of focused elements when they are also in an
72
+ * active/hover state.
73
+ */
74
+ a:active,
75
+ a:hover {
76
+ outline: 0;
77
+ }
78
+ /**
79
+ * Text-level semantics
80
+ * ==========================================================================
81
+ *
82
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
83
+ */
84
+ abbr[title] {
85
+ border-bottom: 1px dotted;
86
+ }
87
+ /**
88
+ * Embedded content
89
+ * ==========================================================================
90
+ *
91
+ * Remove border when inside `a` element in IE 8/9/10.
92
+ */
93
+ img {
94
+ border: 0;
95
+ }
96
+ /**
97
+ * Correct overflow not hidden in IE 9/10/11.
98
+ */
99
+ svg:not(:root) {
100
+ overflow: hidden;
101
+ }
102
+ /**
103
+ * Grouping content
104
+ * ==========================================================================
105
+ *
106
+ * Address margin not present in IE 8/9 and Safari.
107
+ */
108
+ figure {
109
+ margin: 1em 40px;
110
+ }
111
+ /**
112
+ * Address differences between Firefox and other browsers.
113
+ */
114
+ hr {
115
+ height: 0;
116
+ box-sizing: content-box;
117
+ }
118
+ /**
119
+ * Address odd `em`-unit font size rendering in all browsers.
120
+ *
121
+ * Forms
122
+ * ==========================================================================
123
+ *
124
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
125
+ * styling of `select`, unless a `border` property is set.
126
+ *
127
+ * 1. Correct color not being inherited.
128
+ * Known issue: affects color of disabled elements.
129
+ * 2. Correct font properties not being inherited.
130
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
131
+ */
132
+ button,
133
+ input,
134
+ optgroup,
135
+ select,
136
+ textarea {
137
+ /* 3 */
138
+ margin: 0;
139
+ /* 2 */
140
+ font: inherit;
141
+ /* 1 */
142
+ color: inherit;
143
+ }
144
+ /**
145
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
146
+ */
147
+ button {
148
+ overflow: visible;
149
+ }
150
+ /**
151
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
152
+ * All other form control elements do not inherit `text-transform` values.
153
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
154
+ * Correct `select` style inheritance in Firefox.
155
+ */
156
+ button,
157
+ select {
158
+ text-transform: none;
159
+ }
160
+ /**
161
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
162
+ * 2. Correct inability to style clickable `input` types in iOS.
163
+ * 3. Improve usability and consistency of cursor style between image-type `input` and others.
164
+ */
165
+ button,
166
+ html input[type='button'],
167
+ input[type='reset'],
168
+ input[type='submit'] {
169
+ /* 3 */
170
+ cursor: pointer;
171
+ /* 2 */
172
+ appearance: button;
173
+ }
174
+ /* Re-set default cursor for disabled elements. */
175
+ button[disabled],
176
+ html input[disabled] {
177
+ cursor: default;
178
+ }
179
+ /* Remove inner padding and border in Firefox 4+. */
180
+ button::-moz-focus-inner,
181
+ input::-moz-focus-inner {
182
+ padding: 0;
183
+ border: 0;
184
+ }
185
+ /**
186
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.
187
+ */
188
+ input {
189
+ line-height: normal;
190
+ }
191
+ /**
192
+ * It's recommended that you don't attempt to style these elements.
193
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
194
+ *
195
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
196
+ * 2. Remove excess padding in IE 8/9/10.
197
+ */
198
+ input[type='checkbox'],
199
+ input[type='radio'] {
200
+ /* 2 */
201
+ padding: 0;
202
+ /* 1 */
203
+ box-sizing: border-box;
204
+ }
205
+ /**
206
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
207
+ * `font-size` values of the `input`, it causes the cursor style of the
208
+ * decrement button to change from `default` to `text`.
209
+ */
210
+ input[type='number']::-webkit-inner-spin-button,
211
+ input[type='number']::-webkit-outer-spin-button {
212
+ height: auto;
213
+ }
214
+ ::-ms-clear,
215
+ ::-ms-reveal {
216
+ display: none;
217
+ }
218
+ input[type='text']::-ms-clear {
219
+ display: none;
220
+ }
221
+ input[type='text']::-ms-reveal {
222
+ display: none;
223
+ }
224
+ /**
225
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
226
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
227
+ */
228
+ input[type='search'] {
229
+ /* 2 */
230
+ box-sizing: content-box;
231
+ /* 1 */
232
+ appearance: textfield;
233
+ }
234
+ /**
235
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
236
+ * Safari (but not Chrome) clips the cancel button when the search input has
237
+ * padding (and `textfield` appearance).
238
+ */
239
+ input[type='search']::-webkit-search-cancel-button,
240
+ input[type='search']::-webkit-search-decoration {
241
+ appearance: none;
242
+ }
243
+ /**
244
+ * Define consistent border, margin, and padding.
245
+ */
246
+ fieldset {
247
+ padding: 0.35em 0.625em 0.75em;
248
+ margin: 0 2px;
249
+ border: 1px solid #c0c0c0;
250
+ }
251
+ /**
252
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
253
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
254
+ */
255
+ legend {
256
+ /* 2 */
257
+ padding: 0;
258
+ /* 1 */
259
+ border: 0;
260
+ }
261
+ /**
262
+ * Remove default vertical scrollbar in IE 8/9/10/11.
263
+ */
264
+ textarea {
265
+ overflow: auto;
266
+ }
267
+ /**
268
+ * Don't inherit the `font-weight` (applied by a rule above).
269
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
270
+ */
271
+ optgroup {
272
+ font-weight: bold;
273
+ }
1
274
  .bk-alert {
2
275
  position: relative;
3
276
  font-size: 12px;
@@ -679,6 +952,7 @@
679
952
  text-align: left;
680
953
  }
681
954
  .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header {
955
+ position: relative;
682
956
  height: 42px;
683
957
  padding: 0 10px;
684
958
  overflow: hidden;
@@ -688,6 +962,13 @@
688
962
  text-overflow: ellipsis;
689
963
  cursor: pointer;
690
964
  }
965
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header .bk-collapse-icon {
966
+ position: absolute;
967
+ right: 10px;
968
+ }
969
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header .bk-collapse-icon svg {
970
+ font-size: 20px;
971
+ }
691
972
  .bk-collapse-wrapper .bk-collapse-item .bk-collapse-content {
692
973
  display: none;
693
974
  padding: 0 10px;
@@ -1026,6 +1307,49 @@
1026
1307
  .bk-link.danger.is-disabled {
1027
1308
  color: #fd9c9c;
1028
1309
  }
1310
+ .bk-dropdown {
1311
+ display: inline-block;
1312
+ }
1313
+ .bk-dropdown .bk-dropdown-content {
1314
+ display: none;
1315
+ box-shadow: 0 2px 6px rgba(51, 60, 72, 0.1);
1316
+ }
1317
+ .bk-dropdown .bk-dropdown-content[data-show] {
1318
+ display: block;
1319
+ }
1320
+ .bk-dropdown-menu {
1321
+ min-width: 100%;
1322
+ padding: 5px 0;
1323
+ margin: 0;
1324
+ background: #fff;
1325
+ border: 1px solid #dcdee5;
1326
+ border-radius: 2px;
1327
+ box-sizing: border-box;
1328
+ }
1329
+ .bk-dropdown-menu::-webkit-scrollbar {
1330
+ width: 4px;
1331
+ height: 4px;
1332
+ }
1333
+ .bk-dropdown-menu::-webkit-scrollbar-thumb {
1334
+ background: #dde4eb;
1335
+ border-radius: 20px;
1336
+ box-shadow: inset 0 0 6px hsla(0, 0%, 80%, 0.3);
1337
+ }
1338
+ .bk-dropdown-item {
1339
+ display: block;
1340
+ height: 32px;
1341
+ padding: 0 16px;
1342
+ font-size: 12px;
1343
+ line-height: 33px;
1344
+ color: #63656e;
1345
+ white-space: nowrap;
1346
+ list-style: none;
1347
+ cursor: pointer;
1348
+ }
1349
+ .bk-dropdown-item:hover {
1350
+ color: #3a84ff;
1351
+ background-color: #eaf3ff;
1352
+ }
1029
1353
  @keyframes loading-scale-animate {
1030
1354
  0% {
1031
1355
  transform: scale(1);
@@ -1267,9 +1591,8 @@
1267
1591
  }
1268
1592
  .bk-popover .bk-popover-content {
1269
1593
  display: none;
1270
- padding: 4px 8px;
1271
- font-size: 13px;
1272
- font-weight: bold;
1594
+ padding: 7px 14px;
1595
+ font-size: 12px;
1273
1596
  color: #fff;
1274
1597
  background: #26323d;
1275
1598
  border-radius: 4px;
@@ -1547,6 +1870,12 @@
1547
1870
  border: 1px solid #63656e;
1548
1871
  transition: all 0.3s;
1549
1872
  }
1873
+ .bk-radio-group {
1874
+ display: inline-block;
1875
+ font-size: 0;
1876
+ line-height: 0;
1877
+ letter-spacing: normal;
1878
+ }
1550
1879
  .bk-rate {
1551
1880
  position: relative;
1552
1881
  }
@@ -1584,15 +1913,14 @@
1584
1913
  .bk-select {
1585
1914
  display: inline-block;
1586
1915
  }
1587
- .bk-select .input-right-icon {
1588
- position: absolute;
1589
- top: 6px;
1590
- right: 4px;
1916
+ .bk-select ul {
1917
+ padding: 0;
1918
+ margin: 0;
1919
+ font-weight: normal;
1920
+ list-style: none;
1591
1921
  }
1592
- .bk-select .input-left-icon {
1593
- position: absolute;
1594
- top: 6px;
1595
- left: 4px;
1922
+ .bk-select .bk-popover-content {
1923
+ padding: 0;
1596
1924
  }
1597
1925
  .bk-select.is-focus .bk-select-trigger .bk-select-input {
1598
1926
  border-color: #3a84ff;
@@ -1666,17 +1994,50 @@
1666
1994
  .bk-select .bk-select-trigger .clear-icon:hover {
1667
1995
  color: #979ba5;
1668
1996
  }
1997
+ .bk-select .bk-select-dropdown .bk-select-search {
1998
+ position: relative;
1999
+ padding: 0 5px;
2000
+ }
2001
+ .bk-select .bk-select-dropdown .bk-select-search-icon {
2002
+ position: absolute;
2003
+ top: 50%;
2004
+ left: 8px;
2005
+ font-size: 16px;
2006
+ color: #979ba5;
2007
+ transform: translateY(-50%);
2008
+ }
2009
+ .bk-select .bk-select-dropdown .bk-select-search-input {
2010
+ width: 100%;
2011
+ height: 32px;
2012
+ padding: 0 10px 0 26px;
2013
+ font-size: 12px;
2014
+ cursor: text;
2015
+ border: none;
2016
+ border-bottom: 1px solid #dcdee5;
2017
+ outline: 0;
2018
+ }
2019
+ .bk-select .bk-select-empty {
2020
+ height: 32px;
2021
+ font-size: 12px;
2022
+ line-height: 32px;
2023
+ color: #63656e;
2024
+ text-align: center;
2025
+ user-select: none;
2026
+ }
2027
+ .bk-select .bk-select-options {
2028
+ padding: 6px 0;
2029
+ }
1669
2030
  .bk-select .bk-select-option {
1670
2031
  height: 32px;
1671
- padding: 0 16px;
1672
- margin: 0 -8px;
1673
- font-weight: normal;
2032
+ padding: 0 10px;
1674
2033
  line-height: 32px;
1675
2034
  color: #63656e;
1676
2035
  text-align: left;
1677
- list-style: none;
1678
2036
  cursor: pointer;
1679
2037
  user-select: none;
2038
+ overflow: hidden;
2039
+ text-overflow: ellipsis;
2040
+ white-space: nowrap;
1680
2041
  }
1681
2042
  .bk-select .bk-select-option:hover {
1682
2043
  color: #3a84ff;
@@ -1698,6 +2059,14 @@
1698
2059
  cursor: not-allowed;
1699
2060
  background-color: transparent;
1700
2061
  }
2062
+ .bk-select .bk-option-group-label {
2063
+ height: 32px;
2064
+ margin: 0 10px;
2065
+ line-height: 32px;
2066
+ color: #979ba5;
2067
+ text-align: left;
2068
+ border-bottom: 1px solid #dcdee5;
2069
+ }
1701
2070
  .bk-modal-wrapper.bk-sideslider-wrapper {
1702
2071
  position: fixed;
1703
2072
  top: 0;
@@ -2025,6 +2394,89 @@
2025
2394
  cursor: pointer;
2026
2395
  opacity: 0;
2027
2396
  }
2397
+ .bk-table .bk-table-body {
2398
+ height: 500px;
2399
+ overflow: auto;
2400
+ background: white;
2401
+ }
2402
+ .bk-table .bk-table-body table {
2403
+ width: 100%;
2404
+ border-collapse: collapse;
2405
+ }
2406
+ .bk-table .bk-table-body table .cell {
2407
+ height: 40px;
2408
+ padding: 0 15px;
2409
+ overflow: hidden;
2410
+ line-height: 40px;
2411
+ text-overflow: ellipsis;
2412
+ white-space: nowrap;
2413
+ }
2414
+ .bk-table .bk-table-body table th,
2415
+ .bk-table .bk-table-body table td {
2416
+ min-width: 80px;
2417
+ border-bottom: 1px solid #dfe0e5;
2418
+ }
2419
+ .bk-table .bk-table-body table thead th {
2420
+ position: sticky;
2421
+ top: 0;
2422
+ z-index: 1;
2423
+ background-color: #fff;
2424
+ }
2425
+ .bk-table .bk-table-body table thead th.active {
2426
+ background: #f0f1f5;
2427
+ }
2428
+ .bk-table .bk-table-body table tbody tr:hover td {
2429
+ background: #f5f7fa;
2430
+ }
2431
+ .bk-table .bk-table-fixed {
2432
+ width: 100%;
2433
+ }
2434
+ .bk-table colgroup col {
2435
+ background: #fff;
2436
+ }
2437
+ .bk-table colgroup col.active {
2438
+ position: relative;
2439
+ background: #f0f1f5;
2440
+ }
2441
+ .bk-form {
2442
+ text-align: left;
2443
+ }
2444
+ .bk-form .bk-form-item {
2445
+ display: flex;
2446
+ margin-bottom: 24px;
2447
+ }
2448
+ .bk-form .bk-form-label {
2449
+ width: 150px;
2450
+ padding-right: 24px;
2451
+ font-size: 14px;
2452
+ font-weight: normal;
2453
+ line-height: 32px;
2454
+ color: #63656e;
2455
+ text-align: right;
2456
+ }
2457
+ .bk-form .bk-form-content {
2458
+ position: relative;
2459
+ line-height: 32px;
2460
+ }
2461
+ .bk-form .bk-form-error {
2462
+ position: absolute;
2463
+ left: 0;
2464
+ padding-top: 4px;
2465
+ font-size: 12px;
2466
+ line-height: 1;
2467
+ color: #ea3636;
2468
+ text-align: left;
2469
+ }
2470
+ .bk-form--vertical .bk-form-item {
2471
+ flex-direction: column;
2472
+ }
2473
+ .bk-form--vertical .bk-form-label {
2474
+ width: auto;
2475
+ text-align: left;
2476
+ }
2477
+ .bk-form--vertical .bk-form-content {
2478
+ text-align: left;
2479
+ }
2028
2480
  * {
2029
2481
  box-sizing: border-box;
2030
2482
  }
@@ -2293,7 +2745,7 @@
2293
2745
  line-height: 20px;
2294
2746
  }
2295
2747
  .bk-steps-small .bk-step .bk-step-number {
2296
- font-size: 1px;
2748
+ font-size: 12px;
2297
2749
  }
2298
2750
  .bk-steps-small .bk-step .bk-icon {
2299
2751
  font-size: 20px;
@@ -2328,8 +2780,16 @@
2328
2780
  }
2329
2781
  .bk-message .bk-message-close {
2330
2782
  padding-left: 20px;
2783
+ margin-right: 0;
2784
+ font-size: 18px;
2331
2785
  cursor: pointer;
2332
2786
  }
2787
+ .bk-message-icon {
2788
+ display: inline-block;
2789
+ margin-right: 10px;
2790
+ font-size: 18px;
2791
+ color: #3a84ff;
2792
+ }
2333
2793
  .bk-message-primary {
2334
2794
  background: #f0f8ff;
2335
2795
  border: 1px solid #e1ecff;
@@ -2338,11 +2798,1220 @@
2338
2798
  background: #fff4e2;
2339
2799
  border: 1px solid #ffe8c3;
2340
2800
  }
2801
+ .bk-message-warning .bk-message-icon {
2802
+ color: #ff9c01;
2803
+ }
2341
2804
  .bk-message-success {
2342
2805
  background: #f2fff4;
2343
2806
  border: 1px solid #dcffe2;
2344
2807
  }
2808
+ .bk-message-success .bk-message-icon {
2809
+ color: #2dcb56;
2810
+ }
2345
2811
  .bk-message-danger {
2346
2812
  background: #ffeded;
2347
2813
  border: 1px solid #ffdddd;
2348
2814
  }
2815
+ .bk-message-danger .bk-message-icon {
2816
+ color: #ea3636;
2817
+ }
2818
+ .bk-notify {
2819
+ position: fixed;
2820
+ display: flex;
2821
+ width: 360px;
2822
+ padding: 24px;
2823
+ font-size: 14px;
2824
+ line-height: 20px;
2825
+ color: #63656e;
2826
+ background: #fff;
2827
+ border: 1px solid #f0f1f5;
2828
+ border-radius: 2px;
2829
+ box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
2830
+ }
2831
+ .bk-notify .bk-notify-icon {
2832
+ position: absolute;
2833
+ top: 22px;
2834
+ margin-right: 5px;
2835
+ font-size: 18px;
2836
+ color: #3a84ff;
2837
+ }
2838
+ .bk-notify.bk-notify-warning .bk-notify-icon {
2839
+ color: #ff9c01;
2840
+ }
2841
+ .bk-notify.bk-notify-success .bk-notify-icon {
2842
+ color: #2dcb56;
2843
+ }
2844
+ .bk-notify.bk-notify-danger .bk-notify-icon {
2845
+ color: #ea3636;
2846
+ }
2847
+ .bk-notify .bk-notify-icon.bk-notify-close {
2848
+ top: 8px;
2849
+ right: 12px;
2850
+ margin-right: 0;
2851
+ font-size: 18px;
2852
+ color: #979ba5;
2853
+ cursor: pointer;
2854
+ }
2855
+ .bk-notify .bk-notify-content-header {
2856
+ display: inline-block;
2857
+ padding-left: 23px;
2858
+ margin-top: 0;
2859
+ margin-bottom: 4px;
2860
+ font-size: 14px;
2861
+ font-weight: 700;
2862
+ }
2863
+ .bk-notify .bk-notify-content-text {
2864
+ display: inline-block;
2865
+ padding-left: 23px;
2866
+ }
2867
+ .bk-tree .bk-tree-node {
2868
+ position: relative;
2869
+ height: var(--lineHeight);
2870
+ padding-left: 0;
2871
+ line-height: var(--lineHeight);
2872
+ cursor: pointer;
2873
+ }
2874
+ .bk-tree .bk-tree-node.is-open::after {
2875
+ position: absolute;
2876
+ top: calc(var(--lineHeight) / 2);
2877
+ left: 0;
2878
+ z-index: 1;
2879
+ width: 0;
2880
+ height: calc(var(--lines) * var(--lineHeight));
2881
+ pointer-events: none;
2882
+ border-left: var(--level-line);
2883
+ content: '';
2884
+ }
2885
+ .bk-tree .bk-tree-node:not(.is-root) {
2886
+ margin-left: calc(var(--depth)*var(--indent));
2887
+ }
2888
+ .bk-tree .bk-tree-node:not(.is-root)::before {
2889
+ position: absolute;
2890
+ top: 50%;
2891
+ left: calc(0px - var(--indent));
2892
+ z-index: 1;
2893
+ width: var(--indent);
2894
+ height: 0;
2895
+ pointer-events: none;
2896
+ border-bottom: var(--level-line);
2897
+ content: '';
2898
+ }
2899
+ .bk-tree .bk-tree-node .bk-tree-icon {
2900
+ margin: 0 6px 0 4px;
2901
+ }
2902
+ .bk-slider {
2903
+ display: flex;
2904
+ flex-direction: row;
2905
+ align-items: center;
2906
+ }
2907
+ .bk-slider .bk-slider-runway {
2908
+ position: relative;
2909
+ width: 100%;
2910
+ height: 4px;
2911
+ vertical-align: middle;
2912
+ cursor: pointer;
2913
+ background: #dcdee5;
2914
+ border-radius: 2px;
2915
+ opacity: 1;
2916
+ }
2917
+ .bk-slider .bk-slider-runway .bk-slider-bar {
2918
+ position: absolute;
2919
+ height: 4px;
2920
+ background: #3a84ff;
2921
+ border-bottom-left-radius: 3px;
2922
+ border-top-left-radius: 3px;
2923
+ }
2924
+ .bk-slider .bk-slider-runway .bk-slider-bar.vertical {
2925
+ width: 4px;
2926
+ }
2927
+ .bk-slider .bk-slider-runway .bk-slider-bar.horizontal {
2928
+ height: 4px;
2929
+ }
2930
+ .bk-slider .bk-slider-runway .disable {
2931
+ background: #979ba5;
2932
+ }
2933
+ .bk-slider .bk-slider-runway .bk-slider-labels {
2934
+ position: relative;
2935
+ }
2936
+ .bk-slider .bk-slider-runway .bk-slider-labels.vertical {
2937
+ left: 18px;
2938
+ display: flex;
2939
+ width: 10px;
2940
+ height: 100%;
2941
+ flex-direction: column;
2942
+ justify-content: space-between;
2943
+ }
2944
+ .bk-slider .bk-slider-runway .bk-slider-labels.horizontal {
2945
+ top: 10px;
2946
+ display: flex;
2947
+ width: 100%;
2948
+ height: 10px;
2949
+ flex-direction: row;
2950
+ justify-content: space-between;
2951
+ }
2952
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label {
2953
+ position: absolute;
2954
+ display: flex;
2955
+ width: 10px;
2956
+ height: 10px;
2957
+ text-align: center;
2958
+ white-space: nowrap;
2959
+ align-items: center;
2960
+ justify-content: center;
2961
+ }
2962
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.vertical {
2963
+ left: 10px;
2964
+ transform: translateY(50%);
2965
+ }
2966
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.horizontal {
2967
+ top: 10px;
2968
+ transform: translateX(-50%);
2969
+ }
2970
+ .bk-slider .bk-slider-interval {
2971
+ position: absolute;
2972
+ width: 4px;
2973
+ height: 4px;
2974
+ background-color: #fff;
2975
+ border-radius: 100%;
2976
+ transform: translateX(-50%);
2977
+ }
2978
+ .bk-slider .bk-slider-interval.vertical {
2979
+ left: 2px;
2980
+ }
2981
+ .bk-slider-input {
2982
+ display: flex;
2983
+ margin: 0 0 0 28px;
2984
+ flex-direction: row;
2985
+ align-items: center;
2986
+ }
2987
+ .bk-slider-input .input-item {
2988
+ width: 92px;
2989
+ }
2990
+ .bk-slider-input .input-center {
2991
+ margin: 0 7px;
2992
+ }
2993
+ .bk-slider-button {
2994
+ position: absolute;
2995
+ z-index: 1001;
2996
+ display: flex;
2997
+ width: 24px;
2998
+ height: 24px;
2999
+ line-height: normal;
3000
+ text-align: center;
3001
+ background-color: transparent;
3002
+ user-select: none;
3003
+ justify-content: center;
3004
+ align-items: center;
3005
+ }
3006
+ .bk-slider-button:hover {
3007
+ cursor: grab;
3008
+ }
3009
+ .bk-slider-button.grabbing {
3010
+ cursor: grabbing;
3011
+ }
3012
+ .bk-slider-button.vertical {
3013
+ left: -10px;
3014
+ transform: translateY(50%);
3015
+ }
3016
+ .bk-slider-button.horizontal {
3017
+ top: -10px;
3018
+ transform: translateX(-50%);
3019
+ }
3020
+ .bk-slider-button .slider-button {
3021
+ width: 12px;
3022
+ height: 12px;
3023
+ background-color: #fff;
3024
+ border: 2px solid #3a84ff;
3025
+ border-radius: 50%;
3026
+ transition: 0.2s;
3027
+ user-select: none;
3028
+ }
3029
+ .bk-slider-button .slider-button-disable {
3030
+ border: 2px solid #979ba5;
3031
+ }
3032
+ .bk-slider-button .slider-button:hover {
3033
+ box-shadow: 0px 0px 0px 4px rgba(58, 132, 255, 0.3);
3034
+ }
3035
+ .bk-slider-button .slider-button:focus {
3036
+ box-shadow: 0px 0px 10px 0px rgba(58, 132, 255, 0.9);
3037
+ }
3038
+ .bk-slider-button .slider-button-label {
3039
+ position: absolute;
3040
+ display: flex;
3041
+ text-align: center;
3042
+ align-items: center;
3043
+ justify-content: center;
3044
+ }
3045
+ .bk-slider-button .slider-button-label.vertical {
3046
+ left: 28px;
3047
+ }
3048
+ .bk-slider-button .slider-button-label.horizontal {
3049
+ top: 20px;
3050
+ }
3051
+ @keyframes loading-scale-animate {
3052
+ 0% {
3053
+ transform: scale(1);
3054
+ }
3055
+ 100% {
3056
+ transform: scale(0.6);
3057
+ }
3058
+ }
3059
+ @keyframes fade {
3060
+ 100% {
3061
+ background-color: transparent;
3062
+ }
3063
+ }
3064
+ .bk-fade-transtion .bk-fade-enter-active,
3065
+ .bk-fade-transtion .bk-fade-leave-active {
3066
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
3067
+ }
3068
+ .bk-fade-transtion .bk-fade-enter,
3069
+ .bk-fade-transtion .bk-fade-leave-to {
3070
+ opacity: 0;
3071
+ }
3072
+ .collapse {
3073
+ width: 60px;
3074
+ }
3075
+ .open {
3076
+ background: #151d2c;
3077
+ }
3078
+ .bk-menu {
3079
+ display: flex;
3080
+ width: 260px;
3081
+ background-color: #182132;
3082
+ flex-direction: column;
3083
+ transition: width 0.3s ease-out;
3084
+ }
3085
+ .bk-menu.is-collapse {
3086
+ width: 60px;
3087
+ }
3088
+ .bk-menu-submenu {
3089
+ display: flex;
3090
+ flex-direction: column;
3091
+ overflow: hidden;
3092
+ text-overflow: clip;
3093
+ white-space: nowrap;
3094
+ align-items: center;
3095
+ transition: width 0.3s ease-out;
3096
+ }
3097
+ .bk-menu-submenu.is-opened {
3098
+ background: #151d2c;
3099
+ }
3100
+ .bk-menu-submenu:hover {
3101
+ color: white;
3102
+ cursor: pointer;
3103
+ }
3104
+ .bk-menu-submenu .submenu-header {
3105
+ display: flex;
3106
+ width: 100%;
3107
+ height: 40px;
3108
+ align-items: center;
3109
+ }
3110
+ .bk-menu-submenu .submenu-header.is-collapse {
3111
+ color: white;
3112
+ background: linear-gradient(90deg, #3f87ff 0%, #3a84ff 100%);
3113
+ }
3114
+ .bk-menu-submenu .submenu-header-icon {
3115
+ display: flex;
3116
+ height: 100%;
3117
+ font-size: 18px;
3118
+ flex: 0 0 60px;
3119
+ align-items: center;
3120
+ justify-content: center;
3121
+ }
3122
+ .bk-menu-submenu .submenu-header-icon .menu-icon {
3123
+ display: flex;
3124
+ width: 16px;
3125
+ height: 16px;
3126
+ font-size: 16px;
3127
+ align-items: center;
3128
+ justify-content: center;
3129
+ color: #b0bdd5;
3130
+ }
3131
+ .bk-menu-submenu .submenu-header-content {
3132
+ display: flex;
3133
+ height: 100%;
3134
+ align-items: center;
3135
+ flex: 1;
3136
+ color: #acb9d1;
3137
+ }
3138
+ .bk-menu-submenu .submenu-header-collapse {
3139
+ display: flex;
3140
+ width: 16px;
3141
+ height: 16px;
3142
+ font-size: 16px;
3143
+ align-items: center;
3144
+ justify-content: center;
3145
+ margin-right: 16px;
3146
+ color: #acb9d1;
3147
+ transform: rotate(-90deg);
3148
+ transition: transform 0.3s ease-out;
3149
+ }
3150
+ .bk-menu-submenu .submenu-header-collapse.is-collapse {
3151
+ transform: rotate(0deg);
3152
+ }
3153
+ .bk-menu-submenu .submenu-list {
3154
+ display: flex;
3155
+ width: 100%;
3156
+ padding: 0;
3157
+ margin: 0;
3158
+ flex-direction: column;
3159
+ flex: 1;
3160
+ /* stylelint-disable-next-line declaration-no-important */
3161
+ transition-property: all !important;
3162
+ }
3163
+ .bk-menu-item {
3164
+ display: flex;
3165
+ width: 100%;
3166
+ height: 40px;
3167
+ min-height: 40px;
3168
+ margin: 2px 0;
3169
+ overflow: hidden;
3170
+ font-size: 14px;
3171
+ color: #96a2b9;
3172
+ text-overflow: clip;
3173
+ white-space: nowrap;
3174
+ align-items: center;
3175
+ transition: width 0.3s ease-in-out;
3176
+ }
3177
+ .bk-menu-item:hover {
3178
+ color: white;
3179
+ cursor: pointer;
3180
+ }
3181
+ .bk-menu-item.is-active {
3182
+ color: white;
3183
+ background: linear-gradient(90deg, #3f87ff 0%, #3a84ff 100%);
3184
+ }
3185
+ .bk-menu-item .item-icon {
3186
+ display: flex;
3187
+ height: 100%;
3188
+ font-size: 18px;
3189
+ flex: 0 0 60px;
3190
+ align-items: center;
3191
+ justify-content: center;
3192
+ }
3193
+ .bk-menu-item .item-icon .default-icon {
3194
+ display: inline-block;
3195
+ width: 3px;
3196
+ height: 3px;
3197
+ background: #63656e;
3198
+ background-color: white;
3199
+ border-radius: 50%;
3200
+ }
3201
+ .bk-menu-item .item-content {
3202
+ display: flex;
3203
+ height: 100%;
3204
+ align-items: center;
3205
+ flex: 1;
3206
+ }
3207
+ .bk-menu-group {
3208
+ display: flex;
3209
+ flex-direction: column;
3210
+ }
3211
+ .bk-menu-group .group-name {
3212
+ display: flex;
3213
+ height: 40px;
3214
+ margin: 0 18px;
3215
+ overflow: hidden;
3216
+ font-size: 12px;
3217
+ line-height: 16px;
3218
+ color: #63656e;
3219
+ text-overflow: clip;
3220
+ white-space: nowrap;
3221
+ flex-wrap: nowrap;
3222
+ align-items: center;
3223
+ }
3224
+ .bk-menu-group .group-wrap {
3225
+ display: flex;
3226
+ flex-direction: column;
3227
+ padding: 0;
3228
+ margin: 0;
3229
+ }
3230
+ .bk-menu .collapse-transition {
3231
+ transition: all 0.3s ease-in-out;
3232
+ }
3233
+ .bk-navigation {
3234
+ display: flex;
3235
+ flex-direction: column;
3236
+ width: 100%;
3237
+ height: 100%;
3238
+ }
3239
+ .bk-navigation-title {
3240
+ display: flex;
3241
+ height: 100%;
3242
+ padding: 0 16px;
3243
+ overflow: hidden;
3244
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
3245
+ align-items: center;
3246
+ justify-content: flex-start;
3247
+ flex: 0 0 260px;
3248
+ }
3249
+ .bk-navigation-title .title-icon {
3250
+ display: flex;
3251
+ font-size: 28px;
3252
+ color: #768197;
3253
+ flex: 0 0 28px;
3254
+ align-items: center;
3255
+ justify-content: center;
3256
+ }
3257
+ .bk-navigation-title .title-desc {
3258
+ display: inline-block;
3259
+ margin-left: 16px;
3260
+ overflow: hidden;
3261
+ font-size: 16px;
3262
+ font-weight: bold;
3263
+ line-height: 24px;
3264
+ color: #96a2b9;
3265
+ white-space: nowrap;
3266
+ }
3267
+ .bk-navigation-header {
3268
+ flex: 0 0 52px;
3269
+ display: flex;
3270
+ align-items: center;
3271
+ padding-right: 24px;
3272
+ overflow: hidden;
3273
+ background: #182132;
3274
+ }
3275
+ .bk-navigation-header .header-right {
3276
+ display: flex;
3277
+ height: 100%;
3278
+ flex: 1;
3279
+ align-items: center;
3280
+ }
3281
+ .bk-navigation-wrapper {
3282
+ position: relative;
3283
+ display: flex;
3284
+ flex-direction: row;
3285
+ flex: 1;
3286
+ }
3287
+ .bk-navigation-wrapper .navigation-nav {
3288
+ position: relative;
3289
+ z-index: 101;
3290
+ display: flex;
3291
+ width: 60px;
3292
+ min-width: 0;
3293
+ min-height: 0;
3294
+ overflow: visible;
3295
+ transition: width cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3296
+ flex: 0 1 auto;
3297
+ flex-direction: column;
3298
+ }
3299
+ .bk-navigation-wrapper .navigation-nav:hover {
3300
+ cursor: pointer;
3301
+ }
3302
+ .bk-navigation-wrapper .navigation-nav .nav-slider {
3303
+ display: flex;
3304
+ width: 60px;
3305
+ height: 100%;
3306
+ background-color: #182132;
3307
+ transition: width cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3308
+ flex: 1;
3309
+ flex-direction: column;
3310
+ }
3311
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list {
3312
+ max-height: calc(100vh - 100px);
3313
+ padding: 12px 0 4px 0;
3314
+ margin: 0;
3315
+ overflow: auto;
3316
+ flex: 1 1 auto;
3317
+ }
3318
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar {
3319
+ display: none;
3320
+ width: 6px;
3321
+ height: 5px;
3322
+ }
3323
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar:hover {
3324
+ transform: none;
3325
+ transition: opacity 340ms ease-out;
3326
+ }
3327
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer {
3328
+ display: flex;
3329
+ padding-left: 14px;
3330
+ flex: 0 0 56px;
3331
+ align-items: center;
3332
+ justify-content: flex-start;
3333
+ }
3334
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon {
3335
+ display: flex;
3336
+ width: 32px;
3337
+ height: 32px;
3338
+ font-size: 14px;
3339
+ color: #63656e;
3340
+ border-radius: 100%;
3341
+ align-items: center;
3342
+ justify-content: center;
3343
+ transform-origin: center center;
3344
+ }
3345
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon-svg {
3346
+ display: flex;
3347
+ width: 16px;
3348
+ height: 16px;
3349
+ font-size: 16px;
3350
+ transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3351
+ align-items: center;
3352
+ justify-content: center;
3353
+ transform-origin: center center;
3354
+ }
3355
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left {
3356
+ color: #96a2b9;
3357
+ }
3358
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left:hover {
3359
+ color: #d3d9e4;
3360
+ cursor: pointer;
3361
+ background: linear-gradient(270deg, #253047 0%, #263247 100%);
3362
+ }
3363
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon:hover {
3364
+ color: #3a3c42;
3365
+ cursor: pointer;
3366
+ background: linear-gradient(270deg, #dee0ea 0%, #eaecf2 100%);
3367
+ }
3368
+ .bk-navigation-wrapper .navigation-container {
3369
+ position: relative;
3370
+ display: flex;
3371
+ max-width: calc(100vw - 60px);
3372
+ min-width: 0;
3373
+ min-height: 0;
3374
+ flex: 1 1 1px;
3375
+ flex-direction: column;
3376
+ }
3377
+ .bk-navigation-wrapper .navigation-container .container-header {
3378
+ z-index: 100;
3379
+ display: flex;
3380
+ width: 100%;
3381
+ height: 60px;
3382
+ padding: 0 24px;
3383
+ background: #fff;
3384
+ border-bottom: 1px solid #dcdee5;
3385
+ box-shadow: 0px 3px 4px 0px rgba(64, 112, 203, 0.06);
3386
+ flex-basis: 60px;
3387
+ flex-direction: row;
3388
+ align-items: center;
3389
+ justify-content: flex-end;
3390
+ }
3391
+ .bk-navigation-wrapper .navigation-container .container-header-title {
3392
+ height: 21px;
3393
+ font-size: 16px;
3394
+ line-height: 21px;
3395
+ color: #313238;
3396
+ }
3397
+ .bk-navigation-wrapper .navigation-container .container-header-sets {
3398
+ display: flex;
3399
+ flex: 1 1 auto;
3400
+ align-items: center;
3401
+ justify-content: flex-end;
3402
+ }
3403
+ .bk-navigation-wrapper .navigation-container .container-content {
3404
+ max-height: calc(100vh - 60px);
3405
+ padding: 20px 24px 0;
3406
+ overflow: auto;
3407
+ background: #f5f7fa;
3408
+ flex: 1;
3409
+ }
3410
+ .bk-navigation-wrapper .navigation-container .container-footer {
3411
+ display: flex;
3412
+ flex: 0 0 auto;
3413
+ flex-direction: row;
3414
+ align-items: center;
3415
+ justify-content: center;
3416
+ }
3417
+ .bk-date-picker {
3418
+ display: inline-block;
3419
+ width: 261px;
3420
+ line-height: normal;
3421
+ }
3422
+ .bk-date-picker.long {
3423
+ width: 342px;
3424
+ }
3425
+ .bk-date-picker.medium-width {
3426
+ width: 362px;
3427
+ }
3428
+ .bk-date-picker.large-width {
3429
+ width: 402px;
3430
+ }
3431
+ .bk-date-picker-rel {
3432
+ position: relative;
3433
+ }
3434
+ .bk-date-picker-rel .bk-date-picker-editor {
3435
+ display: block;
3436
+ width: 100%;
3437
+ height: 32px;
3438
+ padding: 0 10px 0 30px;
3439
+ font-size: 12px;
3440
+ line-height: 32px;
3441
+ color: #63656e;
3442
+ cursor: pointer;
3443
+ border: 1px solid #c4c6cc;
3444
+ border-radius: 2px;
3445
+ outline: none;
3446
+ }
3447
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border {
3448
+ border-color: transparent transparent #c4c6cc transparent;
3449
+ }
3450
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border:focus {
3451
+ border-color: transparent transparent #3a84ff transparent;
3452
+ box-shadow: none;
3453
+ }
3454
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border[disabled],
3455
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border.readonly {
3456
+ border-color: transparent transparent #dcdee5 transparent;
3457
+ }
3458
+ .bk-date-picker-rel .bk-date-picker-editor:focus {
3459
+ border: 1px solid #3a84ff;
3460
+ }
3461
+ .bk-date-picker-rel .bk-date-picker-editor::placeholder {
3462
+ color: #c4c6cc;
3463
+ }
3464
+ .bk-date-picker-rel .bk-date-picker-editor[disabled] {
3465
+ color: #c4c6cc;
3466
+ cursor: not-allowed;
3467
+ background-color: #fafbfd;
3468
+ border-color: #c4c6cc;
3469
+ }
3470
+ .bk-date-picker-rel .bk-date-picker-editor.readonly {
3471
+ background-color: #fafbfd;
3472
+ border-color: #c4c6cc;
3473
+ }
3474
+ .bk-date-picker-rel .bk-date-picker-editor.medium-font {
3475
+ font-size: 14px;
3476
+ }
3477
+ .bk-date-picker-rel .bk-date-picker-editor.large-font {
3478
+ font-size: 16px;
3479
+ }
3480
+ .bk-date-picker-rel .clear-action {
3481
+ position: absolute;
3482
+ top: 50%;
3483
+ right: 10px;
3484
+ font-size: 14px;
3485
+ color: #c4c6cc;
3486
+ cursor: pointer;
3487
+ transform: translateY(-50%);
3488
+ }
3489
+ .bk-date-picker-rel .clear-action:hover {
3490
+ color: #979ba5;
3491
+ }
3492
+ .bk-date-picker-rel .icon-wrapper {
3493
+ position: absolute;
3494
+ top: 0;
3495
+ left: 0;
3496
+ display: inline-block;
3497
+ width: 32px;
3498
+ height: 32px;
3499
+ color: #c4c6cc;
3500
+ cursor: pointer;
3501
+ background-color: transparent;
3502
+ }
3503
+ .bk-date-picker-rel .icon-wrapper.disabled {
3504
+ cursor: not-allowed;
3505
+ }
3506
+ .bk-date-picker-rel .icon-wrapper i.icon-clock {
3507
+ position: absolute;
3508
+ top: 50%;
3509
+ left: 50%;
3510
+ transform: translate(-50%, -50%);
3511
+ }
3512
+ .bk-date-picker-rel .icon-wrapper .picker-icon {
3513
+ position: absolute;
3514
+ top: 50%;
3515
+ left: 50%;
3516
+ width: 18px;
3517
+ height: 18px;
3518
+ transform: translate(-50%, -50%);
3519
+ }
3520
+ .bk-date-picker-dropdown {
3521
+ position: absolute;
3522
+ z-index: 900;
3523
+ padding: 5px 0 0 0;
3524
+ overflow: auto;
3525
+ background-color: #fff;
3526
+ border: 1px solid #dcdee5;
3527
+ border-radius: 2px;
3528
+ box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
3529
+ box-sizing: border-box;
3530
+ }
3531
+ .bk-date-picker .bk-select-dropdown {
3532
+ max-height: none;
3533
+ padding: 0;
3534
+ overflow: visible;
3535
+ }
3536
+ .bk-date-picker-footer-wrapper {
3537
+ clear: both;
3538
+ font-size: 14px;
3539
+ color: #979ba5;
3540
+ background-color: #fafbfd;
3541
+ border-top: 1px solid #dcdee5;
3542
+ }
3543
+ .bk-picker-panel-body-wrapper.bk-picker-panel-with-sidebar {
3544
+ padding-right: 140px;
3545
+ }
3546
+ .bk-picker-panel-body-wrapper .bk-picker-panel-sidebar {
3547
+ position: absolute;
3548
+ top: 0;
3549
+ right: 0;
3550
+ bottom: 0;
3551
+ width: 140px;
3552
+ padding: 12px 0;
3553
+ overflow: auto;
3554
+ font-size: 14px;
3555
+ color: #3a84ff;
3556
+ background-color: #fafbfd;
3557
+ border-left: 1px solid #dcdee5;
3558
+ }
3559
+ .bk-picker-panel-body-wrapper .bk-picker-panel-sidebar .bk-picker-panel-shortcut {
3560
+ /* &:nth-of-type(1) {
3561
+ padding-top: 18px;
3562
+ }
3563
+ &:last-child {
3564
+ padding-bottom: 18px;
3565
+ } */
3566
+ padding: 6px 21px;
3567
+ overflow: hidden;
3568
+ text-overflow: ellipsis;
3569
+ white-space: nowrap;
3570
+ cursor: pointer;
3571
+ }
3572
+ .bk-picker-panel-body-wrapper .bk-picker-panel-sidebar .bk-picker-panel-shortcut:hover {
3573
+ background-color: #e1ecff;
3574
+ }
3575
+ .bk-picker-panel-body-wrapper .bk-picker-panel-body {
3576
+ float: left;
3577
+ }
3578
+ .bk-picker-panel-body-wrapper .bk-date-picker-header {
3579
+ height: 46px;
3580
+ font-size: 14px;
3581
+ font-weight: 700;
3582
+ line-height: 46px;
3583
+ color: #63656e;
3584
+ text-align: center;
3585
+ border-bottom: 1px solid #dcdee5;
3586
+ }
3587
+ .bk-picker-panel-body-wrapper .bk-date-picker-header .bk-date-picker-header-label {
3588
+ cursor: pointer;
3589
+ }
3590
+ .bk-picker-panel-body-wrapper .bk-date-picker-header .bk-date-picker-header-label:hover {
3591
+ color: #3a84ff;
3592
+ }
3593
+ .bk-picker-panel-body-wrapper .bk-date-picker-header .up-to-now {
3594
+ margin-left: 3px;
3595
+ font-weight: 400;
3596
+ cursor: pointer;
3597
+ }
3598
+ .bk-picker-panel-body-wrapper .bk-date-picker-header .up-to-now.disabled {
3599
+ color: #c4c6cc;
3600
+ cursor: not-allowed;
3601
+ }
3602
+ .bk-date-picker-cells {
3603
+ margin: 9px;
3604
+ font-size: 12px;
3605
+ color: #63656e;
3606
+ white-space: normal;
3607
+ }
3608
+ .bk-date-picker-cells span {
3609
+ display: inline-block;
3610
+ width: 34px;
3611
+ height: 32px;
3612
+ line-height: 32px;
3613
+ text-align: center;
3614
+ }
3615
+ .bk-date-picker-cells span em {
3616
+ display: inline-block;
3617
+ width: 34px;
3618
+ height: 32px;
3619
+ font-style: normal;
3620
+ line-height: 32px;
3621
+ cursor: pointer;
3622
+ }
3623
+ .bk-date-picker-cells .bk-date-picker-cells-header {
3624
+ text-align: center;
3625
+ }
3626
+ .bk-date-picker-cells .bk-date-picker-cells-header span {
3627
+ width: 28px;
3628
+ height: 26px;
3629
+ margin: 3px;
3630
+ line-height: 26px;
3631
+ color: #63656e;
3632
+ text-align: center;
3633
+ cursor: default;
3634
+ }
3635
+ .bk-date-picker-cells-cell:hover em {
3636
+ /* background-color: #e1ecff; */
3637
+ background-color: #f0f1f5;
3638
+ }
3639
+ .bk-date-picker-cells-focused em {
3640
+ color: #3a84ff;
3641
+ box-shadow: 0 0 0 1px #a3c5fd inset;
3642
+ }
3643
+ .bk-date-picker-cells-cell-prev-month em,
3644
+ .bk-date-picker-cells-cell-next-month em {
3645
+ color: #c4c6cc;
3646
+ }
3647
+ .bk-date-picker-cells-cell-prev-month:hover em,
3648
+ .bk-date-picker-cells-cell-next-month:hover em {
3649
+ background: transparent;
3650
+ }
3651
+ span.bk-date-picker-cells-cell-week-label,
3652
+ span.bk-date-picker-cells-cell-week-label:hover,
3653
+ span.bk-date-picker-cells-cell-disabled,
3654
+ span.bk-date-picker-cells-cell-disabled:hover {
3655
+ color: #c4c6cc;
3656
+ cursor: not-allowed;
3657
+ }
3658
+ span.bk-date-picker-cells-cell-week-label em,
3659
+ span.bk-date-picker-cells-cell-week-label:hover em,
3660
+ span.bk-date-picker-cells-cell-disabled em,
3661
+ span.bk-date-picker-cells-cell-disabled:hover em {
3662
+ color: inherit;
3663
+ cursor: not-allowed;
3664
+ background: inherit;
3665
+ }
3666
+ span.bk-date-picker-cells-cell-disabled,
3667
+ span.bk-date-picker-cells-cell-disabled:hover {
3668
+ background-color: #f0f1f5;
3669
+ }
3670
+ .bk-date-picker-cells-cell-today em {
3671
+ position: relative;
3672
+ color: #3a84ff;
3673
+ box-shadow: 0 0 0 1px #a3c5fd inset;
3674
+ }
3675
+ .bk-date-picker-cells-cell-range {
3676
+ position: relative;
3677
+ }
3678
+ .bk-date-picker-cells-cell-range:before {
3679
+ position: absolute;
3680
+ top: 0;
3681
+ right: 0;
3682
+ bottom: 0;
3683
+ left: 0;
3684
+ display: block;
3685
+ background: #e1ecff;
3686
+ border: 0;
3687
+ border-radius: 0;
3688
+ content: '';
3689
+ }
3690
+ .bk-date-picker-cells-cell-range em {
3691
+ position: relative;
3692
+ z-index: 1;
3693
+ }
3694
+ .bk-date-picker-cells-cell-selected em,
3695
+ .bk-date-picker-cells-cell-selected:hover em {
3696
+ color: #fff;
3697
+ background-color: #3a84ff;
3698
+ box-shadow: 0 0 0 1px #3a84ff inset;
3699
+ }
3700
+ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em {
3701
+ color: #f7f7f7;
3702
+ background: #c4c6cc;
3703
+ }
3704
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:after {
3705
+ background: #fff;
3706
+ }
3707
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em,
3708
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:hover {
3709
+ box-shadow: 0 0 0 1px #3a84ff inset;
3710
+ }
3711
+ .bk-date-picker-cells-year,
3712
+ .bk-date-picker-cells-month {
3713
+ margin-top: 7px;
3714
+ }
3715
+ .bk-date-picker-cells-year span,
3716
+ .bk-date-picker-cells-month span {
3717
+ width: 36px;
3718
+ height: 32px;
3719
+ margin: 10px 12px;
3720
+ line-height: 32px;
3721
+ text-align: center;
3722
+ border-radius: 3px;
3723
+ }
3724
+ .bk-date-picker-cells-year span em,
3725
+ .bk-date-picker-cells-month span em {
3726
+ width: 36px;
3727
+ height: 32px;
3728
+ line-height: 32px;
3729
+ text-align: center;
3730
+ }
3731
+ .bk-picker-panel-icon-btn {
3732
+ display: inline-block;
3733
+ width: 20px;
3734
+ height: 46px;
3735
+ line-height: 44px;
3736
+ color: #979ba5;
3737
+ text-align: center;
3738
+ cursor: pointer;
3739
+ transition: color 0.2s ease-in-out;
3740
+ }
3741
+ .bk-picker-panel-icon-btn:hover {
3742
+ color: #2d8cf0;
3743
+ }
3744
+ .bk-picker-panel-icon-btn i {
3745
+ font-size: 20px;
3746
+ }
3747
+ .bk-date-picker-prev-btn {
3748
+ float: left;
3749
+ }
3750
+ .bk-date-picker-prev-btn-arrow-double {
3751
+ margin-left: 10px;
3752
+ }
3753
+ .bk-date-picker-prev-btn-arrow-double i:after {
3754
+ margin-left: -8px;
3755
+ }
3756
+ .bk-date-picker-next-btn {
3757
+ float: right;
3758
+ }
3759
+ .bk-date-picker-next-btn-arrow-double {
3760
+ margin-right: 10px;
3761
+ }
3762
+ .bk-date-picker-next-btn-arrow-double i:after {
3763
+ margin-left: -8px;
3764
+ }
3765
+ .bk-date-picker-with-range .bk-picker-panel-body {
3766
+ min-width: 532px;
3767
+ }
3768
+ .bk-date-picker-with-range .bk-picker-panel-content {
3769
+ float: left;
3770
+ }
3771
+ .bk-date-picker-with-range .bk-picker-cells-show-week-numbers {
3772
+ min-width: 492px;
3773
+ }
3774
+ .bk-fade-down-transition-enter-from,
3775
+ .bk-fade-down-transition-leave-to {
3776
+ opacity: 0;
3777
+ transform: translateY(-20px);
3778
+ }
3779
+ .bk-fade-down-transition-enter-to,
3780
+ .bk-fade-down-transition-leave-from {
3781
+ opacity: 1;
3782
+ transform: translateY(0);
3783
+ }
3784
+ .bk-fade-down-transition-enter-active {
3785
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3786
+ }
3787
+ .bk-fade-down-transition-leave-active {
3788
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3789
+ }
3790
+ .bk-divider {
3791
+ position: relative;
3792
+ background: #c4c6cc;
3793
+ }
3794
+ .bk-divider-horizontal {
3795
+ width: 100%;
3796
+ height: 1px;
3797
+ margin: 1em 0;
3798
+ }
3799
+ .bk-divider-info {
3800
+ position: absolute;
3801
+ top: 50%;
3802
+ padding: 0 1.4em;
3803
+ color: #63656e;
3804
+ background-color: white;
3805
+ transform: translateY(-50%);
3806
+ }
3807
+ .bk-divider-info-center {
3808
+ left: 50%;
3809
+ transform: translateX(-50%) translateY(-50%);
3810
+ }
3811
+ .bk-divider-info .bk-divider-horizontal-left {
3812
+ left: 2em;
3813
+ }
3814
+ .bk-divider-info .bk-divider-horizontal-right {
3815
+ right: 2em;
3816
+ }
3817
+ .bk-divider-vertical .bk-divider-info {
3818
+ padding: 20px 0;
3819
+ }
3820
+ .bk-divider-vertical {
3821
+ display: inline-block;
3822
+ width: 1px;
3823
+ height: 100%;
3824
+ min-height: 1em;
3825
+ margin: 0 8px;
3826
+ vertical-align: middle;
3827
+ }
3828
+ .bk-tab {
3829
+ position: relative;
3830
+ display: flex;
3831
+ width: 100%;
3832
+ }
3833
+ .bk-tab--top {
3834
+ flex-direction: column;
3835
+ }
3836
+ .bk-tab--right {
3837
+ flex-direction: row-reverse;
3838
+ }
3839
+ .bk-tab-header {
3840
+ display: flex;
3841
+ color: #63656e;
3842
+ }
3843
+ .bk-tab-header > div {
3844
+ display: flex;
3845
+ margin-bottom: -1px;
3846
+ flex-wrap: nowrap;
3847
+ }
3848
+ .bk-tab--card .bk-tab-header > div,
3849
+ .bk-tab--border-card .bk-tab-header > div {
3850
+ border-right: 1px solid #dcdee5;
3851
+ }
3852
+ .bk-tab--top .bk-tab-header-nav {
3853
+ overflow-x: auto;
3854
+ overflow-y: visible;
3855
+ }
3856
+ .bk-tab--left .bk-tab-header-nav,
3857
+ .bk-tab--right .bk-tab-header-nav {
3858
+ overflow-x: visible;
3859
+ overflow-y: auto;
3860
+ }
3861
+ .bk-tab--card .bk-tab-header-nav,
3862
+ .bk-tab--border-card .bk-tab-header-nav {
3863
+ border-left: 1px solid #dcdee5;
3864
+ }
3865
+ .bk-tab-header-nav::-webkit-scrollbar {
3866
+ display: none;
3867
+ width: 0;
3868
+ height: 0;
3869
+ }
3870
+ .bk-tab-header-operation .bk-tab-header-item {
3871
+ padding: 0 12px;
3872
+ }
3873
+ .bk-tab--left .bk-tab-header {
3874
+ border-right: 1px solid #dcdee5;
3875
+ }
3876
+ .bk-tab--right .bk-tab-header {
3877
+ border-left: 1px solid #dcdee5;
3878
+ }
3879
+ .bk-tab--left .bk-tab-header,
3880
+ .bk-tab--right .bk-tab-header {
3881
+ flex-direction: column;
3882
+ }
3883
+ .bk-tab--left .bk-tab-header > div,
3884
+ .bk-tab--right .bk-tab-header > div {
3885
+ flex-direction: column;
3886
+ }
3887
+ .bk-tab--card .bk-tab-header {
3888
+ border-bottom: 1px solid #dcdee5;
3889
+ }
3890
+ .bk-tab--border-card .bk-tab-header {
3891
+ background: #FAFBFD;
3892
+ border: solid #dcdee5;
3893
+ border-width: 1px 1px 1px 0;
3894
+ }
3895
+ .bk-tab--unborder-card .bk-tab-header {
3896
+ border-bottom: 1px solid #dcdee5;
3897
+ }
3898
+ .bk-tab-header-item {
3899
+ display: flex;
3900
+ white-space: nowrap;
3901
+ cursor: pointer;
3902
+ justify-content: center;
3903
+ align-items: center;
3904
+ }
3905
+ .bk-tab-header-item:hover {
3906
+ color: #3a84ff;
3907
+ }
3908
+ .bk-tab-header-item:hover .bk-tab-header-item-close {
3909
+ display: block;
3910
+ margin-left: 10px;
3911
+ color: #ea3636;
3912
+ }
3913
+ .bk-tab--top .bk-tab-header-item {
3914
+ padding: 0 20px;
3915
+ }
3916
+ .bk-tab--left .bk-tab-header-item,
3917
+ .bk-tab--right .bk-tab-header-item {
3918
+ padding: 0 12px;
3919
+ }
3920
+ .bk-tab--left .bk-tab-header-item {
3921
+ text-align: right;
3922
+ }
3923
+ .bk-tab--card .bk-tab-header-item {
3924
+ border-top: 1px solid #dcdee5;
3925
+ }
3926
+ .bk-tab--card .bk-tab-header-item,
3927
+ .bk-tab--border-card .bk-tab-header-item {
3928
+ border-right: 1px solid #dcdee5;
3929
+ border-bottom: 1px solid #dcdee5;
3930
+ }
3931
+ .bk-tab--card .bk-tab-header-item:last-of-type,
3932
+ .bk-tab--border-card .bk-tab-header-item:last-of-type {
3933
+ border-right: none;
3934
+ }
3935
+ .bk-tab-header-operation .bk-tab-header-item {
3936
+ padding-right: 12px;
3937
+ padding-left: 12px;
3938
+ }
3939
+ .bk-tab-header-item-close {
3940
+ display: none;
3941
+ color: #c4c6cc;
3942
+ }
3943
+ .bk-tab-header--active {
3944
+ color: #3a84ff;
3945
+ }
3946
+ .bk-tab--card .bk-tab-header--active,
3947
+ .bk-tab--border-card .bk-tab-header--active {
3948
+ border-bottom-color: white;
3949
+ }
3950
+ .bk-tab--unborder-card .bk-tab-header--active {
3951
+ border-bottom: 2px solid #3a84ff;
3952
+ }
3953
+ .bk-tab--left .bk-tab-header--active {
3954
+ border-right: 2px solid #3a84ff;
3955
+ }
3956
+ .bk-tab--right .bk-tab-header--active {
3957
+ border-left: 2px solid #3a84ff;
3958
+ }
3959
+ .bk-tab-header--disabled {
3960
+ color: #aaa;
3961
+ pointer-events: none;
3962
+ cursor: not-allowed;
3963
+ }
3964
+ .bk-tab-content {
3965
+ flex: 1;
3966
+ padding: 10px;
3967
+ }
3968
+ .bk-tab--border-card .bk-tab-content {
3969
+ border: solid #dcdee5;
3970
+ border-width: 0 1px 1px;
3971
+ }
3972
+ .bk-tab-panel {
3973
+ height: 100%;
3974
+ }
3975
+ .bk-popper {
3976
+ display: none;
3977
+ padding: 7px 14px;
3978
+ font-size: 12px;
3979
+ color: #fff;
3980
+ background: #333;
3981
+ border-radius: 4px;
3982
+ }
3983
+ .bk-popper.light {
3984
+ color: #63656e;
3985
+ background: #fff;
3986
+ box-shadow: #dcdee5 0px 0px 6px 0px;
3987
+ }
3988
+ .bk-popper .bk-popper-arrow,
3989
+ .bk-popper .bk-popper-arrow::before {
3990
+ position: absolute;
3991
+ width: 8px;
3992
+ height: 8px;
3993
+ background: inherit;
3994
+ }
3995
+ .bk-popper .bk-popper-arrow {
3996
+ visibility: hidden;
3997
+ }
3998
+ .bk-popper .bk-popper-arrow::before {
3999
+ content: '';
4000
+ visibility: visible;
4001
+ transform: rotate(45deg);
4002
+ }
4003
+ .bk-popper[data-show] {
4004
+ display: block;
4005
+ }
4006
+ .bk-popper[data-popper-placement^='top'] > .bk-popper-arrow {
4007
+ bottom: -4px;
4008
+ }
4009
+ .bk-popper[data-popper-placement^='bottom'] > .bk-popper-arrow {
4010
+ top: -4px;
4011
+ }
4012
+ .bk-popper[data-popper-placement^='left'] > .bk-popper-arrow {
4013
+ right: -4px;
4014
+ }
4015
+ .bk-popper[data-popper-placement^='right'] > .bk-popper-arrow {
4016
+ left: -4px;
4017
+ }