fixed-vuesax 3.14.1 → 3.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +187 -187
- package/dist/style/colors.styl +30 -30
- package/dist/style/components/vsAlert.styl +66 -66
- package/dist/style/components/vsAvatar.styl +64 -64
- package/dist/style/components/vsBreadcrumb.styl +50 -50
- package/dist/style/components/vsButton.styl +181 -181
- package/dist/style/components/vsCard.styl +64 -64
- package/dist/style/components/vsCheckBox.styl +111 -111
- package/dist/style/components/vsChip.styl +122 -122
- package/dist/style/components/vsCollapse.styl +109 -109
- package/dist/style/components/vsDivider.styl +34 -34
- package/dist/style/components/vsDropDown.styl +231 -231
- package/dist/style/components/vsIcon.styl +47 -47
- package/dist/style/components/vsImages.styl +166 -166
- package/dist/style/components/vsInput.styl +219 -219
- package/dist/style/components/vsInputNumber.styl +170 -170
- package/dist/style/components/vsList.styl +49 -49
- package/dist/style/components/vsLoading.styl +397 -397
- package/dist/style/components/vsNavbar.styl +286 -286
- package/dist/style/components/vsNotifications.styl +92 -92
- package/dist/style/components/vsPagination.styl +143 -143
- package/dist/style/components/vsPopup.styl +159 -159
- package/dist/style/components/vsProgress.styl +45 -45
- package/dist/style/components/vsRadio.styl +93 -93
- package/dist/style/components/vsSelect.styl +219 -219
- package/dist/style/components/vsSideBar.styl +267 -267
- package/dist/style/components/vsSlider.styl +196 -196
- package/dist/style/components/vsSpacer.styl +5 -5
- package/dist/style/components/vsSwitch.styl +93 -93
- package/dist/style/components/vsTable.styl +408 -408
- package/dist/style/components/vsTabs.styl +280 -280
- package/dist/style/components/vsTextarea.styl +82 -82
- package/dist/style/components/vsTimePicker.styl +42 -42
- package/dist/style/components/vsTooltip.styl +85 -85
- package/dist/style/components/vsUpload.styl +460 -460
- package/dist/style/mixins.styl +133 -133
- package/dist/style/root.styl +9 -9
- package/dist/style/vars.styl +45 -45
- package/dist/style/vuesax.styl +25 -25
- package/dist/vuesax.common.js +1 -1
- package/dist/vuesax.common.js.map +1 -1
- package/dist/vuesax.umd.js +1 -1
- package/dist/vuesax.umd.js.map +1 -1
- package/dist/vuesax.umd.min.js +1 -1
- package/dist/vuesax.umd.min.js.map +1 -1
- package/package.json +8 -8
|
@@ -1,280 +1,280 @@
|
|
|
1
|
-
.fade-tab-enter-active, .fade-tab-leave-active {
|
|
2
|
-
transition: all .3s;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.fade-tab-enter, .fade-tab-leave-to /* .fade-tab-leave-active below version 2.1.8 */
|
|
6
|
-
{
|
|
7
|
-
top: 0;
|
|
8
|
-
opacity: 0;
|
|
9
|
-
position: absolute !important;
|
|
10
|
-
transform: translate3d(-100%, 0, 0);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.fade-tab-leave-to /* .fade-tab-leave-active below version 2.1.8 */
|
|
14
|
-
{
|
|
15
|
-
top: 0;
|
|
16
|
-
opacity: 0;
|
|
17
|
-
position: absolute !important;
|
|
18
|
-
transform: translate3d(100%, 0, 0);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
// invert
|
|
22
|
-
|
|
23
|
-
.fade-tab-invert-enter-active, .fade-tab-invert-leave-active {
|
|
24
|
-
transition: all .3s;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.fade-tab-invert-enter, .fade-tab-invert-leave-to /* .fade-tab-invert-leave-active below version 2.1.8 */
|
|
28
|
-
{
|
|
29
|
-
top: 0;
|
|
30
|
-
opacity: 0;
|
|
31
|
-
position: absolute !important;
|
|
32
|
-
transform: translate3d(100%, 0, 0);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.fade-tab-invert-leave-to /* .fade-tab-invert-leave-active below version 2.1.8 */
|
|
36
|
-
{
|
|
37
|
-
top: 0;
|
|
38
|
-
opacity: 0;
|
|
39
|
-
position: absolute !important;
|
|
40
|
-
transform: translate3d(-100%, 0, 0);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
// position
|
|
44
|
-
|
|
45
|
-
.fade-tab-vertical-enter-active, .fade-tab-vertical-leave-active {
|
|
46
|
-
transition: all .3s;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.fade-tab-vertical-enter /* .fade-tab-vertical-leave-active below version 2.1.8 */
|
|
50
|
-
{
|
|
51
|
-
top: 0;
|
|
52
|
-
opacity: 0;
|
|
53
|
-
position: absolute !important;
|
|
54
|
-
transform: translate3d(0, 100%, 0);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.fade-tab-vertical-leave-to /* .fade-tab-vertical-leave-active below version 2.1.8 */
|
|
58
|
-
{
|
|
59
|
-
top: 0;
|
|
60
|
-
opacity: 0;
|
|
61
|
-
position: absolute !important;
|
|
62
|
-
transform: translate3d(0, -100%, 0);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.fade-tab-vertical-invert-enter-active, .fade-tab-vertical-invert-leave-active {
|
|
66
|
-
transition: all .3s;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.fade-tab-vertical-invert-enter /* .fade-tab-vertical-invert-leave-active below version 2.1.8 */
|
|
70
|
-
{
|
|
71
|
-
top: 0;
|
|
72
|
-
opacity: 0;
|
|
73
|
-
position: absolute !important;
|
|
74
|
-
transform: translate3d(0, -100%, 0);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.fade-tab-vertical-invert-leave-to /* .fade-tab-vertical-invert-leave-active below version 2.1.8 */
|
|
78
|
-
{
|
|
79
|
-
top: 0;
|
|
80
|
-
opacity: 0;
|
|
81
|
-
position: absolute !important;
|
|
82
|
-
transform: translate3d(0, 100%, 0) !important;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
.con-vs-tabs
|
|
87
|
-
width 100%;
|
|
88
|
-
overflow hidden
|
|
89
|
-
position relative
|
|
90
|
-
|
|
91
|
-
.con-slot-tabs
|
|
92
|
-
position relative
|
|
93
|
-
display: block
|
|
94
|
-
overflow hidden
|
|
95
|
-
|
|
96
|
-
.con-ul-tabs
|
|
97
|
-
position relative
|
|
98
|
-
|
|
99
|
-
.vs-tabs--ul
|
|
100
|
-
width 100%
|
|
101
|
-
padding-left 0;
|
|
102
|
-
position relative
|
|
103
|
-
box-shadow: 0 0 25px 0 rgba(0, 0, 0, .04)
|
|
104
|
-
|
|
105
|
-
&.ul-tabs-center
|
|
106
|
-
justify-content center
|
|
107
|
-
|
|
108
|
-
&.ul-tabs-right
|
|
109
|
-
justify-content flex-end
|
|
110
|
-
|
|
111
|
-
&.ul-tabs-fixed
|
|
112
|
-
justify-content space-between
|
|
113
|
-
flex-wrap: nowrap !important
|
|
114
|
-
|
|
115
|
-
li
|
|
116
|
-
width 100%
|
|
117
|
-
|
|
118
|
-
.line-vs-tabs
|
|
119
|
-
width 100px
|
|
120
|
-
height 2px
|
|
121
|
-
display block
|
|
122
|
-
position absolute
|
|
123
|
-
transition all .2s ease
|
|
124
|
-
transform: translateZ(0);
|
|
125
|
-
will-change: left, right;
|
|
126
|
-
|
|
127
|
-
.vs-tabs--li
|
|
128
|
-
display: block
|
|
129
|
-
position relative
|
|
130
|
-
|
|
131
|
-
button
|
|
132
|
-
color inherit
|
|
133
|
-
font-family inherit
|
|
134
|
-
|
|
135
|
-
button.vs-tabs--btn
|
|
136
|
-
box-sizing: border-box
|
|
137
|
-
display: block
|
|
138
|
-
position relative
|
|
139
|
-
width 100%;
|
|
140
|
-
background transparent
|
|
141
|
-
margin 0
|
|
142
|
-
padding 10px
|
|
143
|
-
border 0
|
|
144
|
-
cursor pointer
|
|
145
|
-
transition all .2s ease
|
|
146
|
-
z-index: 100
|
|
147
|
-
|
|
148
|
-
&:hover:not(:disabled)
|
|
149
|
-
color inherit
|
|
150
|
-
|
|
151
|
-
button:disabled
|
|
152
|
-
opacity .5
|
|
153
|
-
cursor default !important
|
|
154
|
-
pointer-events: none
|
|
155
|
-
|
|
156
|
-
.activeChild
|
|
157
|
-
button:not(:disabled)
|
|
158
|
-
color inherit
|
|
159
|
-
|
|
160
|
-
button.vs-tabs--btn
|
|
161
|
-
padding-top 8px;
|
|
162
|
-
padding-bottom 12px;
|
|
163
|
-
|
|
164
|
-
.vs-tabs--btn-tag
|
|
165
|
-
position absolute
|
|
166
|
-
width: 20px
|
|
167
|
-
height 20px
|
|
168
|
-
display: flex
|
|
169
|
-
align-items: center
|
|
170
|
-
justify-content: center
|
|
171
|
-
top -10px
|
|
172
|
-
right -10px
|
|
173
|
-
z-index 200
|
|
174
|
-
border-radius 3px
|
|
175
|
-
border: 0
|
|
176
|
-
background: rgb(255, 255, 255)
|
|
177
|
-
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05)
|
|
178
|
-
cursor pointer
|
|
179
|
-
|
|
180
|
-
i
|
|
181
|
-
padding-right: 0 !important
|
|
182
|
-
font-size: .9rem
|
|
183
|
-
|
|
184
|
-
.vs-tabs--btn-icon + span
|
|
185
|
-
propWithDir(padding, left, 9px)
|
|
186
|
-
|
|
187
|
-
.vs-tabs-position-top
|
|
188
|
-
.vs-tabs--ul
|
|
189
|
-
display: flex
|
|
190
|
-
flex-wrap: wrap
|
|
191
|
-
|
|
192
|
-
.vs-tabs-position-bottom
|
|
193
|
-
display flex
|
|
194
|
-
flex-direction column
|
|
195
|
-
|
|
196
|
-
.vs-tabs--ul
|
|
197
|
-
display: flex
|
|
198
|
-
border-top 1px solid rgba(0, 0, 0, .05)
|
|
199
|
-
border-bottom: 0 !important;
|
|
200
|
-
|
|
201
|
-
.con-ul-tabs
|
|
202
|
-
order: 2;
|
|
203
|
-
|
|
204
|
-
.line-vs-tabs
|
|
205
|
-
top: 0;
|
|
206
|
-
|
|
207
|
-
.vs-tabs-position-left
|
|
208
|
-
display flex
|
|
209
|
-
|
|
210
|
-
.line-vs-tabs
|
|
211
|
-
left auto !important
|
|
212
|
-
right 0;
|
|
213
|
-
|
|
214
|
-
.con-ul-tabs
|
|
215
|
-
float left
|
|
216
|
-
height: 100%;
|
|
217
|
-
display: block
|
|
218
|
-
|
|
219
|
-
.vs-tabs--ul
|
|
220
|
-
display block
|
|
221
|
-
width: auto
|
|
222
|
-
border-bottom: 0 !important;
|
|
223
|
-
border-right: 1px solid rgba(0, 0, 0, .05)
|
|
224
|
-
|
|
225
|
-
.activeChild
|
|
226
|
-
button
|
|
227
|
-
padding-top 10px !important;
|
|
228
|
-
padding-bottom 10px !important;
|
|
229
|
-
padding-left: 12px !important;
|
|
230
|
-
padding-right: 8px !important;
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
.vs-tabs-position-right
|
|
234
|
-
display flex
|
|
235
|
-
|
|
236
|
-
.con-slot-tabs
|
|
237
|
-
width: 100%;
|
|
238
|
-
|
|
239
|
-
.con-ul-tabs
|
|
240
|
-
float left
|
|
241
|
-
height: 100%;
|
|
242
|
-
display: block
|
|
243
|
-
order: 2;
|
|
244
|
-
|
|
245
|
-
.vs-tabs--ul
|
|
246
|
-
display block
|
|
247
|
-
width: auto
|
|
248
|
-
border-bottom: 0 !important;
|
|
249
|
-
border-left: 1px solid rgba(0, 0, 0, .05)
|
|
250
|
-
|
|
251
|
-
.activeChild
|
|
252
|
-
button
|
|
253
|
-
padding-top 10px !important;
|
|
254
|
-
padding-bottom 10px !important;
|
|
255
|
-
padding-left: 8px !important;
|
|
256
|
-
padding-right: 12px !important;
|
|
257
|
-
|
|
258
|
-
for colorx, i in $vs-colors
|
|
259
|
-
.vs-tabs-{colorx}
|
|
260
|
-
.con-ul-tabs
|
|
261
|
-
button:not(:disabled)
|
|
262
|
-
&:hover
|
|
263
|
-
color: getColor(colorx, 1) !important
|
|
264
|
-
|
|
265
|
-
.activeChild
|
|
266
|
-
button
|
|
267
|
-
color: getColor(colorx, 1) !important
|
|
268
|
-
|
|
269
|
-
.line-vs-tabs
|
|
270
|
-
background: linear-gradient(30deg, getColor(colorx, 1) 0%, getColor(colorx, .5) 100%) !important
|
|
271
|
-
box-shadow 0 0 8px 0 getColor(colorx, .4) !important
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
// vs-tab
|
|
275
|
-
|
|
276
|
-
.vs-tabs--content
|
|
277
|
-
position relative
|
|
278
|
-
width 100%
|
|
279
|
-
display block
|
|
280
|
-
padding 10px
|
|
1
|
+
.fade-tab-enter-active, .fade-tab-leave-active {
|
|
2
|
+
transition: all .3s;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.fade-tab-enter, .fade-tab-leave-to /* .fade-tab-leave-active below version 2.1.8 */
|
|
6
|
+
{
|
|
7
|
+
top: 0;
|
|
8
|
+
opacity: 0;
|
|
9
|
+
position: absolute !important;
|
|
10
|
+
transform: translate3d(-100%, 0, 0);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.fade-tab-leave-to /* .fade-tab-leave-active below version 2.1.8 */
|
|
14
|
+
{
|
|
15
|
+
top: 0;
|
|
16
|
+
opacity: 0;
|
|
17
|
+
position: absolute !important;
|
|
18
|
+
transform: translate3d(100%, 0, 0);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// invert
|
|
22
|
+
|
|
23
|
+
.fade-tab-invert-enter-active, .fade-tab-invert-leave-active {
|
|
24
|
+
transition: all .3s;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.fade-tab-invert-enter, .fade-tab-invert-leave-to /* .fade-tab-invert-leave-active below version 2.1.8 */
|
|
28
|
+
{
|
|
29
|
+
top: 0;
|
|
30
|
+
opacity: 0;
|
|
31
|
+
position: absolute !important;
|
|
32
|
+
transform: translate3d(100%, 0, 0);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.fade-tab-invert-leave-to /* .fade-tab-invert-leave-active below version 2.1.8 */
|
|
36
|
+
{
|
|
37
|
+
top: 0;
|
|
38
|
+
opacity: 0;
|
|
39
|
+
position: absolute !important;
|
|
40
|
+
transform: translate3d(-100%, 0, 0);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// position
|
|
44
|
+
|
|
45
|
+
.fade-tab-vertical-enter-active, .fade-tab-vertical-leave-active {
|
|
46
|
+
transition: all .3s;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.fade-tab-vertical-enter /* .fade-tab-vertical-leave-active below version 2.1.8 */
|
|
50
|
+
{
|
|
51
|
+
top: 0;
|
|
52
|
+
opacity: 0;
|
|
53
|
+
position: absolute !important;
|
|
54
|
+
transform: translate3d(0, 100%, 0);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.fade-tab-vertical-leave-to /* .fade-tab-vertical-leave-active below version 2.1.8 */
|
|
58
|
+
{
|
|
59
|
+
top: 0;
|
|
60
|
+
opacity: 0;
|
|
61
|
+
position: absolute !important;
|
|
62
|
+
transform: translate3d(0, -100%, 0);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.fade-tab-vertical-invert-enter-active, .fade-tab-vertical-invert-leave-active {
|
|
66
|
+
transition: all .3s;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.fade-tab-vertical-invert-enter /* .fade-tab-vertical-invert-leave-active below version 2.1.8 */
|
|
70
|
+
{
|
|
71
|
+
top: 0;
|
|
72
|
+
opacity: 0;
|
|
73
|
+
position: absolute !important;
|
|
74
|
+
transform: translate3d(0, -100%, 0);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.fade-tab-vertical-invert-leave-to /* .fade-tab-vertical-invert-leave-active below version 2.1.8 */
|
|
78
|
+
{
|
|
79
|
+
top: 0;
|
|
80
|
+
opacity: 0;
|
|
81
|
+
position: absolute !important;
|
|
82
|
+
transform: translate3d(0, 100%, 0) !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
.con-vs-tabs
|
|
87
|
+
width 100%;
|
|
88
|
+
overflow hidden
|
|
89
|
+
position relative
|
|
90
|
+
|
|
91
|
+
.con-slot-tabs
|
|
92
|
+
position relative
|
|
93
|
+
display: block
|
|
94
|
+
overflow hidden
|
|
95
|
+
|
|
96
|
+
.con-ul-tabs
|
|
97
|
+
position relative
|
|
98
|
+
|
|
99
|
+
.vs-tabs--ul
|
|
100
|
+
width 100%
|
|
101
|
+
padding-left 0;
|
|
102
|
+
position relative
|
|
103
|
+
box-shadow: 0 0 25px 0 rgba(0, 0, 0, .04)
|
|
104
|
+
|
|
105
|
+
&.ul-tabs-center
|
|
106
|
+
justify-content center
|
|
107
|
+
|
|
108
|
+
&.ul-tabs-right
|
|
109
|
+
justify-content flex-end
|
|
110
|
+
|
|
111
|
+
&.ul-tabs-fixed
|
|
112
|
+
justify-content space-between
|
|
113
|
+
flex-wrap: nowrap !important
|
|
114
|
+
|
|
115
|
+
li
|
|
116
|
+
width 100%
|
|
117
|
+
|
|
118
|
+
.line-vs-tabs
|
|
119
|
+
width 100px
|
|
120
|
+
height 2px
|
|
121
|
+
display block
|
|
122
|
+
position absolute
|
|
123
|
+
transition all .2s ease
|
|
124
|
+
transform: translateZ(0);
|
|
125
|
+
will-change: left, right;
|
|
126
|
+
|
|
127
|
+
.vs-tabs--li
|
|
128
|
+
display: block
|
|
129
|
+
position relative
|
|
130
|
+
|
|
131
|
+
button
|
|
132
|
+
color inherit
|
|
133
|
+
font-family inherit
|
|
134
|
+
|
|
135
|
+
button.vs-tabs--btn
|
|
136
|
+
box-sizing: border-box
|
|
137
|
+
display: block
|
|
138
|
+
position relative
|
|
139
|
+
width 100%;
|
|
140
|
+
background transparent
|
|
141
|
+
margin 0
|
|
142
|
+
padding 10px
|
|
143
|
+
border 0
|
|
144
|
+
cursor pointer
|
|
145
|
+
transition all .2s ease
|
|
146
|
+
z-index: 100
|
|
147
|
+
|
|
148
|
+
&:hover:not(:disabled)
|
|
149
|
+
color inherit
|
|
150
|
+
|
|
151
|
+
button:disabled
|
|
152
|
+
opacity .5
|
|
153
|
+
cursor default !important
|
|
154
|
+
pointer-events: none
|
|
155
|
+
|
|
156
|
+
.activeChild
|
|
157
|
+
button:not(:disabled)
|
|
158
|
+
color inherit
|
|
159
|
+
|
|
160
|
+
button.vs-tabs--btn
|
|
161
|
+
padding-top 8px;
|
|
162
|
+
padding-bottom 12px;
|
|
163
|
+
|
|
164
|
+
.vs-tabs--btn-tag
|
|
165
|
+
position absolute
|
|
166
|
+
width: 20px
|
|
167
|
+
height 20px
|
|
168
|
+
display: flex
|
|
169
|
+
align-items: center
|
|
170
|
+
justify-content: center
|
|
171
|
+
top -10px
|
|
172
|
+
right -10px
|
|
173
|
+
z-index 200
|
|
174
|
+
border-radius 3px
|
|
175
|
+
border: 0
|
|
176
|
+
background: rgb(255, 255, 255)
|
|
177
|
+
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05)
|
|
178
|
+
cursor pointer
|
|
179
|
+
|
|
180
|
+
i
|
|
181
|
+
padding-right: 0 !important
|
|
182
|
+
font-size: .9rem
|
|
183
|
+
|
|
184
|
+
.vs-tabs--btn-icon + span
|
|
185
|
+
propWithDir(padding, left, 9px)
|
|
186
|
+
|
|
187
|
+
.vs-tabs-position-top
|
|
188
|
+
.vs-tabs--ul
|
|
189
|
+
display: flex
|
|
190
|
+
flex-wrap: wrap
|
|
191
|
+
|
|
192
|
+
.vs-tabs-position-bottom
|
|
193
|
+
display flex
|
|
194
|
+
flex-direction column
|
|
195
|
+
|
|
196
|
+
.vs-tabs--ul
|
|
197
|
+
display: flex
|
|
198
|
+
border-top 1px solid rgba(0, 0, 0, .05)
|
|
199
|
+
border-bottom: 0 !important;
|
|
200
|
+
|
|
201
|
+
.con-ul-tabs
|
|
202
|
+
order: 2;
|
|
203
|
+
|
|
204
|
+
.line-vs-tabs
|
|
205
|
+
top: 0;
|
|
206
|
+
|
|
207
|
+
.vs-tabs-position-left
|
|
208
|
+
display flex
|
|
209
|
+
|
|
210
|
+
.line-vs-tabs
|
|
211
|
+
left auto !important
|
|
212
|
+
right 0;
|
|
213
|
+
|
|
214
|
+
.con-ul-tabs
|
|
215
|
+
float left
|
|
216
|
+
height: 100%;
|
|
217
|
+
display: block
|
|
218
|
+
|
|
219
|
+
.vs-tabs--ul
|
|
220
|
+
display block
|
|
221
|
+
width: auto
|
|
222
|
+
border-bottom: 0 !important;
|
|
223
|
+
border-right: 1px solid rgba(0, 0, 0, .05)
|
|
224
|
+
|
|
225
|
+
.activeChild
|
|
226
|
+
button
|
|
227
|
+
padding-top 10px !important;
|
|
228
|
+
padding-bottom 10px !important;
|
|
229
|
+
padding-left: 12px !important;
|
|
230
|
+
padding-right: 8px !important;
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
.vs-tabs-position-right
|
|
234
|
+
display flex
|
|
235
|
+
|
|
236
|
+
.con-slot-tabs
|
|
237
|
+
width: 100%;
|
|
238
|
+
|
|
239
|
+
.con-ul-tabs
|
|
240
|
+
float left
|
|
241
|
+
height: 100%;
|
|
242
|
+
display: block
|
|
243
|
+
order: 2;
|
|
244
|
+
|
|
245
|
+
.vs-tabs--ul
|
|
246
|
+
display block
|
|
247
|
+
width: auto
|
|
248
|
+
border-bottom: 0 !important;
|
|
249
|
+
border-left: 1px solid rgba(0, 0, 0, .05)
|
|
250
|
+
|
|
251
|
+
.activeChild
|
|
252
|
+
button
|
|
253
|
+
padding-top 10px !important;
|
|
254
|
+
padding-bottom 10px !important;
|
|
255
|
+
padding-left: 8px !important;
|
|
256
|
+
padding-right: 12px !important;
|
|
257
|
+
|
|
258
|
+
for colorx, i in $vs-colors
|
|
259
|
+
.vs-tabs-{colorx}
|
|
260
|
+
.con-ul-tabs
|
|
261
|
+
button:not(:disabled)
|
|
262
|
+
&:hover
|
|
263
|
+
color: getColor(colorx, 1) !important
|
|
264
|
+
|
|
265
|
+
.activeChild
|
|
266
|
+
button
|
|
267
|
+
color: getColor(colorx, 1) !important
|
|
268
|
+
|
|
269
|
+
.line-vs-tabs
|
|
270
|
+
background: linear-gradient(30deg, getColor(colorx, 1) 0%, getColor(colorx, .5) 100%) !important
|
|
271
|
+
box-shadow 0 0 8px 0 getColor(colorx, .4) !important
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
// vs-tab
|
|
275
|
+
|
|
276
|
+
.vs-tabs--content
|
|
277
|
+
position relative
|
|
278
|
+
width 100%
|
|
279
|
+
display block
|
|
280
|
+
padding 10px
|