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.
Files changed (47) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +187 -187
  3. package/dist/style/colors.styl +30 -30
  4. package/dist/style/components/vsAlert.styl +66 -66
  5. package/dist/style/components/vsAvatar.styl +64 -64
  6. package/dist/style/components/vsBreadcrumb.styl +50 -50
  7. package/dist/style/components/vsButton.styl +181 -181
  8. package/dist/style/components/vsCard.styl +64 -64
  9. package/dist/style/components/vsCheckBox.styl +111 -111
  10. package/dist/style/components/vsChip.styl +122 -122
  11. package/dist/style/components/vsCollapse.styl +109 -109
  12. package/dist/style/components/vsDivider.styl +34 -34
  13. package/dist/style/components/vsDropDown.styl +231 -231
  14. package/dist/style/components/vsIcon.styl +47 -47
  15. package/dist/style/components/vsImages.styl +166 -166
  16. package/dist/style/components/vsInput.styl +219 -219
  17. package/dist/style/components/vsInputNumber.styl +170 -170
  18. package/dist/style/components/vsList.styl +49 -49
  19. package/dist/style/components/vsLoading.styl +397 -397
  20. package/dist/style/components/vsNavbar.styl +286 -286
  21. package/dist/style/components/vsNotifications.styl +92 -92
  22. package/dist/style/components/vsPagination.styl +143 -143
  23. package/dist/style/components/vsPopup.styl +159 -159
  24. package/dist/style/components/vsProgress.styl +45 -45
  25. package/dist/style/components/vsRadio.styl +93 -93
  26. package/dist/style/components/vsSelect.styl +219 -219
  27. package/dist/style/components/vsSideBar.styl +267 -267
  28. package/dist/style/components/vsSlider.styl +196 -196
  29. package/dist/style/components/vsSpacer.styl +5 -5
  30. package/dist/style/components/vsSwitch.styl +93 -93
  31. package/dist/style/components/vsTable.styl +408 -408
  32. package/dist/style/components/vsTabs.styl +280 -280
  33. package/dist/style/components/vsTextarea.styl +82 -82
  34. package/dist/style/components/vsTimePicker.styl +42 -42
  35. package/dist/style/components/vsTooltip.styl +85 -85
  36. package/dist/style/components/vsUpload.styl +460 -460
  37. package/dist/style/mixins.styl +133 -133
  38. package/dist/style/root.styl +9 -9
  39. package/dist/style/vars.styl +45 -45
  40. package/dist/style/vuesax.styl +25 -25
  41. package/dist/vuesax.common.js +1 -1
  42. package/dist/vuesax.common.js.map +1 -1
  43. package/dist/vuesax.umd.js +1 -1
  44. package/dist/vuesax.umd.js.map +1 -1
  45. package/dist/vuesax.umd.min.js +1 -1
  46. package/dist/vuesax.umd.min.js.map +1 -1
  47. package/package.json +8 -8
