cronapp-framework-mobile-js 4.0.1 → 4.0.3
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/css/app_2.9.css +1 -2
- package/dist/css/app_2.9.css +1 -1
- package/package.json +3 -26
- package/postupdate.json +189 -111
- package/css/custom-ionic.css +0 -236
- package/dist/css/custom-ionic.css +0 -1
- package/lib/ionic/css/ionic.css +0 -9802
- package/lib/ionic/css/ionic.min.css +0 -23
- package/lib/ionic/fonts/ionicons.eot +0 -0
- package/lib/ionic/fonts/ionicons.svg +0 -2230
- package/lib/ionic/fonts/ionicons.ttf +0 -0
- package/lib/ionic/fonts/ionicons.woff +0 -0
- package/lib/ionic/js/angular/angular-animate.js +0 -4115
- package/lib/ionic/js/angular/angular-animate.min.js +0 -56
- package/lib/ionic/js/angular/angular-resource.js +0 -768
- package/lib/ionic/js/angular/angular-resource.min.js +0 -15
- package/lib/ionic/js/angular/angular-sanitize.js +0 -717
- package/lib/ionic/js/angular/angular-sanitize.min.js +0 -15
- package/lib/ionic/js/angular/angular.js +0 -30714
- package/lib/ionic/js/angular/angular.min.js +0 -311
- package/lib/ionic/js/angular-ui/angular-ui-router.js +0 -4232
- package/lib/ionic/js/angular-ui/angular-ui-router.min.js +0 -7
- package/lib/ionic/js/ionic-angular.js +0 -14391
- package/lib/ionic/js/ionic-angular.min.js +0 -18
- package/lib/ionic/js/ionic.bundle.js +0 -67623
- package/lib/ionic/js/ionic.bundle.min.js +0 -472
- package/lib/ionic/js/ionic.js +0 -13356
- package/lib/ionic/js/ionic.min.js +0 -20
- package/lib/ionic/scss/_action-sheet.scss +0 -170
- package/lib/ionic/scss/_animations.scss +0 -48
- package/lib/ionic/scss/_backdrop.scss +0 -24
- package/lib/ionic/scss/_badge.scss +0 -62
- package/lib/ionic/scss/_bar.scss +0 -417
- package/lib/ionic/scss/_button-bar.scss +0 -92
- package/lib/ionic/scss/_button.scss +0 -252
- package/lib/ionic/scss/_checkbox.scss +0 -180
- package/lib/ionic/scss/_form.scss +0 -327
- package/lib/ionic/scss/_grid.scss +0 -159
- package/lib/ionic/scss/_items.scss +0 -825
- package/lib/ionic/scss/_list.scss +0 -125
- package/lib/ionic/scss/_loading.scss +0 -51
- package/lib/ionic/scss/_menu.scss +0 -70
- package/lib/ionic/scss/_mixins.scss +0 -642
- package/lib/ionic/scss/_modal.scss +0 -102
- package/lib/ionic/scss/_platform.scss +0 -77
- package/lib/ionic/scss/_popover.scss +0 -168
- package/lib/ionic/scss/_popup.scss +0 -110
- package/lib/ionic/scss/_progress.scss +0 -11
- package/lib/ionic/scss/_radio.scss +0 -47
- package/lib/ionic/scss/_range.scss +0 -160
- package/lib/ionic/scss/_refresher.scss +0 -113
- package/lib/ionic/scss/_reset.scss +0 -365
- package/lib/ionic/scss/_scaffolding.scss +0 -291
- package/lib/ionic/scss/_select.scss +0 -142
- package/lib/ionic/scss/_slide-box.scss +0 -71
- package/lib/ionic/scss/_slides.scss +0 -529
- package/lib/ionic/scss/_spinner.scss +0 -100
- package/lib/ionic/scss/_tabs.scss +0 -542
- package/lib/ionic/scss/_toggle.scss +0 -198
- package/lib/ionic/scss/_transitions.scss +0 -188
- package/lib/ionic/scss/_type.scss +0 -166
- package/lib/ionic/scss/_util.scss +0 -296
- package/lib/ionic/scss/_variables.scss +0 -764
- package/lib/ionic/scss/ionic.scss +0 -54
- package/lib/ionic/scss/ionicons/_ionicons-font.scss +0 -28
- package/lib/ionic/scss/ionicons/_ionicons-icons.scss +0 -1473
- package/lib/ionic/scss/ionicons/_ionicons-variables.scss +0 -741
- package/lib/ionic/scss/ionicons/ionicons.scss +0 -16
- package/lib/ionic/version.json +0 -6
|
@@ -1,252 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Buttons
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.button {
|
|
8
|
-
// set the color defaults
|
|
9
|
-
@include button-style($button-default-bg, $button-default-border, $button-default-active-bg, $button-default-active-border, $button-default-text);
|
|
10
|
-
|
|
11
|
-
position: relative;
|
|
12
|
-
display: inline-block;
|
|
13
|
-
margin: 0;
|
|
14
|
-
padding: 0 $button-padding;
|
|
15
|
-
|
|
16
|
-
min-width: ($button-padding * 3) + $button-font-size;
|
|
17
|
-
min-height: $button-height + 5px;
|
|
18
|
-
|
|
19
|
-
border-width: $button-border-width;
|
|
20
|
-
border-style: solid;
|
|
21
|
-
border-radius: $button-border-radius;
|
|
22
|
-
|
|
23
|
-
vertical-align: top;
|
|
24
|
-
text-align: center;
|
|
25
|
-
|
|
26
|
-
text-overflow: ellipsis;
|
|
27
|
-
font-size: $button-font-size;
|
|
28
|
-
line-height: $button-height - $button-border-width + 1px;
|
|
29
|
-
|
|
30
|
-
cursor: pointer;
|
|
31
|
-
|
|
32
|
-
&:after {
|
|
33
|
-
// used to create a larger button "hit" area
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: -6px;
|
|
36
|
-
right: -6px;
|
|
37
|
-
bottom: -6px;
|
|
38
|
-
left: -6px;
|
|
39
|
-
content: ' ';
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.icon {
|
|
43
|
-
vertical-align: top;
|
|
44
|
-
pointer-events: none;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.icon:before,
|
|
48
|
-
&.icon:before,
|
|
49
|
-
&.icon-left:before,
|
|
50
|
-
&.icon-right:before {
|
|
51
|
-
display: inline-block;
|
|
52
|
-
padding: 0 0 $button-border-width 0;
|
|
53
|
-
vertical-align: inherit;
|
|
54
|
-
font-size: $button-icon-size;
|
|
55
|
-
line-height: $button-height - $button-border-width;
|
|
56
|
-
pointer-events: none;
|
|
57
|
-
}
|
|
58
|
-
&.icon-left:before {
|
|
59
|
-
float: left;
|
|
60
|
-
padding-right: .2em;
|
|
61
|
-
padding-left: 0;
|
|
62
|
-
}
|
|
63
|
-
&.icon-right:before {
|
|
64
|
-
float: right;
|
|
65
|
-
padding-right: 0;
|
|
66
|
-
padding-left: .2em;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&.button-block, &.button-full {
|
|
70
|
-
margin-top: $button-block-margin;
|
|
71
|
-
margin-bottom: $button-block-margin;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
&.button-light {
|
|
75
|
-
@include button-style($button-light-bg, $button-default-border, $button-light-active-bg, $button-default-active-border, $button-light-text);
|
|
76
|
-
@include button-clear($button-light-border);
|
|
77
|
-
@include button-outline($button-light-border);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&.button-stable {
|
|
81
|
-
@include button-style($button-stable-bg, $button-default-border, $button-stable-active-bg, $button-default-active-border, $button-stable-text);
|
|
82
|
-
@include button-clear($button-stable-border);
|
|
83
|
-
@include button-outline($button-stable-border);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
&.button-positive {
|
|
87
|
-
@include button-style($button-positive-bg, $button-default-border, $button-positive-active-bg, $button-default-active-border, $button-positive-text);
|
|
88
|
-
@include button-clear($button-positive-bg);
|
|
89
|
-
@include button-outline($button-positive-bg);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&.button-calm {
|
|
93
|
-
@include button-style($button-calm-bg, $button-default-border, $button-calm-active-bg, $button-default-active-border, $button-calm-text);
|
|
94
|
-
@include button-clear($button-calm-bg);
|
|
95
|
-
@include button-outline($button-calm-bg);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
&.button-assertive {
|
|
99
|
-
@include button-style($button-assertive-bg, $button-default-border, $button-assertive-active-bg, $button-default-active-border, $button-assertive-text);
|
|
100
|
-
@include button-clear($button-assertive-bg);
|
|
101
|
-
@include button-outline($button-assertive-bg);
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
&.button-balanced {
|
|
105
|
-
@include button-style($button-balanced-bg, $button-default-border, $button-balanced-active-bg, $button-default-active-border, $button-balanced-text);
|
|
106
|
-
@include button-clear($button-balanced-bg);
|
|
107
|
-
@include button-outline($button-balanced-bg);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
&.button-energized {
|
|
111
|
-
@include button-style($button-energized-bg, $button-default-border, $button-energized-active-bg, $button-default-active-border, $button-energized-text);
|
|
112
|
-
@include button-clear($button-energized-bg);
|
|
113
|
-
@include button-outline($button-energized-bg);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
&.button-royal {
|
|
117
|
-
@include button-style($button-royal-bg, $button-default-border, $button-royal-active-bg, $button-default-active-border, $button-royal-text);
|
|
118
|
-
@include button-clear($button-royal-bg);
|
|
119
|
-
@include button-outline($button-royal-bg);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
&.button-dark {
|
|
123
|
-
@include button-style($button-dark-bg, $button-default-border, $button-dark-active-bg, $button-default-active-border, $button-dark-text);
|
|
124
|
-
@include button-clear($button-dark-bg);
|
|
125
|
-
@include button-outline($button-dark-bg);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.button-small {
|
|
130
|
-
padding: 2px $button-small-padding 1px;
|
|
131
|
-
min-width: $button-small-height;
|
|
132
|
-
min-height: $button-small-height + 2;
|
|
133
|
-
font-size: $button-small-font-size;
|
|
134
|
-
line-height: $button-small-height - $button-border-width - 1;
|
|
135
|
-
|
|
136
|
-
.icon:before,
|
|
137
|
-
&.icon:before,
|
|
138
|
-
&.icon-left:before,
|
|
139
|
-
&.icon-right:before {
|
|
140
|
-
font-size: $button-small-icon-size;
|
|
141
|
-
line-height: $button-small-icon-size + 3;
|
|
142
|
-
margin-top: 3px;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.button-large {
|
|
147
|
-
padding: 0 $button-large-padding;
|
|
148
|
-
min-width: ($button-large-padding * 3) + $button-large-font-size;
|
|
149
|
-
min-height: $button-large-height + 5;
|
|
150
|
-
font-size: $button-large-font-size;
|
|
151
|
-
line-height: $button-large-height - $button-border-width;
|
|
152
|
-
|
|
153
|
-
.icon:before,
|
|
154
|
-
&.icon:before,
|
|
155
|
-
&.icon-left:before,
|
|
156
|
-
&.icon-right:before {
|
|
157
|
-
padding-bottom: ($button-border-width * 2);
|
|
158
|
-
font-size: $button-large-icon-size;
|
|
159
|
-
line-height: $button-large-height - ($button-border-width * 2) - 1;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.button-icon {
|
|
164
|
-
@include transition(opacity .1s);
|
|
165
|
-
padding: 0 6px;
|
|
166
|
-
min-width: initial;
|
|
167
|
-
border-color: transparent;
|
|
168
|
-
background: none;
|
|
169
|
-
|
|
170
|
-
&.button.active,
|
|
171
|
-
&.button.activated {
|
|
172
|
-
border-color: transparent;
|
|
173
|
-
background: none;
|
|
174
|
-
box-shadow: none;
|
|
175
|
-
opacity: 0.3;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.icon:before,
|
|
179
|
-
&.icon:before {
|
|
180
|
-
font-size: $button-large-icon-size;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
.button-clear {
|
|
185
|
-
@include button-clear($button-default-border);
|
|
186
|
-
@include transition(opacity .1s);
|
|
187
|
-
padding: 0 $button-clear-padding;
|
|
188
|
-
max-height: $button-height;
|
|
189
|
-
border-color: transparent;
|
|
190
|
-
background: none;
|
|
191
|
-
box-shadow: none;
|
|
192
|
-
|
|
193
|
-
&.active,
|
|
194
|
-
&.activated {
|
|
195
|
-
opacity: 0.3;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.button-outline {
|
|
200
|
-
@include button-outline($button-default-border);
|
|
201
|
-
@include transition(opacity .1s);
|
|
202
|
-
background: none;
|
|
203
|
-
box-shadow: none;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.padding > .button.button-block:first-child {
|
|
207
|
-
margin-top: 0;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.button-block {
|
|
211
|
-
display: block;
|
|
212
|
-
clear: both;
|
|
213
|
-
|
|
214
|
-
&:after {
|
|
215
|
-
clear: both;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.button-full,
|
|
220
|
-
.button-full > .button {
|
|
221
|
-
display: block;
|
|
222
|
-
margin-right: 0;
|
|
223
|
-
margin-left: 0;
|
|
224
|
-
border-right-width: 0;
|
|
225
|
-
border-left-width: 0;
|
|
226
|
-
border-radius: 0;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
button.button-block,
|
|
230
|
-
button.button-full,
|
|
231
|
-
.button-full > button.button,
|
|
232
|
-
input.button.button-block {
|
|
233
|
-
width: 100%;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
a.button {
|
|
237
|
-
text-decoration: none;
|
|
238
|
-
|
|
239
|
-
.icon:before,
|
|
240
|
-
&.icon:before,
|
|
241
|
-
&.icon-left:before,
|
|
242
|
-
&.icon-right:before {
|
|
243
|
-
margin-top: 2px;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.button.disabled,
|
|
248
|
-
.button[disabled] {
|
|
249
|
-
opacity: .4;
|
|
250
|
-
cursor: default !important;
|
|
251
|
-
pointer-events: none;
|
|
252
|
-
}
|
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Checkbox
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.checkbox {
|
|
8
|
-
// set the color defaults
|
|
9
|
-
@include checkbox-style($checkbox-off-border-default, $checkbox-on-bg-default, $checkbox-on-border-default);
|
|
10
|
-
|
|
11
|
-
position: relative;
|
|
12
|
-
display: inline-block;
|
|
13
|
-
padding: ($checkbox-height / 4) ($checkbox-width / 4);
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
}
|
|
16
|
-
.checkbox-light {
|
|
17
|
-
@include checkbox-style($checkbox-off-border-light, $checkbox-on-bg-light, $checkbox-off-border-light);
|
|
18
|
-
}
|
|
19
|
-
.checkbox-stable {
|
|
20
|
-
@include checkbox-style($checkbox-off-border-stable, $checkbox-on-bg-stable, $checkbox-off-border-stable);
|
|
21
|
-
}
|
|
22
|
-
.checkbox-positive {
|
|
23
|
-
@include checkbox-style($checkbox-off-border-positive, $checkbox-on-bg-positive, $checkbox-off-border-positive);
|
|
24
|
-
}
|
|
25
|
-
.checkbox-calm {
|
|
26
|
-
@include checkbox-style($checkbox-off-border-calm, $checkbox-on-bg-calm, $checkbox-off-border-calm);
|
|
27
|
-
}
|
|
28
|
-
.checkbox-assertive {
|
|
29
|
-
@include checkbox-style($checkbox-off-border-assertive, $checkbox-on-bg-assertive, $checkbox-off-border-assertive);
|
|
30
|
-
}
|
|
31
|
-
.checkbox-balanced {
|
|
32
|
-
@include checkbox-style($checkbox-off-border-balanced, $checkbox-on-bg-balanced, $checkbox-off-border-balanced);
|
|
33
|
-
}
|
|
34
|
-
.checkbox-energized{
|
|
35
|
-
@include checkbox-style($checkbox-off-border-energized, $checkbox-on-bg-energized, $checkbox-off-border-energized);
|
|
36
|
-
}
|
|
37
|
-
.checkbox-royal {
|
|
38
|
-
@include checkbox-style($checkbox-off-border-royal, $checkbox-on-bg-royal, $checkbox-off-border-royal);
|
|
39
|
-
}
|
|
40
|
-
.checkbox-dark {
|
|
41
|
-
@include checkbox-style($checkbox-off-border-dark, $checkbox-on-bg-dark, $checkbox-off-border-dark);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.checkbox input:disabled:before,
|
|
45
|
-
.checkbox input:disabled + .checkbox-icon:before {
|
|
46
|
-
border-color: $checkbox-off-border-light;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.checkbox input:disabled:checked:before,
|
|
50
|
-
.checkbox input:disabled:checked + .checkbox-icon:before {
|
|
51
|
-
background: $checkbox-on-bg-light;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
.checkbox.checkbox-input-hidden input {
|
|
56
|
-
display: none !important;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.checkbox input,
|
|
60
|
-
.checkbox-icon {
|
|
61
|
-
position: relative;
|
|
62
|
-
width: $checkbox-width;
|
|
63
|
-
height: $checkbox-height;
|
|
64
|
-
display: block;
|
|
65
|
-
border: 0;
|
|
66
|
-
background: transparent;
|
|
67
|
-
cursor: pointer;
|
|
68
|
-
-webkit-appearance: none;
|
|
69
|
-
|
|
70
|
-
&:before {
|
|
71
|
-
// what the checkbox looks like when its not checked
|
|
72
|
-
display: table;
|
|
73
|
-
width: 100%;
|
|
74
|
-
height: 100%;
|
|
75
|
-
border-width: $checkbox-border-width;
|
|
76
|
-
border-style: solid;
|
|
77
|
-
border-radius: $checkbox-border-radius;
|
|
78
|
-
background: $checkbox-off-bg-color;
|
|
79
|
-
content: ' ';
|
|
80
|
-
@include transition(background-color 20ms ease-in-out);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.checkbox input:checked:before,
|
|
85
|
-
input:checked + .checkbox-icon:before {
|
|
86
|
-
border-width: $checkbox-border-width + 1;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// the checkmark within the box
|
|
90
|
-
.checkbox input:after,
|
|
91
|
-
.checkbox-icon:after {
|
|
92
|
-
@include transition(opacity .05s ease-in-out);
|
|
93
|
-
@include rotate(-45deg);
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 33%;
|
|
96
|
-
left: 25%;
|
|
97
|
-
display: table;
|
|
98
|
-
width: ($checkbox-width / 2);
|
|
99
|
-
height: ($checkbox-width / 4) - 1;
|
|
100
|
-
border: $checkbox-check-width solid $checkbox-check-color;
|
|
101
|
-
border-top: 0;
|
|
102
|
-
border-right: 0;
|
|
103
|
-
content: ' ';
|
|
104
|
-
opacity: 0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.platform-android .checkbox-platform input:before,
|
|
108
|
-
.platform-android .checkbox-platform .checkbox-icon:before,
|
|
109
|
-
.checkbox-square input:before,
|
|
110
|
-
.checkbox-square .checkbox-icon:before {
|
|
111
|
-
border-radius: 2px;
|
|
112
|
-
width: 72%;
|
|
113
|
-
height: 72%;
|
|
114
|
-
margin-top: 14%;
|
|
115
|
-
margin-left: 14%;
|
|
116
|
-
border-width: 2px;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.platform-android .checkbox-platform input:after,
|
|
120
|
-
.platform-android .checkbox-platform .checkbox-icon:after,
|
|
121
|
-
.checkbox-square input:after,
|
|
122
|
-
.checkbox-square .checkbox-icon:after {
|
|
123
|
-
border-width: 2px;
|
|
124
|
-
top: 19%;
|
|
125
|
-
left: 25%;
|
|
126
|
-
width: ($checkbox-width / 2) - 1;
|
|
127
|
-
height: 7px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.platform-android .item-checkbox-right .checkbox-square .checkbox-icon::after {
|
|
131
|
-
top: 31%;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.grade-c .checkbox input:after,
|
|
135
|
-
.grade-c .checkbox-icon:after {
|
|
136
|
-
@include rotate(0);
|
|
137
|
-
top: 3px;
|
|
138
|
-
left: 4px;
|
|
139
|
-
border: none;
|
|
140
|
-
color: $checkbox-check-color;
|
|
141
|
-
content: '\2713';
|
|
142
|
-
font-weight: bold;
|
|
143
|
-
font-size: 20px;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// what the checkmark looks like when its checked
|
|
147
|
-
.checkbox input:checked:after,
|
|
148
|
-
input:checked + .checkbox-icon:after {
|
|
149
|
-
opacity: 1;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// make sure item content have enough padding on left to fit the checkbox
|
|
153
|
-
.item-checkbox {
|
|
154
|
-
padding-left: ($item-padding * 2) + $checkbox-width;
|
|
155
|
-
|
|
156
|
-
&.active {
|
|
157
|
-
box-shadow: none;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
// position the checkbox to the left within an item
|
|
162
|
-
.item-checkbox .checkbox {
|
|
163
|
-
position: absolute;
|
|
164
|
-
top: 50%;
|
|
165
|
-
right: $item-padding / 2;
|
|
166
|
-
left: $item-padding / 2;
|
|
167
|
-
z-index: $z-index-item-checkbox;
|
|
168
|
-
margin-top: (($checkbox-height + ($checkbox-height / 2)) / 2) * -1;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
.item-checkbox.item-checkbox-right {
|
|
173
|
-
padding-right: ($item-padding * 2) + $checkbox-width;
|
|
174
|
-
padding-left: $item-padding;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.item-checkbox-right .checkbox input,
|
|
178
|
-
.item-checkbox-right .checkbox-icon {
|
|
179
|
-
float: right;
|
|
180
|
-
}
|