bri-components 1.5.14 → 1.5.15

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 (151) hide show
  1. package/README.md +83 -83
  2. package/lib/0.bri-components.min.js +1 -1
  3. package/lib/1.bri-components.min.js +1 -1
  4. package/lib/10.bri-components.min.js +1 -1
  5. package/lib/2.bri-components.min.js +1 -1
  6. package/lib/3.bri-components.min.js +1 -1
  7. package/lib/4.bri-components.min.js +1 -1
  8. package/lib/5.bri-components.min.js +1 -1
  9. package/lib/6.bri-components.min.js +1 -1
  10. package/lib/7.bri-components.min.js +1 -1
  11. package/lib/8.bri-components.min.js +1 -1
  12. package/lib/9.bri-components.min.js +1 -1
  13. package/lib/bri-components.min.js +4 -4
  14. package/lib/styles/bundle.css +12 -12
  15. package/lib/styles/font/fontello.svg +31 -31
  16. package/package.json +125 -125
  17. package/src/components/Error/Error403.vue +42 -42
  18. package/src/components/Error/Error404.vue +40 -40
  19. package/src/components/Error/Error500.vue +51 -51
  20. package/src/components/Error/error.less +162 -162
  21. package/src/components/Error/errorBack.vue +40 -40
  22. package/src/components/controls/DshControlInput.vue +195 -195
  23. package/src/components/controls/base/BriUpload/BriUpload.vue +434 -434
  24. package/src/components/controls/base/BriUpload/BriUploadImage.vue +377 -377
  25. package/src/components/controls/base/BriUpload/uploadList.vue +727 -727
  26. package/src/components/controls/base/BriUpload/uploadMixin.js +446 -446
  27. package/src/components/controls/base/DshCascader/DshCascader.vue +215 -215
  28. package/src/components/controls/base/DshCascader/components/cascaderModal.vue +366 -366
  29. package/src/components/controls/base/DshCascader/components/cascaderPicker.vue +416 -416
  30. package/src/components/controls/base/DshCascader/components/cascaderSimple.vue +141 -141
  31. package/src/components/controls/base/DshCascader/components/cascaderTree.vue +151 -151
  32. package/src/components/controls/base/DshCoordinates.vue +577 -577
  33. package/src/components/controls/base/DshDate/DshDate.vue +191 -191
  34. package/src/components/controls/base/DshDate/DshDaterange.vue +186 -186
  35. package/src/components/controls/base/DshDivider.vue +201 -201
  36. package/src/components/controls/base/DshEditor.vue +274 -274
  37. package/src/components/controls/base/DshInput/BriInputs.vue +166 -166
  38. package/src/components/controls/base/DshInput/DshInput.vue +260 -260
  39. package/src/components/controls/base/DshNumber/BriInputNumber/BriInputNumber.vue +435 -435
  40. package/src/components/controls/base/DshNumber/BriInputNumber/mixins/emitter.js +34 -34
  41. package/src/components/controls/base/DshNumber/BriInputNumber/mixins/form.js +14 -14
  42. package/src/components/controls/base/DshNumber/BriInputNumber/utils/assist.js +322 -322
  43. package/src/components/controls/base/DshNumber/DshNumber.vue +143 -143
  44. package/src/components/controls/base/DshNumber/DshNumberange.vue +109 -109
  45. package/src/components/controls/base/DshSelect/DshCheckbox.vue +168 -168
  46. package/src/components/controls/base/DshSelect/DshSelect.vue +180 -180
  47. package/src/components/controls/base/DshSwitch/DshSwitch.vue +115 -115
  48. package/src/components/controls/control.less +324 -324
  49. package/src/components/controls/controlMap.js +114 -114
  50. package/src/components/controls/extra/DshColor.vue +81 -81
  51. package/src/components/controls/extra/DshThemeColor.vue +100 -100
  52. package/src/components/controls/extra/DshThemeIcon.vue +122 -122
  53. package/src/components/controls/mixins/cascaderMixin.js +325 -325
  54. package/src/components/controls/mixins/cascaderPickerMixin.js +227 -227
  55. package/src/components/controls/mixins/cascaderTableMixin.js +130 -130
  56. package/src/components/controls/mixins/controlMixin.js +393 -393
  57. package/src/components/controls/mixins/dateMixin.js +149 -149
  58. package/src/components/controls/mixins/flatTableMixin.js +111 -111
  59. package/src/components/controls/mixins/numberMixin.js +112 -112
  60. package/src/components/controls/mixins/selectMixin.js +233 -233
  61. package/src/components/controls/mixins/switchMixin.js +87 -87
  62. package/src/components/controls/mixins/userAndDepartMixin.js +260 -260
  63. package/src/components/controls/senior/DshLabels.vue +333 -333
  64. package/src/components/controls/senior/DshPackage.vue +57 -57
  65. package/src/components/controls/senior/cascaderTable.vue +213 -213
  66. package/src/components/controls/senior/flatTable.vue +138 -138
  67. package/src/components/controls/senior/selectDepartments.vue +399 -399
  68. package/src/components/controls/senior/selectUsers/departMenu.vue +293 -293
  69. package/src/components/controls/senior/selectUsers/selectUsers.vue +712 -712
  70. package/src/components/controls/special/DshBack.vue +42 -42
  71. package/src/components/controls/special/DshUndeveloped.vue +41 -41
  72. package/src/components/form/DshAdvSearch.vue +510 -510
  73. package/src/components/form/DshDefaultSearch.vue +260 -260
  74. package/src/components/form/DshForm.vue +494 -494
  75. package/src/components/form/searchMixin.js +376 -376
  76. package/src/components/list/BriCard.vue +95 -95
  77. package/src/components/list/BriTable.vue +205 -205
  78. package/src/components/list/BriTree.vue +529 -529
  79. package/src/components/list/BriTreeItem.vue +163 -163
  80. package/src/components/list/DshBox/DshBox.vue +219 -219
  81. package/src/components/list/DshBox/DshCard.vue +446 -446
  82. package/src/components/list/DshBox/DshCrossTable.vue +827 -827
  83. package/src/components/list/DshBox/DshList.vue +404 -404
  84. package/src/components/list/DshBox/DshPanel.vue +669 -669
  85. package/src/components/list/DshBox/DshSingleData.vue +119 -119
  86. package/src/components/list/DshBox/DshTable.vue +239 -239
  87. package/src/components/list/DshCascaderTable.vue +115 -115
  88. package/src/components/list/DshFlatTable.vue +337 -337
  89. package/src/components/list/DshPage.vue +194 -194
  90. package/src/components/list/DshTreeTable.vue +113 -113
  91. package/src/components/list/common/importModal.vue +243 -243
  92. package/src/components/list/common/quoteListModal.vue +206 -206
  93. package/src/components/list/mixins/DshCascaderTableMixin.js +278 -278
  94. package/src/components/list/mixins/DshFlatTableMixin.js +509 -509
  95. package/src/components/list/mixins/DshTreeTableMixin.js +286 -286
  96. package/src/components/list/mixins/tableBaseMixin.js +1653 -1653
  97. package/src/components/list/mixins/treeTableBaseMixin.js +145 -145
  98. package/src/components/other/BriAvatar.vue +166 -166
  99. package/src/components/other/BriCode.vue +125 -125
  100. package/src/components/other/BriCollapseTree.vue +207 -207
  101. package/src/components/other/BriGantt.vue +1087 -1087
  102. package/src/components/other/BriIframe.vue +116 -116
  103. package/src/components/other/BriLoading.vue +171 -171
  104. package/src/components/other/BriSvg.vue +27 -27
  105. package/src/components/other/DshColorPanel.vue +128 -128
  106. package/src/components/other/DshMenuNav.vue +188 -188
  107. package/src/components/small/BriButton.vue +71 -71
  108. package/src/components/small/BriDrawer.vue +169 -169
  109. package/src/components/small/BriTooltip.vue +87 -87
  110. package/src/components/small/DshBtnModal.vue +68 -68
  111. package/src/components/small/DshButtons.vue +324 -324
  112. package/src/components/small/DshDropdown.vue +225 -225
  113. package/src/components/small/DshIcons.vue +59 -59
  114. package/src/components/small/DshListRender.js +21 -21
  115. package/src/components/small/DshModal.vue +160 -160
  116. package/src/components/small/DshSteps.vue +141 -141
  117. package/src/components/small/DshTabs.vue +598 -598
  118. package/src/components/small/DshTabsSet.vue +309 -309
  119. package/src/components/small/DshTags.vue +251 -251
  120. package/src/components/small/DshTitle.vue +50 -50
  121. package/src/components/small/render.js +20 -20
  122. package/src/components/unit/DshFormUnit.vue +398 -398
  123. package/src/components/unit/DshListUnit.vue +115 -115
  124. package/src/components/unit/unitMixin.js +86 -86
  125. package/src/data/index.js +4 -4
  126. package/src/index.js +282 -282
  127. package/src/styles/bundle.css +12 -12
  128. package/src/styles/components/BriButton.less +307 -307
  129. package/src/styles/components/BriTable.less +344 -344
  130. package/src/styles/components/DshModal.less +257 -257
  131. package/src/styles/components/index.less +3 -3
  132. package/src/styles/global/animate.less +11 -11
  133. package/src/styles/global/base.less +45 -45
  134. package/src/styles/global/box.less +186 -186
  135. package/src/styles/global/control.less +122 -122
  136. package/src/styles/global/flex.less +282 -282
  137. package/src/styles/global/global.less +8 -8
  138. package/src/styles/global/text.less +59 -59
  139. package/src/styles/global/variables.less +85 -85
  140. package/src/styles/iconfont/iconfont.css +254 -254
  141. package/src/styles/iconfont/iconfont.json +422 -422
  142. package/src/styles/iconfont/iconfont.svg +137 -137
  143. package/src/styles/index.less +26 -26
  144. package/src/styles/reset-easytable.less +21 -21
  145. package/src/styles/reset-iview-controls.less +145 -145
  146. package/src/styles/reset-iview-other.less +49 -49
  147. package/src/styles/reset-iview-variables.less +43 -43
  148. package/src/styles/reset.less +45 -45
  149. package/src/utils/index.js +5 -5
  150. package/src/utils/table.js +175 -175
  151. package/lib/11.bri-components.min.js +0 -1
