@cyberpunk-vue/theme-chalk 1.14.0 → 1.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/dist/index.css +1 -1
  2. package/dist/index.css.map +1 -1
  3. package/package.json +1 -1
  4. package/src/common/var.scss +247 -247
  5. package/src/components/avatar-group.scss +113 -113
  6. package/src/components/avatar.scss +123 -123
  7. package/src/components/badge.scss +210 -210
  8. package/src/components/breadcrumb.scss +203 -203
  9. package/src/components/button.scss +975 -975
  10. package/src/components/card.scss +699 -696
  11. package/src/components/checkbox-group.scss +22 -22
  12. package/src/components/checkbox.scss +320 -320
  13. package/src/components/col.scss +43 -43
  14. package/src/components/dialog.scss +360 -360
  15. package/src/components/divider.scss +250 -250
  16. package/src/components/empty.scss +99 -99
  17. package/src/components/form-item.scss +189 -189
  18. package/src/components/form.scss +59 -59
  19. package/src/components/icon.scss +83 -83
  20. package/src/components/image-preview.scss +147 -147
  21. package/src/components/image.scss +351 -351
  22. package/src/components/input-number.scss +129 -129
  23. package/src/components/input.scss +362 -362
  24. package/src/components/loading.scss +64 -64
  25. package/src/components/notification.scss +348 -348
  26. package/src/components/pagination.scss +287 -280
  27. package/src/components/pattern-background.scss +18 -18
  28. package/src/components/popover.scss +438 -438
  29. package/src/components/progress.scss +438 -438
  30. package/src/components/radio-group.scss +22 -22
  31. package/src/components/radio.scss +286 -286
  32. package/src/components/row.scss +12 -12
  33. package/src/components/scrollbar.scss +40 -40
  34. package/src/components/segmented.scss +566 -566
  35. package/src/components/select.scss +15 -1
  36. package/src/components/slider.scss +421 -421
  37. package/src/components/status-indicator.scss +206 -206
  38. package/src/components/switch.scss +405 -405
  39. package/src/components/table.scss +474 -474
  40. package/src/components/tag.scss +416 -416
  41. package/src/components/text.scss +310 -271
  42. package/src/components/textarea.scss +106 -104
  43. package/src/components/timeline.scss +379 -379
  44. package/src/components/tree.scss +397 -397
  45. package/src/components/upload.scss +509 -509
  46. package/src/index.scss +60 -60
  47. package/src/mixins/mixins.scss +156 -156
@@ -1,43 +1,43 @@
1
- @use 'sass:math';
2
- @use '../mixins/mixins' as *;
3
-
4
- // ===== CpCol 栅格列 =====
5
-
6
- @include b(col) {
7
- box-sizing: border-box;
8
- position: relative;
9
-
10
- // 0 = display:none
11
- @include m(0) {
12
- display: none;
13
- }
14
-
15
- // span 1-24
16
- @for $i from 1 through 24 {
17
- @include m(#{$i}) {
18
- max-width: math.percentage(math.div($i, 24));
19
- flex: 0 0 math.percentage(math.div($i, 24));
20
- }
21
- }
22
-
23
- // offset 1-24
24
- @for $i from 1 through 24 {
25
- @include m(offset-#{$i}) {
26
- margin-left: math.percentage(math.div($i, 24));
27
- }
28
- }
29
-
30
- // push 1-24
31
- @for $i from 1 through 24 {
32
- @include m(push-#{$i}) {
33
- left: math.percentage(math.div($i, 24));
34
- }
35
- }
36
-
37
- // pull 1-24
38
- @for $i from 1 through 24 {
39
- @include m(pull-#{$i}) {
40
- right: math.percentage(math.div($i, 24));
41
- }
42
- }
43
- }
1
+ @use 'sass:math';
2
+ @use '../mixins/mixins' as *;
3
+
4
+ // ===== CpCol 栅格列 =====
5
+
6
+ @include b(col) {
7
+ box-sizing: border-box;
8
+ position: relative;
9
+
10
+ // 0 = display:none
11
+ @include m(0) {
12
+ display: none;
13
+ }
14
+
15
+ // span 1-24
16
+ @for $i from 1 through 24 {
17
+ @include m(#{$i}) {
18
+ max-width: math.percentage(math.div($i, 24));
19
+ flex: 0 0 math.percentage(math.div($i, 24));
20
+ }
21
+ }
22
+
23
+ // offset 1-24
24
+ @for $i from 1 through 24 {
25
+ @include m(offset-#{$i}) {
26
+ margin-left: math.percentage(math.div($i, 24));
27
+ }
28
+ }
29
+
30
+ // push 1-24
31
+ @for $i from 1 through 24 {
32
+ @include m(push-#{$i}) {
33
+ left: math.percentage(math.div($i, 24));
34
+ }
35
+ }
36
+
37
+ // pull 1-24
38
+ @for $i from 1 through 24 {
39
+ @include m(pull-#{$i}) {
40
+ right: math.percentage(math.div($i, 24));
41
+ }
42
+ }
43
+ }