cronapp-framework-mobile-js 2.8.8 → 2.9.0
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/components/crn-button-bar.components.json +1 -1
- package/components/crn-button.components.json +1 -1
- package/components/crn-chart.components.json +1 -0
- package/components/crn-checkbox.components.json +2 -1
- package/components/crn-dynamic-image.components.json +9 -0
- package/components/crn-header-button.components.json +1 -1
- package/components/crn-input-floating.components.json +4 -4
- package/components/crn-ion-footer-bar.components.json +3 -3
- package/components/crn-ion-header-bar.components.json +1 -1
- package/components/crn-ion-list.components.json +0 -31
- package/components/crn-ion-segment-item.components.json +68 -0
- package/components/crn-ion-segment.components.json +974 -0
- package/components/crn-ion-tab.components.json +1 -0
- package/components/crn-item-swipe.components.json +3 -3
- package/components/crn-list-item-icon.components.json +7 -20
- package/components/crn-list-swipe.components.json +2 -2
- package/components/crn-list.components.json +1 -1
- package/components/crn-multiselect.components.json +1 -1
- package/components/crn-navbar.components.json +1 -0
- package/components/crn-range.components.json +1 -1
- package/components/crn-signature-pad.components.json +36 -0
- package/components/crn-slider-item.components.json +104 -5
- package/components/crn-slider.components.json +6 -6
- package/components/crn-textarea.components.json +1 -1
- package/components/css/app.css +78 -0
- package/components/css/background-color.css +39 -1
- package/components/css/color-default.css +0 -28
- package/components/css/crn-ion-segment.css +786 -0
- package/components/css/icon-size.css +4 -4
- package/components/templates/advanced.list.designtime.html +0 -24
- package/components/templates/checkbox.template.html +6 -7
- package/components/templates/crn-ion-segment-item.template.html +6 -0
- package/components/templates/crn-ion-segment.template.html +27 -0
- package/components/templates/crn-signature-pad.designtime.html +31 -0
- package/components/templates/crn-signature-pad.template.html +1 -0
- package/components/templates/ion-footer-bar.template.html +11 -5
- package/components/templates/ion-header-bar.template.html +2 -2
- package/components/templates/item.slider.template.html +3 -3
- package/components/templates/item.swipe.template.html +2 -2
- package/components/templates/slider.template.html +14 -18
- package/css/app.css +124 -34
- package/css/signup.css +13 -0
- package/dist/components/css/app.css +1 -0
- package/dist/components/css/background-color.css +1 -1
- package/dist/components/css/color-default.css +1 -1
- package/dist/components/css/crn-ion-segment.css +1 -0
- package/dist/components/templates/advanced.list.designtime.html +1 -1
- package/dist/components/templates/checkbox.template.html +1 -1
- package/dist/components/templates/crn-ion-segment-item.template.html +1 -0
- package/dist/components/templates/crn-ion-segment.template.html +1 -0
- package/dist/components/templates/crn-signature-pad.designtime.html +22 -0
- package/dist/components/templates/crn-signature-pad.template.html +1 -0
- package/dist/components/templates/ion-footer-bar.template.html +1 -1
- package/dist/components/templates/ion-header-bar.template.html +1 -1
- package/dist/components/templates/item.slider.template.html +1 -1
- package/dist/components/templates/item.swipe.template.html +1 -1
- package/dist/components/templates/slider.template.html +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/signup.css +1 -0
- package/dist/i18n/locale_en_us.json +3 -1
- package/dist/i18n/locale_pt_br.json +4 -1
- package/dist/img/cron-icon/crn-signature-pad.svg +1 -0
- package/dist/img/cron-icon/crn-tabs.svg +1 -1
- package/dist/img/placehold-300x200.png +0 -0
- package/dist/js/app.authentication.js +1 -1
- package/dist/js/controllers.authentication.js +1 -1
- package/dist/js/directives.js +17 -1
- package/dist/js/reports/reports.service.js +1 -1
- package/i18n/locale_en_us.json +3 -1
- package/i18n/locale_pt_br.json +4 -1
- package/img/cron-icon/crn-signature-pad.svg +27 -0
- package/img/cron-icon/crn-tabs.svg +17 -18
- package/img/placehold-300x200.png +0 -0
- package/js/app.authentication.js +8 -1
- package/js/controllers.authentication.js +87 -4
- package/js/directives.js +216 -122
- package/js/reports/reports.service.js +6 -26
- package/lib/ionic/js/ionic.bundle.js +4 -2
- package/package.json +4 -2
- package/postupdate.json +11 -0
|
@@ -0,0 +1,786 @@
|
|
|
1
|
+
.crn-ion-segment-light ul, .crn-ion-segment-modern ul, .crn-ion-segment-classic ul {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
gap: 4px;
|
|
6
|
+
border-radius: 18px;
|
|
7
|
+
margin: 0 auto;
|
|
8
|
+
padding: 2.5px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.crn-ion-segment-light ul li, .crn-ion-segment-modern ul li, .crn-ion-segment-classic ul li {
|
|
12
|
+
background-color: transparent;
|
|
13
|
+
border: none;
|
|
14
|
+
border-radius: 16px;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
font-size: 11px;
|
|
17
|
+
text-align: center;
|
|
18
|
+
line-height: 21px;
|
|
19
|
+
padding-top: 2px;
|
|
20
|
+
min-width: 93px;
|
|
21
|
+
width: -webkit-fill-available;
|
|
22
|
+
height: 98%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.crn-ion-segment-light ul li a, .crn-ion-segment-modern ul li a, .crn-ion-segment-classic ul li a {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
width: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.crn-ion-segment-light ul {
|
|
33
|
+
min-height: 54px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.crn-ion-segment-classic ul.icon-orientation-below, .crn-ion-segment-modern ul.icon-orientation-below, .crn-ion-segment-classic ul.icon-orientation-above, .crn-ion-segment-modern ul.icon-orientation-above {
|
|
37
|
+
min-height: 54px;
|
|
38
|
+
height: 100%;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.crn-ion-segment-light ul li a, .crn-ion-segment-modern ul li a, .crn-ion-segment-classic ul li a {
|
|
42
|
+
height: 100%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.crn-ion-segment-modern ul.icon-orientation-left, .crn-ion-segment-classic ul.icon-orientation-left .crn-ion-segment-modern ul.icon-orientation-right, .crn-ion-segment-classic ul.icon-orientation-right {
|
|
46
|
+
min-height: auto;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.crn-ion-segment-light ul li a:hover, .crn-ion-segment-modern ul li a:hover, .crn-ion-segment-classic ul li a:hover {
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.crn-ion-segment-light ul li a i, .crn-ion-segment-modern ul li a i, .crn-ion-segment-classic ul li a i {
|
|
54
|
+
margin-bottom: 3px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.crn-ion-segment-light ul li.active a, .crn-ion-segment-modern ul li.active a, .crn-ion-segment-classic ul li.active a {
|
|
58
|
+
background-color: transparent;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.crn-ion-segment-light ul li.active {
|
|
62
|
+
font-weight: 600;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.crn-ion-segment-modern ul li.active, .crn-ion-segment-classic ul li.active {
|
|
66
|
+
box-shadow: rgb(0 16 46 / 15%) 0px 2px 3px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.crn-ion-segment-light ul li, .crn-ion-segment-modern ul li {
|
|
70
|
+
border-radius: 6px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.crn-ion-segment-light ul, .crn-ion-segment-modern ul {
|
|
74
|
+
border-radius: 0px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* tabs-template */
|
|
78
|
+
|
|
79
|
+
.crn-ion-segment-classic ul.tabs-template-compact {
|
|
80
|
+
width: 79%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.crn-ion-segment-light ul.tabs-template-full, .crn-ion-segment-modern ul.tabs-template-full {
|
|
84
|
+
width: 100%;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* icon-orientation */
|
|
88
|
+
|
|
89
|
+
.icon-orientation-above li a {
|
|
90
|
+
flex-direction: column;
|
|
91
|
+
gap: 0px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.icon-orientation-below li a {
|
|
95
|
+
flex-direction: column-reverse;
|
|
96
|
+
gap: 0px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.icon-orientation-right li a {
|
|
100
|
+
flex-direction: row-reverse;
|
|
101
|
+
gap: 5px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-orientation-left li a {
|
|
105
|
+
flex-direction: row;
|
|
106
|
+
gap: 5px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* icon-theme */
|
|
110
|
+
|
|
111
|
+
div.crn-ion-segment-light.icon-theme-light-assertive li a, .ion-segment-assertive li a {
|
|
112
|
+
color: var(--assertive);
|
|
113
|
+
opacity: 0.64;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
div.crn-ion-segment-light.icon-theme-light-assertive li.active a, .ion-segment-assertive li.active a {
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
div.crn-ion-segment-light.icon-theme-light-balanced li a, .ion-segment-balanced li a {
|
|
121
|
+
color: var(--balanced);
|
|
122
|
+
opacity: 0.64;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
div.crn-ion-segment-light.icon-theme-light-balanced li.active a, .ion-segment-balanced li.active a {
|
|
126
|
+
opacity: 1;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
div.crn-ion-segment-light.icon-theme-light-energized li a, .ion-segment-energized li a {
|
|
130
|
+
color: var(--energized);
|
|
131
|
+
opacity: 0.64;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
div.crn-ion-segment-light.icon-theme-light-energized li.active a, .ion-segment-energized li.active a {
|
|
135
|
+
opacity: 1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
div.crn-ion-segment-light.icon-theme-light-light li a, .ion-segment-light li a {
|
|
139
|
+
color: var(--light);
|
|
140
|
+
opacity: 0.64;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
div.crn-ion-segment-light.icon-theme-light-light li.active a, .ion-segment-light li.active a {
|
|
144
|
+
opacity: 1;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
div.crn-ion-segment-light.icon-theme-light-stable li a, .ion-segment-stable li a {
|
|
148
|
+
color: var(--stable);
|
|
149
|
+
opacity: 0.64;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
div.crn-ion-segment-light.icon-theme-light-stable li.active a, .ion-segment-stable li.active a {
|
|
153
|
+
opacity: 1;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
div.crn-ion-segment-light.icon-theme-light-calm li a, .ion-segment-calm li a {
|
|
157
|
+
color: var(--calm);
|
|
158
|
+
opacity: 0.64;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
div.crn-ion-segment-light.icon-theme-light-calm li.active a, .ion-segment-calm li.active a {
|
|
162
|
+
opacity: 1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
div.crn-ion-segment-light.icon-theme-light-positive li a, .ion-segment-positive li a {
|
|
166
|
+
color: var(--positive);
|
|
167
|
+
opacity: 0.64;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
div.crn-ion-segment-light.icon-theme-light-positive li.active a, .ion-segment-positive li.active a {
|
|
171
|
+
opacity: 1;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
div.crn-ion-segment-light.icon-theme-light-royal li a, .ion-segment-royal li a {
|
|
175
|
+
color: var(--royal);
|
|
176
|
+
opacity: 0.64;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
div.crn-ion-segment-light.icon-theme-light-royal li.active a, .ion-segment-royal li.active a {
|
|
180
|
+
opacity: 1;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
div.crn-ion-segment-light.icon-theme-light-dark li a, .ion-segment-dark li a {
|
|
184
|
+
color: var(--dark);
|
|
185
|
+
opacity: 0.64;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
div.crn-ion-segment-light.icon-theme-light-dark li.active a, .ion-segment-dark li.active a {
|
|
189
|
+
opacity: 1;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
div.crn-ion-segment-light.icon-theme-light-white li a, .ion-segment-white li a {
|
|
193
|
+
color: var(--white);
|
|
194
|
+
opacity: 0.64;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
div.crn-ion-segment-light.icon-theme-light-white li.active a, .ion-segment-white li.active a {
|
|
198
|
+
opacity: 1;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
div.crn-ion-segment-light.icon-theme-light-gray li a, .ion-segment-gray li a {
|
|
202
|
+
color: var(--gray);
|
|
203
|
+
opacity: 0.64;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
div.crn-ion-segment-light.icon-theme-light-gray li.active a, .ion-segment-gray li.active a {
|
|
207
|
+
opacity: 1;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
div.crn-ion-segment-light.icon-theme-light-black li a, .ion-segment-black li a {
|
|
211
|
+
color: var(--black);
|
|
212
|
+
opacity: 0.64;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
div.crn-ion-segment-light.icon-theme-light-black li.active a, .ion-segment-black li.active a {
|
|
216
|
+
opacity: 1;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
div.crn-ion-segment-light.icon-theme-light-blue li a, .ion-segment-blue li a {
|
|
220
|
+
color: var(--blue);
|
|
221
|
+
opacity: 0.64;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
div.crn-ion-segment-light.icon-theme-light-blue li.active a, .ion-segment-blue li.active a {
|
|
225
|
+
opacity: 1;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
div.crn-ion-segment-light.icon-theme-light-light-blue li a, .ion-segment-light-blue li a {
|
|
229
|
+
color: var(--light-blue);
|
|
230
|
+
opacity: 0.64;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
div.crn-ion-segment-light.icon-theme-light-light-blue li.active a, .ion-segment-light-blue li.active a {
|
|
234
|
+
opacity: 1;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
div.crn-ion-segment-light.icon-theme-light-dark-blue li a, .ion-segment-dark-blue li a {
|
|
238
|
+
color: var(--dark-blue);
|
|
239
|
+
opacity: 0.64;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
div.crn-ion-segment-light.icon-theme-light-dark-blue li.active a, .ion-segment-dark-blue li.active a {
|
|
243
|
+
opacity: 1;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
div.crn-ion-segment-light.icon-theme-light-purple li a, .ion-segment-purple li a {
|
|
247
|
+
color: var(--purple);
|
|
248
|
+
opacity: 0.64;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
div.crn-ion-segment-light.icon-theme-light-purple li.active a, .ion-segment-purple li.active a {
|
|
252
|
+
opacity: 1;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
div.crn-ion-segment-light.icon-theme-light-light-purple li a, .ion-segment-light-purple li a {
|
|
256
|
+
color: var(--light-purple);
|
|
257
|
+
opacity: 0.64;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
div.crn-ion-segment-light.icon-theme-light-light-purple li.active a, .ion-segment-light-purple li.active a {
|
|
261
|
+
opacity: 1;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
div.crn-ion-segment-light.icon-theme-light-dark-purple li a, .ion-segment-dark-purple li a {
|
|
265
|
+
color: var(--dark-purple);
|
|
266
|
+
opacity: 0.64;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
div.crn-ion-segment-light.icon-theme-light-dark-purple li.active a, .ion-segment-dark-purple li.active a {
|
|
270
|
+
opacity: 1;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
div.crn-ion-segment-light.icon-theme-light-red li a, .ion-segment-red li a {
|
|
274
|
+
color: var(--red);
|
|
275
|
+
opacity: 0.64;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
div.crn-ion-segment-light.icon-theme-light-red li.active a, .ion-segment-red li.active a {
|
|
279
|
+
opacity: 1;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
div.crn-ion-segment-light.icon-theme-light-light-red li a, .ion-segment-light-red li a {
|
|
283
|
+
color: var(--light-red);
|
|
284
|
+
opacity: 0.64;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
div.crn-ion-segment-light.icon-theme-light-light-red li.active a, .ion-segment-light-red li.active a {
|
|
288
|
+
opacity: 1;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
div.crn-ion-segment-light.icon-theme-light-dark-red li a, .ion-segment-dark-red li a {
|
|
292
|
+
color: var(--dark-red);
|
|
293
|
+
opacity: 0.64;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
div.crn-ion-segment-light.icon-theme-light-dark-red li.active a, .ion-segment-dark-red li.active a {
|
|
297
|
+
opacity: 1;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
div.crn-ion-segment-light.icon-theme-light-orange li a, .ion-segment-orange li a {
|
|
301
|
+
color: var(--orange);
|
|
302
|
+
opacity: 0.64;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
div.crn-ion-segment-light.icon-theme-light-orange li.active a, .ion-segment-orange li.active a {
|
|
306
|
+
opacity: 1;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
div.crn-ion-segment-light.icon-theme-light-light-red li a, .ion-segment-light-orange li a {
|
|
310
|
+
color: var(--light-orange);
|
|
311
|
+
opacity: 0.64;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
div.crn-ion-segment-light.icon-theme-light-light-red li.active a, .ion-segment-light-orange li.active a {
|
|
315
|
+
opacity: 1;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
div.crn-ion-segment-light.icon-theme-light-dark-red li a, .ion-segment-dark-orange li a {
|
|
319
|
+
color: var(--dark-orange);
|
|
320
|
+
opacity: 0.64;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
div.crn-ion-segment-light.icon-theme-light-dark-red li.active a, .ion-segment-dark-orange li.active a {
|
|
324
|
+
opacity: 1;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
div.crn-ion-segment-light.icon-theme-light-yellow li a, .ion-segment-yellow li a {
|
|
328
|
+
color: var(--yellow);
|
|
329
|
+
opacity: 0.64;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
div.crn-ion-segment-light.icon-theme-light-yellow li.active a, .ion-segment-yellow li.active a {
|
|
333
|
+
opacity: 1;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
div.crn-ion-segment-light.icon-theme-light-light-yellow li a, .ion-segment-light-yellow li a {
|
|
337
|
+
color: var(--light-yellow);
|
|
338
|
+
opacity: 0.64;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
div.crn-ion-segment-light.icon-theme-light-light-yellow li.active a, .ion-segment-light-yellow li.active a {
|
|
342
|
+
opacity: 1;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
div.crn-ion-segment-light.icon-theme-light-dark-yellow li a, .ion-segment-dark-yellow li a {
|
|
346
|
+
color: var(--dark-yellow);
|
|
347
|
+
opacity: 0.64;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
div.crn-ion-segment-light.icon-theme-light-dark-yellow li.active a, .ion-segment-dark-yellow li.active a {
|
|
351
|
+
opacity: 1;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
div.crn-ion-segment-light.icon-theme-light-green li a, .ion-segment-green li a {
|
|
355
|
+
color: var(--green);
|
|
356
|
+
opacity: 0.64;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
div.crn-ion-segment-light.icon-theme-light-green li.active a, .ion-segment-green li.active a {
|
|
360
|
+
opacity: 1;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
div.crn-ion-segment-light.icon-theme-light-light-green li a, .ion-segment-light-green li a {
|
|
364
|
+
color: var(--light-green);
|
|
365
|
+
opacity: 0.64;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
div.crn-ion-segment-light.icon-theme-light-light-green li.active a, .ion-segment-light-green li.active a {
|
|
369
|
+
opacity: 1;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
div.crn-ion-segment-light.icon-theme-light-dark-green li a, .ion-segment-dark-green li a {
|
|
373
|
+
color: var(--dark-green);
|
|
374
|
+
opacity: 0.64;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
div.crn-ion-segment-light.icon-theme-light-dark-green li.active a, .ion-segment-dark-green li.active a {
|
|
378
|
+
opacity: 1;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/* icon-size */
|
|
382
|
+
|
|
383
|
+
.font-size-100 i {
|
|
384
|
+
font-size: 100%;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.font-size-200 i {
|
|
388
|
+
font-size: 200%;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.font-size-300 i {
|
|
392
|
+
font-size: 300%;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.font-size-400 i {
|
|
396
|
+
font-size: 400%;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.font-size-500 i {
|
|
400
|
+
font-size: 500%;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.font-size-600 i {
|
|
404
|
+
font-size: 600%;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.font-size-700 i {
|
|
408
|
+
font-size: 700%;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/* background-color */
|
|
412
|
+
|
|
413
|
+
.background-assertive {
|
|
414
|
+
background-color: #ef473a47;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.background-balanced {
|
|
418
|
+
background-color: #33cd5f47;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.background-energized {
|
|
422
|
+
background-color: #ffc90047;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.background-light {
|
|
426
|
+
background-color: #ffffff47;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.background-stable {
|
|
430
|
+
background-color: #f8f8f847;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.background-calm {
|
|
434
|
+
background-color: #11c1f347;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.background-positive {
|
|
438
|
+
background-color: #387ef547;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.background-royal {
|
|
442
|
+
background-color: #886aea47;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.background-dark {
|
|
446
|
+
background-color: #44444447;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.background-white {
|
|
450
|
+
background-color: #ffffff47;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.background-gray {
|
|
454
|
+
background-color: #33333347;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.background-black {
|
|
458
|
+
background-color: #00000047;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.background-blue {
|
|
462
|
+
background-color: #0247FE47;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.background-light-blue {
|
|
466
|
+
background-color: #85A5FF47;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.background-dark-blue {
|
|
470
|
+
background-color: #00217A47;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.background-purple {
|
|
474
|
+
background-color: #3D01A447;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.background-light-purple {
|
|
478
|
+
background-color: #B285FF47;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.background-dark-purple {
|
|
482
|
+
background-color: #2D007A47;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.background-red {
|
|
486
|
+
background-color: #FE271247;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.background-light-red {
|
|
490
|
+
background-color: #FE8F8447;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.background-dark-red {
|
|
494
|
+
background-color: #7A0B0047;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.background-orange {
|
|
498
|
+
background-color: #FB9B0247;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.background-light-orange {
|
|
502
|
+
background-color: #FFD08547;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.background-dark-orange {
|
|
506
|
+
background-color: #7A4B0047;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.background-yellow {
|
|
510
|
+
background-color: #FFFF3347;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.background-light-yellow {
|
|
514
|
+
background-color: #FFFF8547;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.background-dark-yellow {
|
|
518
|
+
background-color: #7A7A0047;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.background-green {
|
|
522
|
+
background-color: #66B03247;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.background-light-green {
|
|
526
|
+
background-color: #B7FF8547;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.background-dark-green {
|
|
530
|
+
background-color: #337A0047;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/* background-color-active */
|
|
534
|
+
|
|
535
|
+
div.crn-ion-segment-classic ul.active-background-assertive li.active, div.crn-ion-segment-modern ul.active-background-assertive li.active {
|
|
536
|
+
background-color: var(--assertive);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
div.crn-ion-segment-classic ul.active-background-balanced li.active, div.crn-ion-segment-modern ul.active-background-balanced li.active {
|
|
540
|
+
background-color: var(--balanced);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
div.crn-ion-segment-classic ul.active-background-energized li.active, div.crn-ion-segment-modern ul.active-background-energized li.active {
|
|
544
|
+
background-color: var(--energized);
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
div.crn-ion-segment-classic ul.active-background-light li.active, div.crn-ion-segment-modern ul.active-background-light li.active {
|
|
548
|
+
background-color: var(--light);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
div.crn-ion-segment-classic ul.active-background-stable li.active, div.crn-ion-segment-modern ul.active-background-stable li.active {
|
|
552
|
+
background-color: var(--stable);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
div.crn-ion-segment-classic ul.active-background-calm li.active, div.crn-ion-segment-modern ul.active-background-calm li.active {
|
|
556
|
+
background-color: var(--calm);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
div.crn-ion-segment-classic ul.active-background-positive li.active, div.crn-ion-segment-modern ul.active-background-positive li.active {
|
|
560
|
+
background-color: var(--positive);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
div.crn-ion-segment-classic ul.active-background-royal li.active, div.crn-ion-segment-modern ul.active-background-royal li.active {
|
|
564
|
+
background-color: var(--royal);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
div.crn-ion-segment-classic ul.active-background-dark li.active, div.crn-ion-segment-modern ul.active-background-dark li.active {
|
|
568
|
+
background-color: var(--dark);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
div.crn-ion-segment-classic ul.active-background-white li.active, div.crn-ion-segment-modern ul.active-background-white li.active {
|
|
572
|
+
background-color: var(--white);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
div.crn-ion-segment-classic ul.active-background-gray li.active, div.crn-ion-segment-modern ul.active-background-gray li.active {
|
|
576
|
+
background-color: var(--gray);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
div.crn-ion-segment-classic ul.active-background-black li.active, div.crn-ion-segment-modern ul.active-background-black li.active {
|
|
580
|
+
background-color: var(--black);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
div.crn-ion-segment-classic ul.active-background-blue li.active, div.crn-ion-segment-modern ul.active-background-blue li.active {
|
|
584
|
+
background-color: var(--blue);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
div.crn-ion-segment-classic ul.active-background-light-blue li.active, div.crn-ion-segment-modern ul.active-background-light-blue li.active {
|
|
588
|
+
background-color: var(--light-blue);
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
div.crn-ion-segment-classic ul.active-background-dark-blue li.active, div.crn-ion-segment-modern ul.active-background-dark-blue li.active {
|
|
592
|
+
background-color: var(--dark-blue);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
div.crn-ion-segment-classic ul.active-background-purple li.active, div.crn-ion-segment-modern ul.active-background-purple li.active {
|
|
596
|
+
background-color: var(--purple);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
div.crn-ion-segment-classic ul.active-background-light-purple li.active, div.crn-ion-segment-modern ul.active-background-light-purple li.active {
|
|
600
|
+
background-color: var(--light-purple);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
div.crn-ion-segment-classic ul.active-background-dark-purple li.active, div.crn-ion-segment-modern ul.active-background-dark-purple li.active {
|
|
604
|
+
background-color: var(--dark-purple);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
div.crn-ion-segment-classic ul.active-background-red li.active, div.crn-ion-segment-modern ul.active-background-red li.active {
|
|
608
|
+
background-color: var(--red);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
div.crn-ion-segment-classic ul.active-background-light-red li.active, div.crn-ion-segment-modern ul.active-background-light-red li.active {
|
|
612
|
+
background-color: var(--light-red);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
div.crn-ion-segment-classic ul.active-background-dark-red li.active, div.crn-ion-segment-modern ul.active-background-dark-red li.active {
|
|
616
|
+
background-color: var(--dark-red);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
div.crn-ion-segment-classic ul.active-background-orange li.active, div.crn-ion-segment-modern ul.active-background-orange li.active {
|
|
620
|
+
background-color: var(--orange);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
div.crn-ion-segment-classic ul.active-background-light-orange li.active, div.crn-ion-segment-modern ul.active-background-light-orange li.active {
|
|
624
|
+
background-color: var(--light-orange);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
div.crn-ion-segment-classic ul.active-background-dark-orange li.active, div.crn-ion-segment-modern ul.active-background-dark-orange li.active {
|
|
628
|
+
background-color: var(--dark-orange);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
div.crn-ion-segment-classic ul.active-background-yellow li.active, div.crn-ion-segment-modern ul.active-background-yellow li.active {
|
|
632
|
+
background-color: var(--yellow);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
div.crn-ion-segment-classic ul.active-background-light-yellow li.active, div.crn-ion-segment-modern ul.active-background-light-yellow li.active {
|
|
636
|
+
background-color: var(--light-yellow);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
div.crn-ion-segment-classic ul.active-background-dark-yellow li.active, div.crn-ion-segment-modern ul.active-background-dark-yellow li.active {
|
|
640
|
+
background-color: var(--dark-yellow);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
div.crn-ion-segment-classic ul.active-background-green li.active, div.crn-ion-segment-modern ul.active-background-green li.active {
|
|
644
|
+
background-color: var(--green);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
div.crn-ion-segment-classic ul.active-background-light-green li.active, div.crn-ion-segment-modern ul.active-background-light-green li.active {
|
|
648
|
+
background-color: var(--light-green);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
div.crn-ion-segment-classic ul.active-background-dark-green li.active, div.crn-ion-segment-modern ul.active-background-dark-green li.active {
|
|
652
|
+
background-color: var(--dark-green);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.crn-ion-segment-light ul {
|
|
656
|
+
padding-bottom: 0;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
/* light background-color-active */
|
|
660
|
+
|
|
661
|
+
div.crn-ion-segment-light ul li.active {
|
|
662
|
+
border-bottom: 1px solid;
|
|
663
|
+
border-radius: 0;
|
|
664
|
+
box-shadow: none;
|
|
665
|
+
background-color: transparent;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
div.crn-ion-segment-light.icon-theme-light-white li.active {
|
|
669
|
+
border-color: var(--white);
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
div.crn-ion-segment-light.icon-theme-light-gray li.active {
|
|
673
|
+
border-color: var(--gray);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
div.crn-ion-segment-light.icon-theme-light-black li.active {
|
|
677
|
+
border-color: var(--black);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
div.crn-ion-segment-light.icon-theme-light-blue li.active {
|
|
681
|
+
border-color: var(--blue);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
div.crn-ion-segment-light.icon-theme-light-light-blue li.active {
|
|
685
|
+
border-color: var(--light-blue);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
div.crn-ion-segment-light.icon-theme-light-dark-blue li.active {
|
|
689
|
+
border-color: var(--dark-blue);
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
div.crn-ion-segment-light.icon-theme-light-purple li.active {
|
|
693
|
+
border-color: var(--purple);
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
div.crn-ion-segment-light.icon-theme-light-light-purple li.active {
|
|
697
|
+
border-color: var(--light-purple);
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
div.crn-ion-segment-light.icon-theme-light-dark-purple li.active {
|
|
701
|
+
border-color: var(--dark-purple);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
div.crn-ion-segment-light.icon-theme-light-red li.active {
|
|
705
|
+
border-color: var(--red);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
div.crn-ion-segment-light.icon-theme-light-light-red li.active {
|
|
709
|
+
border-color: var(--light-red);
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
div.crn-ion-segment-light.icon-theme-light-dark-red li.active {
|
|
713
|
+
border-color: var(--dark-red);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
div.crn-ion-segment-light.icon-theme-light-orange li.active {
|
|
717
|
+
border-color: var(--orange);
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
div.crn-ion-segment-light.icon-theme-light-light-orange li.active {
|
|
721
|
+
border-color: var(--light-orange);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
div.crn-ion-segment-light.icon-theme-light-dark-orange li.active {
|
|
725
|
+
border-color: var(--dark-orange);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
div.crn-ion-segment-light.icon-theme-light-yellow li.active {
|
|
729
|
+
border-color: var(--yellow);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
div.crn-ion-segment-light.icon-theme-light-light-yellow li.active {
|
|
733
|
+
border-color: var(--light-yellow);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
div.crn-ion-segment-light.icon-theme-light-dark-yellow li.active {
|
|
737
|
+
border-color: var(--dark-yellow);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
div.crn-ion-segment-light.icon-theme-light-green li.active {
|
|
741
|
+
border-color: var(--green);
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
div.crn-ion-segment-light.icon-theme-light-light-green li.active {
|
|
745
|
+
border-color: var(--light-green);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
div.crn-ion-segment-light.icon-theme-light-dark-green li.active {
|
|
749
|
+
border-color: var(--dark-green);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
div.crn-ion-segment-light.icon-theme-light-assertive li.active {
|
|
753
|
+
border-color: var(--assertive);
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
div.crn-ion-segment-light.icon-theme-light-balanced li.active {
|
|
757
|
+
border-color: var(--balanced);
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
div.crn-ion-segment-light.icon-theme-light-energized li.active {
|
|
761
|
+
border-color: var(--energized);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
div.crn-ion-segment-light.icon-theme-light-light li.active {
|
|
765
|
+
border-color: var(--light);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
div.crn-ion-segment-light.icon-theme-light-stable li.active {
|
|
769
|
+
border-color: var(--stable);
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
div.crn-ion-segment-light.icon-theme-light-calm li.active {
|
|
773
|
+
border-color: var(--calm);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
div.crn-ion-segment-light.icon-theme-light-positive li.active {
|
|
777
|
+
border-color: var(--positive);
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
div.crn-ion-segment-light.icon-theme-light-royal li.active {
|
|
781
|
+
border-color: var(--royal);
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
div.crn-ion-segment-light.icon-theme-light-dark li.active {
|
|
785
|
+
border-color: var(--dark);
|
|
786
|
+
}
|