@@ -1,170 +1,170 @@
1
- .vs-input-number
2
- position relative
3
- display flex
4
- align-items: center
5
- justify-content: center
6
- margin: 5px 10px;
7
- background: rgb(245, 245, 245)
8
- padding: 2px;
9
- border-radius: 5px;
10
-
11
- &.isChangeValue
12
- .vs-input-number--input
13
- transform: translate(0, -2px)
14
- opacity .5
15
-
16
- .vs-input-number--input
17
- transition: all .2s ease;
18
- width: 40px;
19
- min-width 40px;
20
- border 0
21
- text-align: center
22
- background: transparent
23
- padding: 4px;
24
- -moz-appearance: textfield;
25
-
26
- .vs-input-number--input[type=number]::-webkit-inner-spin-button,
27
- .vs-input-number--input[type=number]::-webkit-outer-spin-button
28
- -webkit-appearance: none;
29
- margin: 0;
30
-
31
- button
32
- min-width: 22px
33
- min-height: 22px
34
- padding: 0
35
- margin: 0
36
- position relative
37
- border: 0;
38
- border-radius: 5px;
39
- cursor pointer
40
- display: flex
41
- align-items: center
42
- justify-content: center
43
- transition: all .3s ease;
44
- color: rgba(255, 255, 255, 1)
45
- backface-visibility hidden
46
-
47
- &:disabled
48
- opacity: $vs-disabled-opacity;
49
- cursor: default;
50
- pointer-events: none;
51
-
52
- i
53
- font-size: .9rem
54
-
55
-
56
- &.vs-input-number--button-plus
57
- propWithDir(transform, null, (10px))
58
-
59
- &:active
60
- propWithDir(transform, null, (10px), scale(.9))
61
-
62
- &:disabled
63
- opacity: $vs-disabled-opacity;
64
- cursor: default;
65
- pointer-events: none;
66
- background-color: rgba(0, 0, 0, $vs-disabled-opacity);
67
-
68
- &.vs-input-number--button-plus.limit
69
- opacity: $vs-disabled-opacity;
70
- cursor: default;
71
- pointer-events: none;
72
- background-color: rgba(0, 0, 0, $vs-disabled-opacity);
73
-
74
- &.vs-input-number--button-less
75
- propWithDir(transform, null, (-10px))
76
-
77
- &:active
78
- propWithDir(transform, null, (-10px), scale(.9))
79
-
80
- &:disabled
81
- opacity: $vs-disabled-opacity;
82
- cursor: default;
83
- pointer-events: none;
84
- background-color: rgba(0, 0, 0, $vs-disabled-opacity);
85
-
86
- &.vs-input-number--button-less.limit
87
- opacity: $vs-disabled-opacity;
88
- cursor: default;
89
- pointer-events: none;
90
- background-color: rgba(0, 0, 0, $vs-disabled-opacity);
91
-
92
- &.vs-input-number-size-medium
93
- input
94
- padding: 3px;
95
- font-size: .8rem
96
-
97
- button
98
- min-width: 19px
99
- min-height: 19px
100
-
101
- i
102
- font-size: .8rem
103
-
104
- &.vs-input-number--button-plus
105
- propWithDir(transform, null, (8px))
106
-
107
- &:active
108
- propWithDir(transform, null, (8px), scale(.9))
109
-
110
- &.vs-input-number--button-less
111
- propWithDir(transform, null, (-8px))
112
-
113
- &:active
114
- propWithDir(transform, null, (-8px), scale(.9))
115
-
116
- &.vs-input-number-size-small
117
- .vs-input-number--input
118
- padding: 2px;
119
- font-size: .7rem
120
-
121
- button
122
- min-width: 16px
123
- min-height: 16px
124
-
125
- i
126
- font-size: .7rem
127
-
128
- &.vs-input-number--button-plus
129
- propWithDir(transform, null, (7px))
130
-
131
- &:active
132
- propWithDir(transform, null, (7px), scale(.9))
133
-
134
- &.vs-input-number--button-less
135
- propWithDir(transform, null, (-7px))
136
-
137
- &:active
138
- propWithDir(transform, null, (-7px), scale(.9))
139
-
140
- &.vs-input-number-size-mini
141
- .vs-input-number--input
142
- padding: 1px;
143
- font-size: .6rem
144
-
145
- button
146
- min-width: 14px
147
- min-height: 14px
148
-
149
- i
150
- font-size: .6rem
151
-
152
- &.vs-input-number--button-plus
153
- propWithDir(transform, null, (6px))
154
-
155
- &:active
156
- propWithDir(transform, null, (6px), scale(.9))
157
-
158
- &.vs-input-number--button-less
159
- propWithDir(transform, null, (-6px))
160
-
161
- &:active
162
- propWithDir(transform, null, (-6px), scale(.9))
163
-
164
- for colorx, i in $vs-colors
165
- .vs-input-number-{colorx}
166
- button
167
- background: getColor(colorx, 1);
168
-
169
- &:hover
170
- box-shadow: 0 3px 12px 0 getColor(colorx, .4);
1
+ .vs-input-number
2
+ position relative
3
+ display flex
4
+ align-items: center
5
+ justify-content: center
6
+ margin: 5px 10px;
7
+ background: rgb(245, 245, 245)
8
+ padding: 2px;
9
+ border-radius: 5px;
10
+
11
+ &.isChangeValue
12
+ .vs-input-number--input
13
+ transform: translate(0, -2px)
14
+ opacity .5
15
+
16
+ .vs-input-number--input
17
+ transition: all .2s ease;
18
+ width: 40px;
19
+ min-width 40px;
20
+ border 0
21
+ text-align: center
22
+ background: transparent
23
+ padding: 4px;
24
+ -moz-appearance: textfield;
25
+
26
+ .vs-input-number--input[type=number]::-webkit-inner-spin-button,
27
+ .vs-input-number--input[type=number]::-webkit-outer-spin-button
28
+ -webkit-appearance: none;
29
+ margin: 0;
30
+
31
+ button
32
+ min-width: 22px
33
+ min-height: 22px
34
+ padding: 0
35
+ margin: 0
36
+ position relative
37
+ border: 0;
38
+ border-radius: 5px;
39
+ cursor pointer
40
+ display: flex
41
+ align-items: center
42
+ justify-content: center
43
+ transition: all .3s ease;
44
+ color: rgba(255, 255, 255, 1)
45
+ backface-visibility hidden
46
+
47
+ &:disabled
48
+ opacity: $vs-disabled-opacity;
49
+ cursor: default;
50
+ pointer-events: none;
51
+
52
+ i
53
+ font-size: .9rem
54
+
55
+
56
+ &.vs-input-number--button-plus
57
+ propWithDir(transform, null, (10px))
58
+
59
+ &:active
60
+ propWithDir(transform, null, (10px), scale(.9))
61
+
62
+ &:disabled
63
+ opacity: $vs-disabled-opacity;
64
+ cursor: default;
65
+ pointer-events: none;
66
+ background-color: rgba(0, 0, 0, $vs-disabled-opacity);
67
+
68
+ &.vs-input-number--button-plus.limit
69
+ opacity: $vs-disabled-opacity;
70
+ cursor: default;
71
+ pointer-events: none;
72
+ background-color: rgba(0, 0, 0, $vs-disabled-opacity);
73
+
74
+ &.vs-input-number--button-less
75
+ propWithDir(transform, null, (-10px))
76
+
77
+ &:active
78
+ propWithDir(transform, null, (-10px), scale(.9))
79
+
80
+ &:disabled
81
+ opacity: $vs-disabled-opacity;
82
+ cursor: default;
83
+ pointer-events: none;
84
+ background-color: rgba(0, 0, 0, $vs-disabled-opacity);
85
+
86
+ &.vs-input-number--button-less.limit
87
+ opacity: $vs-disabled-opacity;
88
+ cursor: default;
89
+ pointer-events: none;
90
+ background-color: rgba(0, 0, 0, $vs-disabled-opacity);
91
+
92
+ &.vs-input-number-size-medium
93
+ input
94
+ padding: 3px;
95
+ font-size: .8rem
96
+
97
+ button
98
+ min-width: 19px
99
+ min-height: 19px
100
+
101
+ i
102
+ font-size: .8rem
103
+
104
+ &.vs-input-number--button-plus
105
+ propWithDir(transform, null, (8px))
106
+
107
+ &:active
108
+ propWithDir(transform, null, (8px), scale(.9))
109
+
110
+ &.vs-input-number--button-less
111
+ propWithDir(transform, null, (-8px))
112
+
113
+ &:active
114
+ propWithDir(transform, null, (-8px), scale(.9))
115
+
116
+ &.vs-input-number-size-small
117
+ .vs-input-number--input
118
+ padding: 2px;
119
+ font-size: .7rem
120
+
121
+ button
122
+ min-width: 16px
123
+ min-height: 16px
124
+
125
+ i
126
+ font-size: .7rem
127
+
128
+ &.vs-input-number--button-plus
129
+ propWithDir(transform, null, (7px))
130
+
131
+ &:active
132
+ propWithDir(transform, null, (7px), scale(.9))
133
+
134
+ &.vs-input-number--button-less
135
+ propWithDir(transform, null, (-7px))
136
+
137
+ &:active
138
+ propWithDir(transform, null, (-7px), scale(.9))
139
+
140
+ &.vs-input-number-size-mini
141
+ .vs-input-number--input
142
+ padding: 1px;
143
+ font-size: .6rem
144
+
145
+ button
146
+ min-width: 14px
147
+ min-height: 14px
148
+
149
+ i
150
+ font-size: .6rem
151
+
152
+ &.vs-input-number--button-plus
153
+ propWithDir(transform, null, (6px))
154
+
155
+ &:active
156
+ propWithDir(transform, null, (6px), scale(.9))
157
+
158
+ &.vs-input-number--button-less
159
+ propWithDir(transform, null, (-6px))
160
+
161
+ &:active
162
+ propWithDir(transform, null, (-6px), scale(.9))
163
+
164
+ for colorx, i in $vs-colors
165
+ .vs-input-number-{colorx}
166
+ button
167
+ background: getColor(colorx, 1);
168
+
169
+ &:hover
170
+ box-shadow: 0 3px 12px 0 getColor(colorx, .4);
@@ -1,49 +1,49 @@
1
- .vs-list
2
- width: 100%
3
- position relative
4
- padding: 5px
5
-
6
- .vs-list--icon
7
- padding: 6px
8
- display: flex
9
- align-items: center
10
- justify-content: center
11
-
12
- i
13
- font-size: 1.2rem !important
14
-
15
- .vs-list--header
16
- padding: 8px 0
17
- font-weight: bold
18
- display: flex
19
- align-items: center
20
- justify-content: flex-start
21
- box-shadow: 0 7px 7px -5px rgba(0, 0, 0, .08)
22
- margin-bottom: 5px
23
-
24
- .vs-list--item
25
- border-bottom: 1px solid rgba(0, 0, 0, .08)
26
- padding: 5px
27
- display flex
28
- align-items: center
29
- justify-content: flex-start
30
-
31
- .vs-list--avatar
32
- display flex
33
- align-items center
34
-
35
- .vs-list--slot
36
- display flex
37
- align-items center
38
- flex-wrap wrap
39
- propWithDir(margin, left, auto)
40
-
41
- .vs-list--title
42
- font-weight: bold
43
-
44
- .vs-list--subtitle
45
- font-size: .8rem
46
-
47
- for colorx, i in $vs-colors
48
- .vs-header-list-{colorx}
49
- color getColor(colorx, 1)
1
+ .vs-list
2
+ width: 100%
3
+ position relative
4
+ padding: 5px
5
+
6
+ .vs-list--icon
7
+ padding: 6px
8
+ display: flex
9
+ align-items: center
10
+ justify-content: center
11
+
12
+ i
13
+ font-size: 1.2rem !important
14
+
15
+ .vs-list--header
16
+ padding: 8px 0
17
+ font-weight: bold
18
+ display: flex
19
+ align-items: center
20
+ justify-content: flex-start
21
+ box-shadow: 0 7px 7px -5px rgba(0, 0, 0, .08)
22
+ margin-bottom: 5px
23
+
24
+ .vs-list--item
25
+ border-bottom: 1px solid rgba(0, 0, 0, .08)
26
+ padding: 5px
27
+ display flex
28
+ align-items: center
29
+ justify-content: flex-start
30
+
31
+ .vs-list--avatar
32
+ display flex
33
+ align-items center
34
+
35
+ .vs-list--slot
36
+ display flex
37
+ align-items center
38
+ flex-wrap wrap
39
+ propWithDir(margin, left, auto)
40
+
41
+ .vs-list--title
42
+ font-weight: bold
43
+
44
+ .vs-list--subtitle
45
+ font-size: .8rem
46
+
47
+ for colorx, i in $vs-colors
48
+ .vs-header-list-{colorx}
49
+ color getColor(colorx, 1)