@mptw/skylens-ui 1.4.16 → 1.4.18
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/assets/css/layout.styl
CHANGED
|
@@ -10,11 +10,11 @@ label
|
|
|
10
10
|
@apply inline-block
|
|
11
11
|
|
|
12
12
|
.vc-skylens-purple
|
|
13
|
-
--vc-accent-200 theme('colors.
|
|
13
|
+
--vc-accent-200 theme('colors.primary.100')
|
|
14
14
|
--vc-accent-600 theme('colors.primary.DEFAULT')
|
|
15
|
-
--vc-accent-500 theme('colors.primary.
|
|
16
|
-
--vc-accent-700 theme('colors.primary.
|
|
17
|
-
--vc-accent-900 theme('colors.primary.
|
|
15
|
+
--vc-accent-500 theme('colors.primary.300')
|
|
16
|
+
--vc-accent-700 theme('colors.primary.600')
|
|
17
|
+
--vc-accent-900 theme('colors.primary.800')
|
|
18
18
|
|
|
19
19
|
.vc-skylens-gray
|
|
20
20
|
--vc-accent-200 theme('colors.gray.5')
|
package/components/SLButton.vue
CHANGED
|
@@ -159,7 +159,7 @@ export default defineComponent({
|
|
|
159
159
|
.btn-loading
|
|
160
160
|
.loading
|
|
161
161
|
div
|
|
162
|
-
border-color theme('colors.primary.
|
|
162
|
+
border-color theme('colors.primary.600') transparent transparent transparent
|
|
163
163
|
|
|
164
164
|
&-highlight-500
|
|
165
165
|
@apply bg-highlight-500 border-highlight-500 text-white s("hover:bg-highlight-400") s("hover:text-white") s("hover:border-highlight-400")
|
|
@@ -170,7 +170,7 @@ export default defineComponent({
|
|
|
170
170
|
.btn-loading
|
|
171
171
|
.loading
|
|
172
172
|
div
|
|
173
|
-
border-color theme('colors.
|
|
173
|
+
border-color theme('colors.highlight.400') transparent transparent transparent
|
|
174
174
|
|
|
175
175
|
&-third
|
|
176
176
|
@apply bg-third border-third text-white s("hover:bg-third-600") s("hover:text-white") s("hover:border-third-600")
|
|
@@ -181,7 +181,7 @@ export default defineComponent({
|
|
|
181
181
|
.btn-loading
|
|
182
182
|
.loading
|
|
183
183
|
div
|
|
184
|
-
border-color theme('colors.third.
|
|
184
|
+
border-color theme('colors.third.600') transparent transparent transparent
|
|
185
185
|
|
|
186
186
|
&-danger
|
|
187
187
|
@apply bg-danger border-danger text-white s("hover:bg-danger-light") s("hover:border-danger-light")
|
|
@@ -192,7 +192,7 @@ export default defineComponent({
|
|
|
192
192
|
.btn-loading
|
|
193
193
|
.loading
|
|
194
194
|
div
|
|
195
|
-
border-color theme('colors.danger.
|
|
195
|
+
border-color theme('colors.danger.light') transparent transparent transparent
|
|
196
196
|
|
|
197
197
|
&-gray-5
|
|
198
198
|
@apply bg-gray-5 border-gray-5 text-gray-2 s("hover:bg-gray-4.5") s("hover:border-gray-4.5")
|
|
@@ -203,7 +203,7 @@ export default defineComponent({
|
|
|
203
203
|
.btn-loading
|
|
204
204
|
.loading
|
|
205
205
|
div
|
|
206
|
-
border-color theme('colors.
|
|
206
|
+
border-color theme('colors.gray["4.5"]') transparent transparent transparent
|
|
207
207
|
|
|
208
208
|
&-gray-2
|
|
209
209
|
@apply bg-gray-2 border-gray-2 text-white s("hover:bg-gray-3") s("hover:border-gray-3")
|
|
@@ -225,7 +225,7 @@ export default defineComponent({
|
|
|
225
225
|
.btn-loading
|
|
226
226
|
.loading
|
|
227
227
|
div
|
|
228
|
-
border-color theme('colors.secondary.
|
|
228
|
+
border-color theme('colors.secondary.500') transparent transparent transparent
|
|
229
229
|
|
|
230
230
|
&-blue-1
|
|
231
231
|
@apply bg-secondary border-secondary text-white s("hover:bg-blue-1") s("hover:border-blue-1")
|
package/components/SLLoading.vue
CHANGED
|
@@ -100,7 +100,7 @@ export default defineComponent({
|
|
|
100
100
|
|
|
101
101
|
.loading
|
|
102
102
|
div
|
|
103
|
-
border-color theme('colors.highlight
|
|
103
|
+
border-color theme('colors.highlight.500') transparent transparent transparent
|
|
104
104
|
|
|
105
105
|
.loading
|
|
106
106
|
@apply relative inline-block w-12 h-12
|