@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.
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/common/var.scss +247 -247
- package/src/components/avatar-group.scss +113 -113
- package/src/components/avatar.scss +123 -123
- package/src/components/badge.scss +210 -210
- package/src/components/breadcrumb.scss +203 -203
- package/src/components/button.scss +975 -975
- package/src/components/card.scss +699 -696
- package/src/components/checkbox-group.scss +22 -22
- package/src/components/checkbox.scss +320 -320
- package/src/components/col.scss +43 -43
- package/src/components/dialog.scss +360 -360
- package/src/components/divider.scss +250 -250
- package/src/components/empty.scss +99 -99
- package/src/components/form-item.scss +189 -189
- package/src/components/form.scss +59 -59
- package/src/components/icon.scss +83 -83
- package/src/components/image-preview.scss +147 -147
- package/src/components/image.scss +351 -351
- package/src/components/input-number.scss +129 -129
- package/src/components/input.scss +362 -362
- package/src/components/loading.scss +64 -64
- package/src/components/notification.scss +348 -348
- package/src/components/pagination.scss +287 -280
- package/src/components/pattern-background.scss +18 -18
- package/src/components/popover.scss +438 -438
- package/src/components/progress.scss +438 -438
- package/src/components/radio-group.scss +22 -22
- package/src/components/radio.scss +286 -286
- package/src/components/row.scss +12 -12
- package/src/components/scrollbar.scss +40 -40
- package/src/components/segmented.scss +566 -566
- package/src/components/select.scss +15 -1
- package/src/components/slider.scss +421 -421
- package/src/components/status-indicator.scss +206 -206
- package/src/components/switch.scss +405 -405
- package/src/components/table.scss +474 -474
- package/src/components/tag.scss +416 -416
- package/src/components/text.scss +310 -271
- package/src/components/textarea.scss +106 -104
- package/src/components/timeline.scss +379 -379
- package/src/components/tree.scss +397 -397
- package/src/components/upload.scss +509 -509
- package/src/index.scss +60 -60
- package/src/mixins/mixins.scss +156 -156
package/src/components/col.scss
CHANGED
|
@@ -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
|
+
}
|