cronapp-framework-mobile-js 3.0.0 → 3.1.0-SP.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/components/crn-icon.components.json +3 -3
- package/components/crn-input-floating.components.json +5 -0
- package/components/crn-start.components.json +3 -0
- package/components/css/app.css +10 -1
- package/css/app_2.9.css +21 -0
- package/css/fonts/nunito/nunito.css +270 -0
- package/css/themes/custom/cosmo/custom-cosmo.css +84 -13
- package/css/themes/custom/cyborg/custom-cyborg.css +55 -55
- package/css/themes/custom/krypton/custom-krypton.css +540 -313
- package/css/themes/custom/material-round/custom-material-round.css +267 -51
- package/css/themes/custom/nature/custom-nature.css +1602 -0
- package/css/themes/nature.min.css +5 -0
- package/dist/components/css/app.css +1 -1
- package/dist/css/app_2.9.css +1 -1
- package/dist/css/themes/custom/cosmo/custom-cosmo.css +1 -1
- package/dist/css/themes/custom/cyborg/custom-cyborg.css +1 -1
- package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
- package/dist/css/themes/custom/material-round/custom-material-round.css +1 -1
- package/dist/css/themes/custom/nature/custom-nature.css +1 -0
- package/dist/css/themes/nature.min.css +1 -0
- package/dist/js/app.authentication.js +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.authentication.js +1 -1
- package/dist/js/directives.js +2 -2
- package/dist/js/upload.service.js +1 -1
- package/js/app.authentication.js +8 -4
- package/js/app.js +4 -2
- package/js/controllers.authentication.js +8 -21
- package/js/directives.js +31 -0
- package/js/upload.service.js +7 -4
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"description": "Ícone",
|
|
8
8
|
"description_en_US": "Icon",
|
|
9
9
|
"template": "<i class=\"ion ion-android-star icon-font-size-default color-default\" icon-size=\"icon-font-size-default\" icon-theme=\"color-default\"></i>",
|
|
10
|
-
"wrapper":
|
|
10
|
+
"wrapper": true,
|
|
11
11
|
"properties": {
|
|
12
12
|
"id": {
|
|
13
13
|
"order": 1
|
|
@@ -283,9 +283,9 @@
|
|
|
283
283
|
}
|
|
284
284
|
],
|
|
285
285
|
"childrenProperties": [
|
|
286
|
-
|
|
286
|
+
{
|
|
287
287
|
"name": "class",
|
|
288
|
-
"selector": "
|
|
288
|
+
"selector": "i",
|
|
289
289
|
"displayName_pt_BR": "Ícone",
|
|
290
290
|
"displayName_en_US": "Icon",
|
|
291
291
|
"type": "icon",
|
package/components/css/app.css
CHANGED
|
@@ -128,4 +128,13 @@
|
|
|
128
128
|
|
|
129
129
|
.slider-pager .slider-pager-page > i {
|
|
130
130
|
font-size: calc(0.6 * var(--iconSizeSmall, 25px));
|
|
131
|
-
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.item-floating-label .input-label {
|
|
134
|
+
position: relative;
|
|
135
|
+
padding: 5px 0 0 0;
|
|
136
|
+
opacity: 0;
|
|
137
|
+
top: 10px;
|
|
138
|
+
transition: opacity 0.15s ease-in, top 0.2s linear;
|
|
139
|
+
display: flex;
|
|
140
|
+
}
|
package/css/app_2.9.css
CHANGED
|
@@ -403,4 +403,25 @@ textarea.item {
|
|
|
403
403
|
|
|
404
404
|
.login-social .button-bar button span {
|
|
405
405
|
display: none;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@media (max-width: 767px) {
|
|
409
|
+
.hidden-xs {
|
|
410
|
+
display: none !important;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
414
|
+
.hidden-sm {
|
|
415
|
+
display: none !important;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
419
|
+
.hidden-md {
|
|
420
|
+
display: none !important;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
@media (min-width: 1200px) {
|
|
424
|
+
.hidden-lg {
|
|
425
|
+
display: none !important;
|
|
426
|
+
}
|
|
406
427
|
}
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
/* cyrillic-ext */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Nunito';
|
|
4
|
+
font-style: italic;
|
|
5
|
+
font-weight: 300;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaORs71cA.woff2) format('woff2');
|
|
8
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
9
|
+
}
|
|
10
|
+
/* cyrillic */
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Nunito';
|
|
13
|
+
font-style: italic;
|
|
14
|
+
font-weight: 300;
|
|
15
|
+
font-display: swap;
|
|
16
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaHRs71cA.woff2) format('woff2');
|
|
17
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
18
|
+
}
|
|
19
|
+
/* vietnamese */
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'Nunito';
|
|
22
|
+
font-style: italic;
|
|
23
|
+
font-weight: 300;
|
|
24
|
+
font-display: swap;
|
|
25
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaMRs71cA.woff2) format('woff2');
|
|
26
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
27
|
+
}
|
|
28
|
+
/* latin-ext */
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'Nunito';
|
|
31
|
+
font-style: italic;
|
|
32
|
+
font-weight: 300;
|
|
33
|
+
font-display: swap;
|
|
34
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaNRs71cA.woff2) format('woff2');
|
|
35
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
36
|
+
}
|
|
37
|
+
/* latin */
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'Nunito';
|
|
40
|
+
font-style: italic;
|
|
41
|
+
font-weight: 300;
|
|
42
|
+
font-display: swap;
|
|
43
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaDRs4.woff2) format('woff2');
|
|
44
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
45
|
+
}
|
|
46
|
+
/* cyrillic-ext */
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'Nunito';
|
|
49
|
+
font-style: italic;
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
font-display: swap;
|
|
52
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaORs71cA.woff2) format('woff2');
|
|
53
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
54
|
+
}
|
|
55
|
+
/* cyrillic */
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'Nunito';
|
|
58
|
+
font-style: italic;
|
|
59
|
+
font-weight: 400;
|
|
60
|
+
font-display: swap;
|
|
61
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaHRs71cA.woff2) format('woff2');
|
|
62
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
63
|
+
}
|
|
64
|
+
/* vietnamese */
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Nunito';
|
|
67
|
+
font-style: italic;
|
|
68
|
+
font-weight: 400;
|
|
69
|
+
font-display: swap;
|
|
70
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaMRs71cA.woff2) format('woff2');
|
|
71
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
72
|
+
}
|
|
73
|
+
/* latin-ext */
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Nunito';
|
|
76
|
+
font-style: italic;
|
|
77
|
+
font-weight: 400;
|
|
78
|
+
font-display: swap;
|
|
79
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaNRs71cA.woff2) format('woff2');
|
|
80
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
81
|
+
}
|
|
82
|
+
/* latin */
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'Nunito';
|
|
85
|
+
font-style: italic;
|
|
86
|
+
font-weight: 400;
|
|
87
|
+
font-display: swap;
|
|
88
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXX3I6Li01BKofIMNaDRs4.woff2) format('woff2');
|
|
89
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
90
|
+
}
|
|
91
|
+
/* cyrillic-ext */
|
|
92
|
+
@font-face {
|
|
93
|
+
font-family: 'Nunito';
|
|
94
|
+
font-style: normal;
|
|
95
|
+
font-weight: 400;
|
|
96
|
+
font-display: swap;
|
|
97
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
|
|
98
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
99
|
+
}
|
|
100
|
+
/* cyrillic */
|
|
101
|
+
@font-face {
|
|
102
|
+
font-family: 'Nunito';
|
|
103
|
+
font-style: normal;
|
|
104
|
+
font-weight: 400;
|
|
105
|
+
font-display: swap;
|
|
106
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
|
|
107
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
108
|
+
}
|
|
109
|
+
/* vietnamese */
|
|
110
|
+
@font-face {
|
|
111
|
+
font-family: 'Nunito';
|
|
112
|
+
font-style: normal;
|
|
113
|
+
font-weight: 400;
|
|
114
|
+
font-display: swap;
|
|
115
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
|
|
116
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
117
|
+
}
|
|
118
|
+
/* latin-ext */
|
|
119
|
+
@font-face {
|
|
120
|
+
font-family: 'Nunito';
|
|
121
|
+
font-style: normal;
|
|
122
|
+
font-weight: 400;
|
|
123
|
+
font-display: swap;
|
|
124
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
|
|
125
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
126
|
+
}
|
|
127
|
+
/* latin */
|
|
128
|
+
@font-face {
|
|
129
|
+
font-family: 'Nunito';
|
|
130
|
+
font-style: normal;
|
|
131
|
+
font-weight: 400;
|
|
132
|
+
font-display: swap;
|
|
133
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
|
|
134
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
135
|
+
}
|
|
136
|
+
/* cyrillic-ext */
|
|
137
|
+
@font-face {
|
|
138
|
+
font-family: 'Nunito';
|
|
139
|
+
font-style: normal;
|
|
140
|
+
font-weight: 500;
|
|
141
|
+
font-display: swap;
|
|
142
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
|
|
143
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
144
|
+
}
|
|
145
|
+
/* cyrillic */
|
|
146
|
+
@font-face {
|
|
147
|
+
font-family: 'Nunito';
|
|
148
|
+
font-style: normal;
|
|
149
|
+
font-weight: 500;
|
|
150
|
+
font-display: swap;
|
|
151
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
|
|
152
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
153
|
+
}
|
|
154
|
+
/* vietnamese */
|
|
155
|
+
@font-face {
|
|
156
|
+
font-family: 'Nunito';
|
|
157
|
+
font-style: normal;
|
|
158
|
+
font-weight: 500;
|
|
159
|
+
font-display: swap;
|
|
160
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
|
|
161
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
162
|
+
}
|
|
163
|
+
/* latin-ext */
|
|
164
|
+
@font-face {
|
|
165
|
+
font-family: 'Nunito';
|
|
166
|
+
font-style: normal;
|
|
167
|
+
font-weight: 500;
|
|
168
|
+
font-display: swap;
|
|
169
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
|
|
170
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
171
|
+
}
|
|
172
|
+
/* latin */
|
|
173
|
+
@font-face {
|
|
174
|
+
font-family: 'Nunito';
|
|
175
|
+
font-style: normal;
|
|
176
|
+
font-weight: 500;
|
|
177
|
+
font-display: swap;
|
|
178
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
|
|
179
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
180
|
+
}
|
|
181
|
+
/* cyrillic-ext */
|
|
182
|
+
@font-face {
|
|
183
|
+
font-family: 'Nunito';
|
|
184
|
+
font-style: normal;
|
|
185
|
+
font-weight: 700;
|
|
186
|
+
font-display: swap;
|
|
187
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
|
|
188
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
189
|
+
}
|
|
190
|
+
/* cyrillic */
|
|
191
|
+
@font-face {
|
|
192
|
+
font-family: 'Nunito';
|
|
193
|
+
font-style: normal;
|
|
194
|
+
font-weight: 700;
|
|
195
|
+
font-display: swap;
|
|
196
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
|
|
197
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
198
|
+
}
|
|
199
|
+
/* vietnamese */
|
|
200
|
+
@font-face {
|
|
201
|
+
font-family: 'Nunito';
|
|
202
|
+
font-style: normal;
|
|
203
|
+
font-weight: 700;
|
|
204
|
+
font-display: swap;
|
|
205
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
|
|
206
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
207
|
+
}
|
|
208
|
+
/* latin-ext */
|
|
209
|
+
@font-face {
|
|
210
|
+
font-family: 'Nunito';
|
|
211
|
+
font-style: normal;
|
|
212
|
+
font-weight: 700;
|
|
213
|
+
font-display: swap;
|
|
214
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
|
|
215
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
216
|
+
}
|
|
217
|
+
/* latin */
|
|
218
|
+
@font-face {
|
|
219
|
+
font-family: 'Nunito';
|
|
220
|
+
font-style: normal;
|
|
221
|
+
font-weight: 700;
|
|
222
|
+
font-display: swap;
|
|
223
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
|
|
224
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
225
|
+
}
|
|
226
|
+
/* cyrillic-ext */
|
|
227
|
+
@font-face {
|
|
228
|
+
font-family: 'Nunito';
|
|
229
|
+
font-style: normal;
|
|
230
|
+
font-weight: 800;
|
|
231
|
+
font-display: swap;
|
|
232
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
|
|
233
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
234
|
+
}
|
|
235
|
+
/* cyrillic */
|
|
236
|
+
@font-face {
|
|
237
|
+
font-family: 'Nunito';
|
|
238
|
+
font-style: normal;
|
|
239
|
+
font-weight: 800;
|
|
240
|
+
font-display: swap;
|
|
241
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
|
|
242
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
243
|
+
}
|
|
244
|
+
/* vietnamese */
|
|
245
|
+
@font-face {
|
|
246
|
+
font-family: 'Nunito';
|
|
247
|
+
font-style: normal;
|
|
248
|
+
font-weight: 800;
|
|
249
|
+
font-display: swap;
|
|
250
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
|
|
251
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
252
|
+
}
|
|
253
|
+
/* latin-ext */
|
|
254
|
+
@font-face {
|
|
255
|
+
font-family: 'Nunito';
|
|
256
|
+
font-style: normal;
|
|
257
|
+
font-weight: 800;
|
|
258
|
+
font-display: swap;
|
|
259
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
|
|
260
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
261
|
+
}
|
|
262
|
+
/* latin */
|
|
263
|
+
@font-face {
|
|
264
|
+
font-family: 'Nunito';
|
|
265
|
+
font-style: normal;
|
|
266
|
+
font-weight: 800;
|
|
267
|
+
font-display: swap;
|
|
268
|
+
src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
|
|
269
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
270
|
+
}
|
|
@@ -231,26 +231,26 @@
|
|
|
231
231
|
--textColorDark70: #ffffff;
|
|
232
232
|
|
|
233
233
|
/* Color - Neutral (web e mobile) */
|
|
234
|
-
--colorNeutral00: #
|
|
235
|
-
--colorNeutral10: #
|
|
236
|
-
--colorNeutral20: #
|
|
237
|
-
--colorNeutral30: #
|
|
238
|
-
--colorNeutral40: #
|
|
239
|
-
--colorNeutral50: #
|
|
240
|
-
--colorNeutral60: #
|
|
241
|
-
--colorNeutral70: #
|
|
234
|
+
--colorNeutral00: #ffffff;
|
|
235
|
+
--colorNeutral10: #f1f1f1;
|
|
236
|
+
--colorNeutral20: #e3e3e3;
|
|
237
|
+
--colorNeutral30: #d5d5d5;
|
|
238
|
+
--colorNeutral40: #c7c7c7;
|
|
239
|
+
--colorNeutral50: #b9b9b9;
|
|
240
|
+
--colorNeutral60: #acacac;
|
|
241
|
+
--colorNeutral70: #9e9e9e;
|
|
242
242
|
--colorNeutral80: #909090;
|
|
243
243
|
--colorNeutral90: #828282;
|
|
244
244
|
--colorNeutral100: #747474;
|
|
245
245
|
--colorNeutral110: #666666;
|
|
246
|
-
--colorNeutral120: #
|
|
246
|
+
--colorNeutral120: #5d5d5d;
|
|
247
247
|
--colorNeutral130: #535353;
|
|
248
|
-
--colorNeutral140: #
|
|
248
|
+
--colorNeutral140: #4a4a4a;
|
|
249
249
|
--colorNeutral150: #414141;
|
|
250
250
|
--colorNeutral160: #383838;
|
|
251
|
-
--colorNeutral170: #
|
|
251
|
+
--colorNeutral170: #2e2e2e;
|
|
252
252
|
--colorNeutral180: #252525;
|
|
253
|
-
--colorNeutral190: #
|
|
253
|
+
--colorNeutral190: #1c1c1c;
|
|
254
254
|
--colorNeutral200: #131313;
|
|
255
255
|
--colorNeutral210: #090909;
|
|
256
256
|
--colorNeutral220: #000000;
|
|
@@ -588,4 +588,75 @@ a#reset-password-login,
|
|
|
588
588
|
color: var(--textColor30, #838383);
|
|
589
589
|
font-family: var(--fontFamily, "Source Sans Pro", 'Calibri', sans-serif);
|
|
590
590
|
font-size: var(--textNormalSize, 16px);
|
|
591
|
-
}
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.button.button-light.button-outline {
|
|
594
|
+
border-color: var(--colorLight50, #dfdfdf);
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.button.button-light.button-outline span,
|
|
598
|
+
.button.button-light.button-outline i {
|
|
599
|
+
color: var(--textColorLight40, #333333);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.button.button-stable.button-outline {
|
|
603
|
+
border-color: var(--colorStable60, #b6b6b6);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.button.button-stable.button-outline span,
|
|
607
|
+
.button.button-stable.button-outline i {
|
|
608
|
+
color: var(--textColorStable40, #444444);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
/*Checkbox*/
|
|
612
|
+
.checkbox input:checked:before,
|
|
613
|
+
.checkbox-default input:checked:before {
|
|
614
|
+
background: var(--colorDefault40, #222222);
|
|
615
|
+
border-color: var(--colorDefault40, #222222);
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.checkbox-positive input:checked:before {
|
|
619
|
+
background: var(--colorPrimary40, #2780e3);
|
|
620
|
+
border-color: var(--colorPrimary40, #2780e3);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.checkbox-balanced input:checked:before {
|
|
624
|
+
background: var(--colorSuccess40, #3fb618);
|
|
625
|
+
border-color: var(--colorSuccess40, #3fb618);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.checkbox-calm input:checked:before {
|
|
629
|
+
background: var(--colorCalm40, #11c1f3);
|
|
630
|
+
border-color: var(--colorCalm40, #11c1f3);
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.checkbox-energized input:checked:before {
|
|
634
|
+
background: var(--colorWarning40, #ff7518);
|
|
635
|
+
border-color: var(--colorWarning40, #ff7518);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.checkbox-assertive input:checked:before {
|
|
639
|
+
background: var(--colorDanger40, #ff0039);
|
|
640
|
+
border-color: var(--colorDanger40, #ff0039);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.checkbox-light input:checked:before,
|
|
644
|
+
.checkbox-light input:checked+.checkbox-icon:before {
|
|
645
|
+
background: var(--colorLight40, #ffffff);
|
|
646
|
+
border-color: var(--colorLight50, #c2c2c2);
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.checkbox-stable input:checked:before {
|
|
650
|
+
background: var(--colorStable40, #ffffff);
|
|
651
|
+
border-color: var(--colorStable40, #ffffff);
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.checkbox-royal input:checked:before {
|
|
655
|
+
background: var(--colorRoyal40, #886aea);
|
|
656
|
+
border-color: var(--colorRoyal40, #886aea);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.checkbox-dark input:checked:before {
|
|
660
|
+
background: var(--colorDark40, #444444);
|
|
661
|
+
border-color: var(--colorDark40, #444444);
|
|
662
|
+
}
|