@@ -1,324 +1,324 @@
1
- // 控件查看状态的样式
2
- #control-show () {
3
- &-show {
4
- &-auto {
5
- white-space: normal!important;
6
- word-break: break-all!important;
7
- text-overflow: clip!important;
8
-
9
- &-tag {
10
- height: auto!important;
11
- }
12
- }
13
-
14
- &-ellipsis {
15
- margin: 2px 0px;
16
- .dsh-ellipsis();
17
-
18
- &-tag {
19
- .dsh-ellipsis();
20
- display: inline-block;
21
- max-width: 100%;
22
- height: 24px;
23
- min-height: 24px;
24
- padding: 4px 8px;
25
- margin: 2px 0px;
26
- border-radius: 4px;
27
- line-height: 16px;
28
- font-size: 12px;
29
- }
30
- }
31
- }
32
- }
33
-
34
- // 单选多选控件样式
35
- #control-select (@control-type) {
36
- &-flat {
37
- width: 100%;
38
-
39
- .ivu-@{control-type}-wrapper {
40
- height: auto;
41
- padding: 6px 0px;
42
- margin-top: 2px;
43
- margin-bottom: 2px;
44
- margin-right: 12px;
45
- white-space: normal;
46
-
47
- .ivu-@{control-type} {
48
- .ivu-@{control-type}-inner {
49
-
50
- }
51
-
52
- .ivu-@{control-type}-focus {
53
- box-shadow: 0 0 0 0;
54
- }
55
-
56
- &-checked {
57
- // 因为不一致,所以明确名字分开写
58
- .ivu-radio-inner {
59
- &::after {
60
- background-color: @themeColor;
61
- }
62
- }
63
- .ivu-checkbox-inner {
64
- background-color: @themeColor;
65
- }
66
- }
67
-
68
- & + span {
69
-
70
- }
71
- }
72
-
73
- // 选项置灰时
74
- &-disabled {
75
- .ivu-@{control-type} {
76
- .ivu-@{control-type}-inner {
77
- border-color: #aaaaaa;
78
- }
79
-
80
- &-checked {
81
- // 因为不一致,所以明确名字分开写
82
- .ivu-radio-inner {
83
- &::after {
84
- background-color: #aaaaaa;
85
- }
86
- }
87
- .ivu-checkbox-inner {
88
- background-color: #aaaaaa;
89
-
90
- // 对勾的颜色
91
- &::after {
92
- border-color: #f3f3f3;
93
- }
94
- }
95
- }
96
-
97
-
98
- & + span {
99
- color: #999999;
100
- }
101
- }
102
- }
103
-
104
- &:last-child {
105
- margin-right: 0px;
106
- }
107
- }
108
-
109
- &-color {
110
- #template (@color) {
111
- .ivu-@{control-type} {
112
- .ivu-@{control-type}-inner {
113
- border-color: @color;
114
- }
115
-
116
- &-checked {
117
- // 因为不一致,所以明确名字分开写
118
- .ivu-radio-inner {
119
- &::after {
120
- background-color: @color;
121
- }
122
- }
123
- .ivu-checkbox-inner {
124
- background-color: @color;
125
- }
126
- }
127
- }
128
-
129
- &-checked {
130
- border-color: @color;
131
- }
132
-
133
- &-disabled {
134
- border-color: transparent;
135
-
136
- .ivu-@{control-type} {
137
- .ivu-@{control-type}-inner {
138
- border-color: #cccccc;
139
- }
140
-
141
- &-checked {
142
- // 因为不一致,所以明确名字分开写
143
- .ivu-radio-inner {
144
- &::after {
145
- background-color: #cccccc;
146
- }
147
- }
148
- .ivu-checkbox-inner {
149
- background-color: #cccccc;
150
-
151
- // 对勾的颜色
152
- &::after {
153
- border-color: #f3f3f3;
154
- }
155
- }
156
- }
157
-
158
-
159
- & + span {
160
- color: @color;
161
- opacity: 0.6;
162
- }
163
- }
164
-
165
- &.ivu-@{control-type}-wrapper-checked {
166
- border-color: #cccccc;
167
- }
168
- }
169
- }
170
-
171
- .ivu-@{control-type}-wrapper {
172
- padding: 6px 15px;
173
- border-radius: 4px;
174
- border-color: transparent;
175
- line-height: 16px;
176
-
177
- .ivu-@{control-type} {
178
- .ivu-@{control-type}-inner {
179
- border: 2px solid #aaaaaa;
180
- }
181
- // 因为不一致,所以明确名字分开写
182
- .ivu-radio-inner {
183
- width: 14px;
184
- height: 14px;
185
- background-color: transparent;
186
-
187
- &::after {
188
- width: 6px;
189
- height: 6px;
190
- left: 2px;
191
- top: 2px;
192
- }
193
- }
194
- .ivu-checkbox-inner {
195
- background-color: transparent;
196
-
197
- &::after {
198
- top: 2px;
199
- left: 4px;
200
- }
201
- }
202
-
203
- &-checked {
204
- // 因为不一致,所以明确名字分开写
205
- .ivu-radio-inner {
206
- &::after {
207
- background-color: #aaaaaa;
208
- }
209
- }
210
- .ivu-checkbox-inner {
211
- background-color: #aaaaaa;
212
- }
213
- }
214
- }
215
-
216
- &-checked {
217
- border-color: #aaaaaa;
218
- }
219
- }
220
-
221
- .color-default.ivu-@{control-type}-wrapper {
222
- // 为了填补default主题下无style
223
- // background-color: @theme-focus!important;
224
- .ivu-@{control-type} {
225
- & + span {
226
- color: @themeColor;
227
- }
228
- }
229
-
230
- #template(@themeColor);
231
- }
232
- each(@resourceColor, {
233
- .color-@{index}.ivu-@{control-type}-wrapper {
234
- #template(@value);
235
- }
236
- });
237
- }
238
-
239
- &-scroll {
240
- .bri-scrollbar3();
241
- white-space: nowrap;
242
- overflow: auto;
243
-
244
- .ivu-@{control-type}-wrapper {
245
- height: 30px;
246
- margin-top: 0px;
247
- margin-bottom: 2px;
248
- white-space: nowrap;
249
- }
250
- }
251
- }
252
-
253
- &-dropdown {
254
- // 输入框部分
255
- &.ivu-select-multiple {
256
- .ivu-select-selection {
257
- & > div {
258
- width: 100%;
259
- height: 100%;
260
-
261
- .ivu-tag {
262
- background-color: @borderColor;
263
- }
264
- }
265
- }
266
-
267
- &.ivu-select-disabled {
268
- .ivu-select-selection {
269
- & > div {
270
- .ivu-tag {
271
- background-color: @border-disabled;
272
- }
273
- }
274
- }
275
- }
276
- }
277
-
278
- &-auto {
279
- &.ivu-select-multiple {
280
- .ivu-select-selection {
281
- & > div {
282
- .ivu-tag {
283
- height: auto;
284
-
285
- span:not(.ivu-select-max-tag) {
286
- text-overflow: auto;
287
- white-space: normal;
288
- }
289
- }
290
- }
291
- }
292
- }
293
- }
294
-
295
- &-scroll {
296
- &.ivu-select-multiple {
297
- .ivu-select-selection {
298
- height: 32px;
299
-
300
- & > div {
301
- .bri-scrollbar3();
302
- word-break: keep-all;
303
- white-space: nowrap;
304
- overflow: auto;
305
- overflow-y: hidden;
306
-
307
- .ivu-tag {
308
-
309
- }
310
- }
311
- }
312
- }
313
- }
314
-
315
- // 下拉面板
316
- &-transfer {
317
- &.ivu-select-dropdown {
318
- max-width: 200px;
319
- max-height: 350px;
320
- }
321
- }
322
- }
323
- }
324
-
1
+ // 控件查看状态的样式
2
+ #control-show () {
3
+ &-show {
4
+ &-auto {
5
+ white-space: normal!important;
6
+ word-break: break-all!important;
7
+ text-overflow: clip!important;
8
+
9
+ &-tag {
10
+ height: auto!important;
11
+ }
12
+ }
13
+
14
+ &-ellipsis {
15
+ margin: 2px 0px;
16
+ .dsh-ellipsis();
17
+
18
+ &-tag {
19
+ .dsh-ellipsis();
20
+ display: inline-block;
21
+ max-width: 100%;
22
+ height: 24px;
23
+ min-height: 24px;
24
+ padding: 4px 8px;
25
+ margin: 2px 0px;
26
+ border-radius: 4px;
27
+ line-height: 16px;
28
+ font-size: 12px;
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+ // 单选多选控件样式
35
+ #control-select (@control-type) {
36
+ &-flat {
37
+ width: 100%;
38
+
39
+ .ivu-@{control-type}-wrapper {
40
+ height: auto;
41
+ padding: 6px 0px;
42
+ margin-top: 2px;
43
+ margin-bottom: 2px;
44
+ margin-right: 12px;
45
+ white-space: normal;
46
+
47
+ .ivu-@{control-type} {
48
+ .ivu-@{control-type}-inner {
49
+
50
+ }
51
+
52
+ .ivu-@{control-type}-focus {
53
+ box-shadow: 0 0 0 0;
54
+ }
55
+
56
+ &-checked {
57
+ // 因为不一致,所以明确名字分开写
58
+ .ivu-radio-inner {
59
+ &::after {
60
+ background-color: @themeColor;
61
+ }
62
+ }
63
+ .ivu-checkbox-inner {
64
+ background-color: @themeColor;
65
+ }
66
+ }
67
+
68
+ & + span {
69
+
70
+ }
71
+ }
72
+
73
+ // 选项置灰时
74
+ &-disabled {
75
+ .ivu-@{control-type} {
76
+ .ivu-@{control-type}-inner {
77
+ border-color: #aaaaaa;
78
+ }
79
+
80
+ &-checked {
81
+ // 因为不一致,所以明确名字分开写
82
+ .ivu-radio-inner {
83
+ &::after {
84
+ background-color: #aaaaaa;
85
+ }
86
+ }
87
+ .ivu-checkbox-inner {
88
+ background-color: #aaaaaa;
89
+
90
+ // 对勾的颜色
91
+ &::after {
92
+ border-color: #f3f3f3;
93
+ }
94
+ }
95
+ }
96
+
97
+
98
+ & + span {
99
+ color: #999999;
100
+ }
101
+ }
102
+ }
103
+
104
+ &:last-child {
105
+ margin-right: 0px;
106
+ }
107
+ }
108
+
109
+ &-color {
110
+ #template (@color) {
111
+ .ivu-@{control-type} {
112
+ .ivu-@{control-type}-inner {
113
+ border-color: @color;
114
+ }
115
+
116
+ &-checked {
117
+ // 因为不一致,所以明确名字分开写
118
+ .ivu-radio-inner {
119
+ &::after {
120
+ background-color: @color;
121
+ }
122
+ }
123
+ .ivu-checkbox-inner {
124
+ background-color: @color;
125
+ }
126
+ }
127
+ }
128
+
129
+ &-checked {
130
+ border-color: @color;
131
+ }
132
+
133
+ &-disabled {
134
+ border-color: transparent;
135
+
136
+ .ivu-@{control-type} {
137
+ .ivu-@{control-type}-inner {
138
+ border-color: #cccccc;
139
+ }
140
+
141
+ &-checked {
142
+ // 因为不一致,所以明确名字分开写
143
+ .ivu-radio-inner {
144
+ &::after {
145
+ background-color: #cccccc;
146
+ }
147
+ }
148
+ .ivu-checkbox-inner {
149
+ background-color: #cccccc;
150
+
151
+ // 对勾的颜色
152
+ &::after {
153
+ border-color: #f3f3f3;
154
+ }
155
+ }
156
+ }
157
+
158
+
159
+ & + span {
160
+ color: @color;
161
+ opacity: 0.6;
162
+ }
163
+ }
164
+
165
+ &.ivu-@{control-type}-wrapper-checked {
166
+ border-color: #cccccc;
167
+ }
168
+ }
169
+ }
170
+
171
+ .ivu-@{control-type}-wrapper {
172
+ padding: 6px 15px;
173
+ border-radius: 4px;
174
+ border-color: transparent;
175
+ line-height: 16px;
176
+
177
+ .ivu-@{control-type} {
178
+ .ivu-@{control-type}-inner {
179
+ border: 2px solid #aaaaaa;
180
+ }
181
+ // 因为不一致,所以明确名字分开写
182
+ .ivu-radio-inner {
183
+ width: 14px;
184
+ height: 14px;
185
+ background-color: transparent;
186
+
187
+ &::after {
188
+ width: 6px;
189
+ height: 6px;
190
+ left: 2px;
191
+ top: 2px;
192
+ }
193
+ }
194
+ .ivu-checkbox-inner {
195
+ background-color: transparent;
196
+
197
+ &::after {
198
+ top: 2px;
199
+ left: 4px;
200
+ }
201
+ }
202
+
203
+ &-checked {
204
+ // 因为不一致,所以明确名字分开写
205
+ .ivu-radio-inner {
206
+ &::after {
207
+ background-color: #aaaaaa;
208
+ }
209
+ }
210
+ .ivu-checkbox-inner {
211
+ background-color: #aaaaaa;
212
+ }
213
+ }
214
+ }
215
+
216
+ &-checked {
217
+ border-color: #aaaaaa;
218
+ }
219
+ }
220
+
221
+ .color-default.ivu-@{control-type}-wrapper {
222
+ // 为了填补default主题下无style
223
+ // background-color: @theme-focus!important;
224
+ .ivu-@{control-type} {
225
+ & + span {
226
+ color: @themeColor;
227
+ }
228
+ }
229
+
230
+ #template(@themeColor);
231
+ }
232
+ each(@resourceColor, {
233
+ .color-@{index}.ivu-@{control-type}-wrapper {
234
+ #template(@value);
235
+ }
236
+ });
237
+ }
238
+
239
+ &-scroll {
240
+ .bri-scrollbar3();
241
+ white-space: nowrap;
242
+ overflow: auto;
243
+
244
+ .ivu-@{control-type}-wrapper {
245
+ height: 30px;
246
+ margin-top: 0px;
247
+ margin-bottom: 2px;
248
+ white-space: nowrap;
249
+ }
250
+ }
251
+ }
252
+
253
+ &-dropdown {
254
+ // 输入框部分
255
+ &.ivu-select-multiple {
256
+ .ivu-select-selection {
257
+ & > div {
258
+ width: 100%;
259
+ height: 100%;
260
+
261
+ .ivu-tag {
262
+ background-color: @borderColor;
263
+ }
264
+ }
265
+ }
266
+
267
+ &.ivu-select-disabled {
268
+ .ivu-select-selection {
269
+ & > div {
270
+ .ivu-tag {
271
+ background-color: @border-disabled;
272
+ }
273
+ }
274
+ }
275
+ }
276
+ }
277
+
278
+ &-auto {
279
+ &.ivu-select-multiple {
280
+ .ivu-select-selection {
281
+ & > div {
282
+ .ivu-tag {
283
+ height: auto;
284
+
285
+ span:not(.ivu-select-max-tag) {
286
+ text-overflow: auto;
287
+ white-space: normal;
288
+ }
289
+ }
290
+ }
291
+ }
292
+ }
293
+ }
294
+
295
+ &-scroll {
296
+ &.ivu-select-multiple {
297
+ .ivu-select-selection {
298
+ height: 32px;
299
+
300
+ & > div {
301
+ .bri-scrollbar3();
302
+ word-break: keep-all;
303
+ white-space: nowrap;
304
+ overflow: auto;
305
+ overflow-y: hidden;
306
+
307
+ .ivu-tag {
308
+
309
+ }
310
+ }
311
+ }
312
+ }
313
+ }
314
+
315
+ // 下拉面板
316
+ &-transfer {
317
+ &.ivu-select-dropdown {
318
+ max-width: 200px;
319
+ max-height: 350px;
320
+ }
321
+ }
322
+ }
323
+ }
324
+