1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
| /**
| * CCheckBox
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-check-box {
| &.c-check-box-dialog {
| .at-input {
| padding-bottom: 24px;
| .at-input__title {
| width: 162px;
| }
| }
| .at-input__container {
| &.at-input--disabled {
| opacity: 1;
| }
| .at-input__input,
| .weui-input,
| input {
| display: inline-block;
| }
| }
| .at-input__children {
| padding-right: 20px;
| &::after {
| display: none;
| }
| .at-icon-chevron-right {
| padding: 0;
| font-size: 48px;
| color: #ccc;
| }
| }
| .at-modal__container {
| width: 620rpx;
| .at-modal__content {
| padding-top: 0;
| padding-bottom: 0;
| }
| .scrollor {
| height: 100%;
| max-height: 840px;
| }
| .at-checkbox {
| padding-left: 0;
| }
| }
| .m-text-ignore {
| padding: 60px 0;
| text-align: center;
| }
| }
| .at-input {
| padding-bottom: 0;
| }
| .at-input__container {
| @include flexbox(flex, flex-start center, row wrap);
| .at-input__title {
| width: auto;
| }
| .at-input__input,
| .weui-input,
| input {
| display: none;
| }
|
| }
| .at-input__icon {
| display: none;
| }
| .at-checkbox {
| width: 96%;
| padding-left: 4%;
| &::before,
| &::after {
| display: none;
| }
| &.c-check-box-checkbox {
| .at-checkbox__icon-cnt {
| width: 48px;
| height: 48px;
| font-size: 32px;
| border-radius: 0;
| border-color: #c9c9c9;
| }
| }
| &.c-check-box-radio {
| .at-checkbox__icon-cnt {
| width: 48px;
| height: 48px;
| font-size: 32px;
| border-color: #c9c9c9;
| }
| }
| .at-checkbox__title {
| max-width: calc(100% - 80px);
| }
| }
| }
|
|