@dev-tcloud/tcloud-ui 0.0.85 → 0.0.86
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/package.json +1 -1
- package/scss/tcloud/custom/buttons.scss +788 -73
- package/scss/tcloud/custom/colors-prime.scss +39 -0
- package/scss/tcloud/custom/colors-standard.scss +33 -0
- package/scss/tcloud/custom/colors.scss +54 -10
- package/scss/tcloud/custom/forms.scss +8 -2
- package/scss/tcloud/custom/mixins.scss +247 -0
- package/scss/tcloud/custom/variables.scss +77 -0
- package/scss/tcloud/styles.scss +4 -4
package/package.json
CHANGED
|
@@ -3,90 +3,805 @@
|
|
|
3
3
|
// ---------------------------------
|
|
4
4
|
|
|
5
5
|
.tc-btn {
|
|
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
|
-
|
|
6
|
+
font-size: 12px;
|
|
7
|
+
background: $tc-gray-100;
|
|
8
|
+
color: $tc-gray-700;
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
border-radius: 30px;
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
transition: all 0.25s;
|
|
14
|
+
padding: 0 25px;
|
|
15
|
+
height: 40px;
|
|
16
|
+
border: 1px solid $tc-gray-100;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
p {
|
|
20
|
+
font-size: 13px;
|
|
21
|
+
color: $tc-gray-700;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
i {
|
|
25
|
+
margin-right: 10px;
|
|
26
|
+
font-size: 20px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:hover {
|
|
30
|
+
color: $tc-gray-700;
|
|
31
|
+
background: $tc-gray-50;
|
|
32
|
+
border-color: $tc-gray-100;
|
|
33
|
+
}
|
|
34
|
+
&:link { text-decoration: none; }
|
|
35
|
+
&:visited { text-decoration: none; }
|
|
36
|
+
&:hover { text-decoration: none; }
|
|
37
|
+
&:active { text-decoration: none; }
|
|
37
38
|
}
|
|
38
|
-
|
|
39
|
+
|
|
39
40
|
.tc-btn:disabled,
|
|
40
41
|
.tc-btn[disabled]{
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
cursor: no-drop;
|
|
43
|
+
opacity: 0.6;
|
|
43
44
|
}
|
|
44
|
-
|
|
45
|
-
|
|
45
|
+
|
|
46
46
|
.tc-btn-primary{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
color: $white;
|
|
48
|
+
background: $tc-primary;
|
|
49
|
+
border-color: $tc-primary;
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
&:hover {
|
|
52
|
+
color: $white;
|
|
53
|
+
background: $tc-complemt-3;
|
|
54
|
+
border-color: $tc-primary;
|
|
55
|
+
}
|
|
56
56
|
}
|
|
57
|
-
|
|
57
|
+
|
|
58
58
|
.tc-btn-text {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
padding: 10px;
|
|
61
|
+
background: none;
|
|
62
|
+
color: $black;
|
|
63
|
+
border: none;
|
|
64
|
+
|
|
65
|
+
p {
|
|
66
|
+
text-align: left;
|
|
62
67
|
color: $black;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
p {
|
|
66
|
-
text-align: left;
|
|
67
|
-
color: $black;
|
|
68
|
-
}
|
|
68
|
+
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.tc-btn-link {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
padding: 10px;
|
|
74
|
+
background: none;
|
|
75
|
+
color: $tc-primary;
|
|
76
|
+
border: none;
|
|
77
|
+
font-size: 15px;
|
|
78
|
+
|
|
79
|
+
p {
|
|
80
|
+
text-align: left;
|
|
81
|
+
color: $tc-primary;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&:hover{
|
|
85
|
+
color: $tc-complemt-3;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.tc-btn:disabled {
|
|
90
|
+
opacity: 0.6;
|
|
91
|
+
cursor: not-allowed;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// ========================================
|
|
95
|
+
// old Button Standard
|
|
96
|
+
// ========================================
|
|
97
|
+
|
|
98
|
+
.btn-new {
|
|
99
|
+
border: none;
|
|
100
|
+
transition: all 0.25s;
|
|
101
|
+
background: $tc-gray-100;
|
|
102
|
+
color: $tc-gray-500;
|
|
103
|
+
font-size: 12px;
|
|
104
|
+
font-weight: normal;
|
|
105
|
+
border-radius: 30px;
|
|
106
|
+
padding: 10px 25px!important;
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
display: inline-flex;
|
|
109
|
+
align-items: center;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.btn-new.active,
|
|
113
|
+
.btn-new.opened,
|
|
114
|
+
.btn-new:hover {
|
|
115
|
+
background: $tc-primary;
|
|
116
|
+
color: $tc-white;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.btn-new i {
|
|
120
|
+
margin: 0 10px 0 5px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.btn-new i:nth-child(2) {
|
|
124
|
+
margin: 0 0 0 10px;
|
|
87
125
|
}
|
|
126
|
+
|
|
127
|
+
.btn-new-grey {
|
|
128
|
+
border: none;
|
|
129
|
+
transition: all 0.25s;
|
|
130
|
+
background: $tc-gray-100!important;
|
|
131
|
+
color: $tc-gray-600!important;
|
|
132
|
+
font-size: 12px;
|
|
133
|
+
font-weight: normal;
|
|
134
|
+
border-radius: 30px;
|
|
135
|
+
padding: 10px 20px;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
border: none!important;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.btn-new-grey.active,
|
|
141
|
+
.btn-new-grey.opened,
|
|
142
|
+
.btn-new-grey:hover {
|
|
143
|
+
background: $tc-primary!important;
|
|
144
|
+
color: $tc-white!important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.btn-new-grey i {
|
|
148
|
+
margin: 0 10px 0 5px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.btn-new-grey i:nth-child(2) {
|
|
152
|
+
margin: 0 0 0 10px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.btn-new-green,
|
|
156
|
+
.btn-green-validate {
|
|
157
|
+
display: inline-flex;
|
|
158
|
+
align-items: center;
|
|
159
|
+
background: $tc-primary!important;
|
|
160
|
+
color: $tc-white!important;
|
|
161
|
+
font-size: 12px;
|
|
162
|
+
font-weight: normal;
|
|
163
|
+
border-radius: 30px;
|
|
164
|
+
padding: 10px 20px;
|
|
165
|
+
cursor: pointer;
|
|
166
|
+
border: none!important;
|
|
167
|
+
transition: all 0.25s;
|
|
168
|
+
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.btn-new-green.full {
|
|
172
|
+
width: 100%!important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.btn-new-green.full.txt-center {
|
|
176
|
+
justify-content: center;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.btn-new-green.txt-center {
|
|
180
|
+
justify-content: center;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.btn-green-validate:disabled {
|
|
184
|
+
background: $tc-gray-200!important;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.btn-new-green.small {
|
|
188
|
+
padding: 10px 20px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.btn-new-green.active,
|
|
192
|
+
.btn-new-green.opened,
|
|
193
|
+
.btn-new-green:hover {
|
|
194
|
+
background: $tc-primary2!important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.btn-new-green i {
|
|
198
|
+
margin: 0 10px 0 5px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.btn-new-green i:nth-child(2) {
|
|
202
|
+
margin: 0 0 0 10px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.btn-new-outline {
|
|
206
|
+
background: $tc-white!important;
|
|
207
|
+
color: $tc-gray-600;
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
font-weight: normal;
|
|
210
|
+
transition: all 0.25s;
|
|
211
|
+
border: 3px solid $tc-gray-100;
|
|
212
|
+
border-radius: 30px;
|
|
213
|
+
padding: 10px 25px;
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
|
|
216
|
+
.btn-new-outline i {
|
|
217
|
+
margin: 0 10px 0 5px;
|
|
88
218
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
219
|
+
&:nth-child(2) {
|
|
220
|
+
margin: 0 0 0 10px;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.btn-new-outline.active,
|
|
226
|
+
.btn-new-outline.opened,
|
|
227
|
+
.btn-new-outline:hover {
|
|
228
|
+
background: $tc-gray-100!important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
.btn-new-group {
|
|
234
|
+
display: flex;
|
|
235
|
+
flex: 1;
|
|
236
|
+
margin: 20px 0;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.btn-new-group.align-left {
|
|
240
|
+
justify-content: flex-start;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.btn-new-group.align-right {
|
|
244
|
+
justify-content: flex-end;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.btn-new-group .btn-new {
|
|
248
|
+
margin: 0 20px 0 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.btn-new-group .btn-new:last-child {
|
|
252
|
+
margin: 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.btn-disabled {
|
|
256
|
+
display: inline-flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
background: $tc-primary!important;
|
|
259
|
+
color: $tc-white!important;
|
|
260
|
+
font-size: 12px;
|
|
261
|
+
font-weight: normal;
|
|
262
|
+
border-radius: 30px;
|
|
263
|
+
padding: 10px 20px;
|
|
264
|
+
border: none!important;
|
|
265
|
+
transition: all 0.25s;
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.btn-disabled:disabled {
|
|
270
|
+
background: $tc-gray-100!important;
|
|
271
|
+
color: $tc-gray-600!important;
|
|
272
|
+
cursor: default;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.btn-new-white {
|
|
276
|
+
|
|
277
|
+
display: inline-flex;
|
|
278
|
+
align-items: center;
|
|
279
|
+
color: $tc-primary;
|
|
280
|
+
background: $tc-white;
|
|
281
|
+
|
|
282
|
+
font-size: 12px;
|
|
283
|
+
font-weight: normal;
|
|
284
|
+
border-radius: 30px;
|
|
285
|
+
padding: 10px 20px;
|
|
286
|
+
cursor: pointer;
|
|
287
|
+
border: none!important;
|
|
288
|
+
transition: all 0.25s;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.btn-new-white:hover {
|
|
292
|
+
color: $tc-white;
|
|
293
|
+
background: var(--$tc-primary2);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.btn-new-full {
|
|
297
|
+
flex: 1;
|
|
298
|
+
display: flex;
|
|
299
|
+
justify-content: center;
|
|
300
|
+
align-items: center;
|
|
301
|
+
width: 100%;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
.btn-group .btn-secondary {
|
|
306
|
+
color: $tc-white;
|
|
307
|
+
background-color: $tc-primary;
|
|
308
|
+
border-color: $tc-primary;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.btn-group .btn-secondary:hover {
|
|
312
|
+
background-color: $tc-primary2;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
button:focus {
|
|
317
|
+
outline: 0 !important;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.btn {
|
|
321
|
+
padding: 10px 20px;
|
|
322
|
+
border-radius: 20px;
|
|
323
|
+
font-size: inherit;
|
|
324
|
+
color: $tc-gray-500;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.btn:focus {
|
|
328
|
+
box-shadow: none;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.btn-xs {
|
|
332
|
+
font-size: 0.7rem;
|
|
333
|
+
padding: 0.2rem 0.4rem;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.btn-group-sm > .btn,
|
|
337
|
+
.btn-sm {
|
|
338
|
+
font-size: .8rem;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.float-e-margins .btn {
|
|
342
|
+
margin-bottom: 5px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.btn-w-m {
|
|
346
|
+
min-width: 120px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.btn-primary.btn-outline {
|
|
350
|
+
color: $tc-primary;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.btn-success.btn-outline {
|
|
354
|
+
color: $tc-complete;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.btn-info.btn-outline {
|
|
358
|
+
color: $tc-primary;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.btn-warning.btn-outline {
|
|
362
|
+
color: $tc-warning;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.btn-danger.btn-outline {
|
|
366
|
+
color: $tc-danger;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.btn-primary.btn-outline:hover,
|
|
370
|
+
.btn-success.btn-outline:hover,
|
|
371
|
+
.btn-info.btn-outline:hover,
|
|
372
|
+
.btn-warning.btn-outline:hover,
|
|
373
|
+
.btn-danger.btn-outline:hover {
|
|
374
|
+
color: $tc-white;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.btn.active,
|
|
378
|
+
.btn:active {
|
|
379
|
+
background-image: none;
|
|
380
|
+
outline: 0;
|
|
381
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
382
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.btn-primary {
|
|
386
|
+
color: $tc-white;
|
|
387
|
+
background-color: $tc-primary!important;
|
|
388
|
+
border-color: $tc-primary!important;
|
|
389
|
+
padding: 10px 20px;
|
|
390
|
+
border-radius: 20px;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.btn-primary:hover,
|
|
394
|
+
.btn-primary:focus,
|
|
395
|
+
.btn-primary.focus {
|
|
396
|
+
background-color: $tc-primary2!important;
|
|
397
|
+
border-color: $tc-primary2!important;
|
|
398
|
+
color: $tc-white!important;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.btn-primary.disabled,
|
|
402
|
+
.btn-primary:disabled {
|
|
403
|
+
color: $tc-gray-400;
|
|
404
|
+
background-color: $tc-gray-500;
|
|
405
|
+
border-color: $tc-gray-500;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.btn-primary:not(:disabled):not(.disabled):active,
|
|
409
|
+
.btn-primary:not(:disabled):not(.disabled).active,
|
|
410
|
+
.show > .btn-primary.dropdown-toggle {
|
|
411
|
+
color: $tc-white;
|
|
412
|
+
background-color: #18a689;
|
|
413
|
+
border-color: #18a689;
|
|
414
|
+
}
|
|
415
|
+
.btn-primary:not(:disabled):not(.disabled):active:focus,
|
|
416
|
+
.btn-primary:not(:disabled):not(.disabled).active:focus,
|
|
417
|
+
.show > .btn-primary.dropdown-toggle:focus {
|
|
418
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
419
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.btn-primary.btn-icon i {
|
|
423
|
+
margin: 0 10px 0 0;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.btn-success {
|
|
427
|
+
color: $tc-white;
|
|
428
|
+
background-color: $tc-primary;
|
|
429
|
+
border-color: $tc-primary;
|
|
430
|
+
}
|
|
431
|
+
.btn-success:hover,
|
|
432
|
+
.btn-success:focus,
|
|
433
|
+
.btn-success.focus {
|
|
434
|
+
color: $tc-white;
|
|
435
|
+
background-color: $tc-primary;
|
|
436
|
+
border-color: $tc-primary;
|
|
437
|
+
}
|
|
438
|
+
.btn-success.disabled,
|
|
439
|
+
.btn-success:disabled {
|
|
440
|
+
color: $tc-white;
|
|
441
|
+
background-color: #1a7bb9;
|
|
442
|
+
border-color: #1a7bb9;
|
|
443
|
+
}
|
|
444
|
+
.btn-success:not(:disabled):not(.disabled):active,
|
|
445
|
+
.btn-success:not(:disabled):not(.disabled).active,
|
|
446
|
+
.show > .btn-success.dropdown-toggle {
|
|
447
|
+
color: $tc-white;
|
|
448
|
+
background-color: $tc-primary;
|
|
449
|
+
border-color: $tc-primary;
|
|
450
|
+
}
|
|
451
|
+
.btn-success:not(:disabled):not(.disabled):active:focus,
|
|
452
|
+
.btn-success:not(:disabled):not(.disabled).active:focus,
|
|
453
|
+
.show > .btn-success.dropdown-toggle:focus {
|
|
454
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
455
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
456
|
+
}
|
|
457
|
+
.btn-info {
|
|
458
|
+
color: $tc-white;
|
|
459
|
+
background-color: #23c6c8;
|
|
460
|
+
border-color: #23c6c8;
|
|
461
|
+
}
|
|
462
|
+
.btn-info:hover,
|
|
463
|
+
.btn-info:focus,
|
|
464
|
+
.btn-info.focus {
|
|
465
|
+
color: $tc-white;
|
|
466
|
+
background-color: #21b9bb;
|
|
467
|
+
border-color: #21b9bb;
|
|
468
|
+
}
|
|
469
|
+
.btn-info.disabled,
|
|
470
|
+
.btn-info:disabled {
|
|
471
|
+
color: $tc-white;
|
|
472
|
+
background-color: #21b9bb;
|
|
473
|
+
border-color: #21b9bb;
|
|
474
|
+
}
|
|
475
|
+
.btn-info:not(:disabled):not(.disabled):active,
|
|
476
|
+
.btn-info:not(:disabled):not(.disabled).active,
|
|
477
|
+
.show > .btn-info.dropdown-toggle {
|
|
478
|
+
color: $tc-white;
|
|
479
|
+
background-color: #21b9bb;
|
|
480
|
+
border-color: #21b9bb;
|
|
481
|
+
}
|
|
482
|
+
.btn-info:not(:disabled):not(.disabled):active:focus,
|
|
483
|
+
.btn-info:not(:disabled):not(.disabled).active:focus,
|
|
484
|
+
.show > .btn-info.dropdown-toggle:focus {
|
|
485
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
486
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
487
|
+
}
|
|
488
|
+
.btn-default {
|
|
489
|
+
color: inherit;
|
|
490
|
+
background: white;
|
|
491
|
+
border: 1px solid var(--tc-gray-300);
|
|
492
|
+
}
|
|
493
|
+
.btn-default:hover,
|
|
494
|
+
.btn-default:focus,
|
|
495
|
+
.btn-default:active,
|
|
496
|
+
.btn-default.active,
|
|
497
|
+
.open .dropdown-toggle.btn-default,
|
|
498
|
+
.btn-default:active:focus,
|
|
499
|
+
.btn-default:active:hover,
|
|
500
|
+
.btn-default.active:hover,
|
|
501
|
+
.btn-default.active:focus {
|
|
502
|
+
color: inherit;
|
|
503
|
+
border: 1px solid #d2d2d2;
|
|
504
|
+
}
|
|
505
|
+
.btn-default:active,
|
|
506
|
+
.btn-default.active,
|
|
507
|
+
.open .dropdown-toggle.btn-default {
|
|
508
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
509
|
+
}
|
|
510
|
+
.btn-default.disabled,
|
|
511
|
+
.btn-default.disabled:hover,
|
|
512
|
+
.btn-default.disabled:focus,
|
|
513
|
+
.btn-default.disabled:active,
|
|
514
|
+
.btn-default.disabled.active,
|
|
515
|
+
.btn-default[disabled],
|
|
516
|
+
.btn-default[disabled]:hover,
|
|
517
|
+
.btn-default[disabled]:focus,
|
|
518
|
+
.btn-default[disabled]:active,
|
|
519
|
+
.btn-default.active[disabled],
|
|
520
|
+
fieldset[disabled] .btn-default,
|
|
521
|
+
fieldset[disabled] .btn-default:hover,
|
|
522
|
+
fieldset[disabled] .btn-default:focus,
|
|
523
|
+
fieldset[disabled] .btn-default:active,
|
|
524
|
+
fieldset[disabled] .btn-default.active {
|
|
525
|
+
color: #cacaca;
|
|
526
|
+
}
|
|
527
|
+
.btn-warning {
|
|
528
|
+
color: $tc-white;
|
|
529
|
+
background-color: #f8ac59;
|
|
530
|
+
border-color: #f8ac59;
|
|
531
|
+
}
|
|
532
|
+
.btn-warning:hover,
|
|
533
|
+
.btn-warning:focus,
|
|
534
|
+
.btn-warning.focus {
|
|
535
|
+
color: $tc-white;
|
|
536
|
+
background-color: #f7a54a;
|
|
537
|
+
border-color: #f7a54a;
|
|
538
|
+
}
|
|
539
|
+
.btn-warning.disabled,
|
|
540
|
+
.btn-warning:disabled {
|
|
541
|
+
color: $tc-white;
|
|
542
|
+
background-color: #f7a54a;
|
|
543
|
+
border-color: #f7a54a;
|
|
544
|
+
}
|
|
545
|
+
.btn-warning:not(:disabled):not(.disabled):active,
|
|
546
|
+
.btn-warning:not(:disabled):not(.disabled).active,
|
|
547
|
+
.show > .btn-warning.dropdown-toggle {
|
|
548
|
+
color: $tc-white;
|
|
549
|
+
background-color: #f7a54a;
|
|
550
|
+
border-color: #f7a54a;
|
|
551
|
+
}
|
|
552
|
+
.btn-warning:not(:disabled):not(.disabled):active:focus,
|
|
553
|
+
.btn-warning:not(:disabled):not(.disabled).active:focus,
|
|
554
|
+
.show > .btn-warning.dropdown-toggle:focus {
|
|
555
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
556
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
557
|
+
}
|
|
558
|
+
.btn-danger {
|
|
559
|
+
color: $tc-white;
|
|
560
|
+
background-color: #ed5565;
|
|
561
|
+
border-color: #ed5565;
|
|
562
|
+
}
|
|
563
|
+
.btn-danger:hover,
|
|
564
|
+
.btn-danger:focus,
|
|
565
|
+
.btn-danger.focus {
|
|
566
|
+
color: $tc-white;
|
|
567
|
+
background-color: #ec4758;
|
|
568
|
+
border-color: #ec4758;
|
|
569
|
+
}
|
|
570
|
+
.btn-danger.disabled,
|
|
571
|
+
.btn-danger:disabled {
|
|
572
|
+
color: $tc-white;
|
|
573
|
+
background-color: #ec4758;
|
|
574
|
+
border-color: #ec4758;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.btn-danger:not(:disabled):not(.disabled):active,
|
|
578
|
+
.btn-danger:not(:disabled):not(.disabled).active,
|
|
579
|
+
.show > .btn-danger.dropdown-toggle {
|
|
580
|
+
color: $tc-white;
|
|
581
|
+
background-color: #ec4758;
|
|
582
|
+
border-color: #ec4758;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.btn-danger:not(:disabled):not(.disabled):active:focus,
|
|
586
|
+
.btn-danger:not(:disabled):not(.disabled).active:focus,
|
|
587
|
+
.show > .btn-danger.dropdown-toggle:focus {
|
|
588
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
589
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.btn-link {
|
|
593
|
+
color: inherit;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.btn-link:hover,
|
|
597
|
+
.btn-link:focus,
|
|
598
|
+
.btn-link:active,
|
|
599
|
+
.btn-link.active,
|
|
600
|
+
.open .dropdown-toggle.btn-link {
|
|
601
|
+
color: $tc-primary;
|
|
602
|
+
text-decoration: none;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.btn-link:active,
|
|
606
|
+
.btn-link.active,
|
|
607
|
+
.open .dropdown-toggle.btn-link {
|
|
608
|
+
background-image: none;
|
|
609
|
+
box-shadow: none;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.btn-link.disabled,
|
|
613
|
+
.btn-link.disabled:hover,
|
|
614
|
+
.btn-link.disabled:focus,
|
|
615
|
+
.btn-link.disabled:active,
|
|
616
|
+
.btn-link.disabled.active,
|
|
617
|
+
.btn-link[disabled],
|
|
618
|
+
.btn-link[disabled]:hover,
|
|
619
|
+
.btn-link[disabled]:focus,
|
|
620
|
+
.btn-link[disabled]:active,
|
|
621
|
+
.btn-link.active[disabled],
|
|
622
|
+
fieldset[disabled] .btn-link,
|
|
623
|
+
fieldset[disabled] .btn-link:hover,
|
|
624
|
+
fieldset[disabled] .btn-link:focus,
|
|
625
|
+
fieldset[disabled] .btn-link:active,
|
|
626
|
+
fieldset[disabled] .btn-link.active {
|
|
627
|
+
color: #cacaca;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.btn-white {
|
|
631
|
+
color: var(--tc-gray-500);
|
|
632
|
+
background: white;
|
|
633
|
+
border: 1px solid #e7eaec;
|
|
634
|
+
padding: 10px 20px;
|
|
635
|
+
border-radius: 30px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.btn-white:hover,
|
|
639
|
+
.btn-white:focus,
|
|
640
|
+
.btn-white:active,
|
|
641
|
+
.btn-white.active,
|
|
642
|
+
.open .dropdown-toggle.btn-white,
|
|
643
|
+
.btn-white:active:focus,
|
|
644
|
+
.btn-white:active:hover,
|
|
645
|
+
.btn-white.active:hover,
|
|
646
|
+
.btn-white.active:focus {
|
|
647
|
+
color: $tc-white;
|
|
648
|
+
border: 1px solid $tc-primary;
|
|
649
|
+
background: $tc-primary;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.btn-white:active,
|
|
653
|
+
.btn-white.active {
|
|
654
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.btn-white:active,
|
|
658
|
+
.btn-white.active,
|
|
659
|
+
.open .dropdown-toggle.btn-white {
|
|
660
|
+
background-image: none;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.btn-white.disabled,
|
|
664
|
+
.btn-white.disabled:hover,
|
|
665
|
+
.btn-white.disabled:focus,
|
|
666
|
+
.btn-white.disabled:active,
|
|
667
|
+
.btn-white.disabled.active,
|
|
668
|
+
.btn-white[disabled],
|
|
669
|
+
.btn-white[disabled]:hover,
|
|
670
|
+
.btn-white[disabled]:focus,
|
|
671
|
+
.btn-white[disabled]:active,
|
|
672
|
+
.btn-white.active[disabled],
|
|
673
|
+
fieldset[disabled] .btn-white,
|
|
674
|
+
fieldset[disabled] .btn-white:hover,
|
|
675
|
+
fieldset[disabled] .btn-white:focus,
|
|
676
|
+
fieldset[disabled] .btn-white:active,
|
|
677
|
+
fieldset[disabled] .btn-white.active {
|
|
678
|
+
color: #cacaca;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.btn-outline {
|
|
682
|
+
color: inherit;
|
|
683
|
+
background-color: transparent;
|
|
684
|
+
transition: all .5s;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.btn-rounded {
|
|
688
|
+
border-radius: 50px;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.btn-large-dim {
|
|
692
|
+
width: 90px;
|
|
693
|
+
height: 90px;
|
|
694
|
+
font-size: 42px;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
button.dim {
|
|
698
|
+
display: inline-block;
|
|
699
|
+
text-decoration: none;
|
|
700
|
+
text-transform: uppercase;
|
|
701
|
+
text-align: center;
|
|
702
|
+
padding-top: 6px;
|
|
703
|
+
margin-right: 10px;
|
|
704
|
+
position: relative;
|
|
705
|
+
cursor: pointer;
|
|
706
|
+
border-radius: 5px;
|
|
707
|
+
font-weight: 600;
|
|
708
|
+
margin-bottom: 20px !important;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
button.dim:active {
|
|
712
|
+
top: 3px;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
button.btn-primary.dim {
|
|
716
|
+
box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
button.btn-primary.dim:active {
|
|
720
|
+
box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
button.btn-default.dim {
|
|
724
|
+
box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
button.btn-default.dim:active {
|
|
728
|
+
box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
button.btn-warning.dim {
|
|
732
|
+
box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
button.btn-warning.dim:active {
|
|
736
|
+
box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
button.btn-info.dim {
|
|
740
|
+
box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
button.btn-info.dim:active {
|
|
744
|
+
box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
button.btn-success.dim {
|
|
748
|
+
box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
button.btn-success.dim:active {
|
|
752
|
+
box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
button.btn-danger.dim {
|
|
756
|
+
box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
button.btn-danger.dim:active {
|
|
760
|
+
box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
button.dim:before {
|
|
764
|
+
font-size: 50px;
|
|
765
|
+
line-height: 1em;
|
|
766
|
+
font-weight: normal;
|
|
767
|
+
color: $tc-white;
|
|
768
|
+
display: block;
|
|
769
|
+
padding-top: 10px;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
button.dim:active:before {
|
|
773
|
+
top: 7px;
|
|
774
|
+
font-size: 50px;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.btn:focus {
|
|
778
|
+
outline: none !important;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.btn-circle {
|
|
782
|
+
width: 30px;
|
|
783
|
+
height: 30px;
|
|
784
|
+
padding: 6px 0;
|
|
785
|
+
border-radius: 10px;
|
|
786
|
+
text-align: center;
|
|
787
|
+
font-size: 12px;
|
|
788
|
+
line-height: 1.428571429;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.btn-circle.btn-lg {
|
|
792
|
+
width: 50px;
|
|
793
|
+
height: 50px;
|
|
794
|
+
padding: 10px 16px;
|
|
795
|
+
border-radius: 25px;
|
|
796
|
+
font-size: 18px;
|
|
797
|
+
line-height: 1.33;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.btn-circle.btn-xl {
|
|
801
|
+
width: 70px;
|
|
802
|
+
height: 70px;
|
|
803
|
+
padding: 10px 16px;
|
|
804
|
+
border-radius: 35px;
|
|
805
|
+
font-size: 24px;
|
|
806
|
+
line-height: 1.33;
|
|
807
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// =============================================
|
|
2
|
+
// T-CLoud Prime
|
|
3
|
+
// =============================================
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
$prime-primary: #6B48FF;
|
|
7
|
+
// color: $prime-primary;
|
|
8
|
+
|
|
9
|
+
$prime-primary2: #0897E9;
|
|
10
|
+
|
|
11
|
+
$prime-complemt: #0ADBE3;
|
|
12
|
+
$prime-complemt-2: #5B35FC;
|
|
13
|
+
|
|
14
|
+
$prime-second: #FEAC0E;
|
|
15
|
+
$prime-second2: #EEEEEE;
|
|
16
|
+
|
|
17
|
+
$prime-white: #fff;
|
|
18
|
+
// color: $prime-white;
|
|
19
|
+
|
|
20
|
+
$prime-black: #363636;
|
|
21
|
+
// color: $prime-black;
|
|
22
|
+
|
|
23
|
+
$prime-gray-10: #f9f9f9;
|
|
24
|
+
$prime-gray-50: #EEEEEE;
|
|
25
|
+
$prime-gray-100: #C7C7C7;
|
|
26
|
+
|
|
27
|
+
$prime-red: #cb0000;
|
|
28
|
+
$prime-green: #1E8E3E;
|
|
29
|
+
|
|
30
|
+
// $i;
|
|
31
|
+
|
|
32
|
+
// font-size: 16px $i;
|
|
33
|
+
// text-transform: uppercase $i;
|
|
34
|
+
|
|
35
|
+
// TCLAUDI2
|
|
36
|
+
// ABCDE .env-card {
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
// .label-success, .badge-success
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// =============================================
|
|
2
|
+
// T-CLoud Standard
|
|
3
|
+
// =============================================
|
|
4
|
+
|
|
5
|
+
$tc-primary: #37b6c4;
|
|
6
|
+
$tc-primary2: #136e92;
|
|
7
|
+
$tc-complemt-3: #136e92;
|
|
8
|
+
|
|
9
|
+
$tc-gray-700: #363636;
|
|
10
|
+
$tc-gray-600: #4e4944;
|
|
11
|
+
$tc-gray-500: #8a817b;
|
|
12
|
+
|
|
13
|
+
$tc-gray-400: #cabfb5;
|
|
14
|
+
$tc-gray-300: #d5ccc3;
|
|
15
|
+
|
|
16
|
+
$tc-gray-200: #e5e3e1;
|
|
17
|
+
|
|
18
|
+
$tc-gray-100: #f1f1f1;
|
|
19
|
+
$tc-gray-50: #f8f9fa;
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
$tc-black: #000;
|
|
23
|
+
$tc-white: #fff;
|
|
24
|
+
|
|
25
|
+
$tc-blue: #0897E9;
|
|
26
|
+
$tc-dark: #363636;
|
|
27
|
+
|
|
28
|
+
$tc-orange: orange;
|
|
29
|
+
|
|
30
|
+
$tc-warning: orange;
|
|
31
|
+
$tc-danger: #D93025;
|
|
32
|
+
$tc-success :#1E8E3E;
|
|
33
|
+
$tc-complete :#039BE5;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// =============================================
|
|
2
|
-
// Colors
|
|
2
|
+
// Common Colors
|
|
3
3
|
// =============================================
|
|
4
4
|
|
|
5
5
|
$black: #000;
|
|
@@ -8,20 +8,28 @@ $white: #fff;
|
|
|
8
8
|
$blue: #0897E9;
|
|
9
9
|
$dark: #363636;
|
|
10
10
|
|
|
11
|
-
$orange:
|
|
12
|
-
|
|
13
|
-
$
|
|
11
|
+
$orange: orange;
|
|
12
|
+
|
|
13
|
+
$warning: orange;
|
|
14
|
+
$danger: #D93025;
|
|
15
|
+
$success :#1E8E3E;
|
|
16
|
+
$complete :#039BE5;
|
|
17
|
+
|
|
14
18
|
|
|
19
|
+
$gray-light: #EEE;
|
|
15
20
|
$blue-500: #0ADBE3;
|
|
16
21
|
$purple: #6B48FF;
|
|
17
22
|
|
|
18
23
|
$red: red;
|
|
19
24
|
|
|
25
|
+
$error:#ff5f5f;
|
|
26
|
+
|
|
20
27
|
// =============================================
|
|
21
28
|
// Colors V1
|
|
22
29
|
// =============================================
|
|
23
30
|
|
|
24
|
-
|
|
31
|
+
|
|
32
|
+
|
|
25
33
|
$primary-700: #136e92;
|
|
26
34
|
|
|
27
35
|
$secondary: #484440;
|
|
@@ -32,13 +40,49 @@ $gray-400: #D5CCC3;
|
|
|
32
40
|
$gray-200: #F1F1F1;
|
|
33
41
|
$gray-100: #F8F9FA;
|
|
34
42
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
$complete :#039BE5;
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
39
46
|
|
|
40
47
|
:root {
|
|
41
|
-
|
|
48
|
+
|
|
49
|
+
// theme color
|
|
50
|
+
|
|
51
|
+
--tc-primary: #37b6c4;
|
|
52
|
+
// var(--tc-primary);
|
|
53
|
+
|
|
54
|
+
--tc-primary2: #136e92;
|
|
55
|
+
|
|
56
|
+
// commons
|
|
57
|
+
|
|
58
|
+
--orange: orange;
|
|
59
|
+
--red :#dc0217;
|
|
60
|
+
--azul: #1c84c6;
|
|
61
|
+
--green2: #10ba3c;
|
|
62
|
+
--green3: #00965A;
|
|
63
|
+
--dark-green: #037f9c;
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
// grays
|
|
67
|
+
--tc-gray-600: #4e4944;
|
|
68
|
+
--tc-gray-500: #8a817b;
|
|
69
|
+
--tc-gray-400: #cabfb5;
|
|
70
|
+
--tc-gray-300: #d5ccc3;
|
|
71
|
+
--tc-gray-200: #e5e3e1;
|
|
72
|
+
--tc-gray-100: #f1f1f1;
|
|
73
|
+
--tc-gray-50: #f8f9fa;
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
// OLD Theme
|
|
77
|
+
--gray: #4e4944;
|
|
42
78
|
--cinza: #8a817b;
|
|
79
|
+
--cinza1: #cabfb5;
|
|
80
|
+
--cinza2: #d5ccc3;
|
|
81
|
+
--cinza3: #e5e3e1;
|
|
43
82
|
--cinza4: #f1f1f1;
|
|
83
|
+
--cinza5: #f8f9fa;
|
|
84
|
+
|
|
85
|
+
--verde: #37b6c4;
|
|
44
86
|
}
|
|
87
|
+
|
|
88
|
+
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
// ---------------------------------
|
|
2
2
|
// Forms
|
|
3
3
|
// ---------------------------------
|
|
4
|
+
// ---------------------------------
|
|
5
|
+
// Forms
|
|
6
|
+
// ---------------------------------
|
|
4
7
|
|
|
5
8
|
.tc-form-control{
|
|
6
9
|
display: block;
|
|
7
10
|
width: 100%;
|
|
8
11
|
padding: .375rem .75rem;
|
|
9
|
-
font-size:
|
|
12
|
+
font-size: 12px;
|
|
10
13
|
font-weight: 400;
|
|
11
14
|
line-height: 1.5;
|
|
12
15
|
color: #212529;
|
|
@@ -62,5 +65,8 @@ select.tc-form-control{
|
|
|
62
65
|
button{
|
|
63
66
|
align-self: end;
|
|
64
67
|
}
|
|
68
|
+
}
|
|
65
69
|
|
|
66
|
-
|
|
70
|
+
.tc-group-input-table td:last-child button {
|
|
71
|
+
color: var(--cinza);
|
|
72
|
+
}
|
|
@@ -66,3 +66,250 @@
|
|
|
66
66
|
border-color: $color transparent transparent transparent;
|
|
67
67
|
border-width: $size $size 0 $size;
|
|
68
68
|
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
// ===============================================
|
|
74
|
+
// Font and text
|
|
75
|
+
// ===============================================
|
|
76
|
+
|
|
77
|
+
@mixin bold {
|
|
78
|
+
font-weight: bold;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
@mixin uppercase {
|
|
83
|
+
text-transform: uppercase;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// ===============================================
|
|
87
|
+
// Helpers
|
|
88
|
+
// ===============================================
|
|
89
|
+
|
|
90
|
+
@mixin test($args...) {
|
|
91
|
+
border: 1px solid $args;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@mixin flex-center {
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// ===============================================
|
|
101
|
+
// Font and text
|
|
102
|
+
// ===============================================
|
|
103
|
+
|
|
104
|
+
@mixin bold {
|
|
105
|
+
font-weight: bold;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@mixin ellipsis {
|
|
109
|
+
text-overflow: ellipsis; /* enables ellipsis */
|
|
110
|
+
white-space: nowrap; /* keeps the text in a single line */
|
|
111
|
+
overflow: hidden; /* keeps the element from overflowing its parent */
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// ===============================================
|
|
115
|
+
// Misc
|
|
116
|
+
// ===============================================
|
|
117
|
+
|
|
118
|
+
@mixin arrow-top($size, $color) {
|
|
119
|
+
content: '';
|
|
120
|
+
height: 0;
|
|
121
|
+
width: 0;
|
|
122
|
+
border-style: solid;
|
|
123
|
+
border-color: transparent transparent $color transparent;
|
|
124
|
+
border-width: 0 $size $size $size;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
@mixin arrow-bottom($size, $color) {
|
|
128
|
+
content: '';
|
|
129
|
+
height: 0;
|
|
130
|
+
width: 0;
|
|
131
|
+
border-style: solid;
|
|
132
|
+
border-color: $color transparent transparent transparent;
|
|
133
|
+
border-width: $size $size 0 $size;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@mixin thin-scroll-bar() {
|
|
137
|
+
&::-webkit-scrollbar {
|
|
138
|
+
width: 10px;
|
|
139
|
+
}
|
|
140
|
+
/* Track */
|
|
141
|
+
&::-webkit-scrollbar-track {
|
|
142
|
+
background: var(--tc-gray-200);
|
|
143
|
+
border-radius: 10px;
|
|
144
|
+
}
|
|
145
|
+
/* Handle */
|
|
146
|
+
&::-webkit-scrollbar-thumb {
|
|
147
|
+
background: var(--tc-gray-300);
|
|
148
|
+
border-radius: 10px;
|
|
149
|
+
}
|
|
150
|
+
/* Handle on hover */
|
|
151
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
152
|
+
background: var(--tc-gray-400);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
@mixin bdr-bottom( $sz, $clr) {
|
|
157
|
+
border-bottom: 1px solid $clr;
|
|
158
|
+
margin-bottom: $sz;
|
|
159
|
+
padding-bottom: $sz;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@mixin flex-center {
|
|
163
|
+
display: flex;
|
|
164
|
+
justify-content: center;
|
|
165
|
+
align-items: center;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// ===============================================
|
|
169
|
+
// T-Cloud Prime
|
|
170
|
+
// ===============================================
|
|
171
|
+
|
|
172
|
+
@mixin prime-color {
|
|
173
|
+
// @include prime-color;
|
|
174
|
+
color: $prime-primary!important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
@mixin prime-gray-100 {
|
|
178
|
+
// @include prime-gray-100;
|
|
179
|
+
color: $prime-gray-100!important;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
@mixin prime-gray-50 {
|
|
183
|
+
// @include prime-gray-50;
|
|
184
|
+
color: $prime-gray-50!important;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
@mixin prime-bg {
|
|
191
|
+
// @include prime-bg;
|
|
192
|
+
background: $prime-primary!important;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
@mixin prime-bgc {
|
|
196
|
+
// @include prime-bgc;
|
|
197
|
+
background-color: $prime-primary!important;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
@mixin prime-bg-100 {
|
|
201
|
+
// @include prime-bg-100;
|
|
202
|
+
background: $prime-gray-100!important;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
@mixin prime-bg-50 {
|
|
206
|
+
// @include prime-bg-50;
|
|
207
|
+
background: $prime-gray-50!important;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
@mixin prime-bg-10 {
|
|
211
|
+
// @include prime-bg-10;
|
|
212
|
+
background: $prime-gray-10!important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
@mixin prime-bdr {
|
|
219
|
+
// @include prime-color;
|
|
220
|
+
border-color: $prime-primary!important;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
@mixin prime-bdr-100 {
|
|
224
|
+
// @include prime-bdr-100;
|
|
225
|
+
border-color: $prime-gray-100!important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
@mixin prime-bdr-50 {
|
|
229
|
+
// @include prime-bdr-50;
|
|
230
|
+
border-color: $prime-gray-50!important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
@mixin prime-black {
|
|
237
|
+
// @include prime-black;
|
|
238
|
+
color: $prime-black!important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@mixin prime-white {
|
|
242
|
+
// @include prime-white;
|
|
243
|
+
color: $prime-white!important;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
@mixin prime-mkt-gradient {
|
|
247
|
+
// @include prime-mkt-gradient;
|
|
248
|
+
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,362480+100 */
|
|
249
|
+
background: #6b48ff!important; /* Old browsers */
|
|
250
|
+
background: -moz-linear-gradient(left, #6b48ff 0%, #362480 100%)!important; /* FF3.6-15 */
|
|
251
|
+
background: -webkit-linear-gradient(left, #6b48ff 0%,#362480 100%)!important; /* Chrome10-25,Safari5.1-6 */
|
|
252
|
+
background: linear-gradient(to right, #6b48ff 0%,#362480 100%)!important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
253
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b48ff', endColorstr='#362480',GradientType=1 )!important; /* IE6-9 */
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
@mixin prime-bg-gradient {
|
|
257
|
+
// @include prime-bg-gradient;
|
|
258
|
+
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,7151ff+100 */
|
|
259
|
+
background: #6b48ff; /* Old browsers */
|
|
260
|
+
background: -moz-linear-gradient(left, #6b48ff 0%, #6B48FF 100%); /* FF3.6-15 */
|
|
261
|
+
background: -webkit-linear-gradient(left, #6b48ff 0%,#6B48FF 100%); /* Chrome10-25,Safari5.1-6 */
|
|
262
|
+
background: linear-gradient(to right, #6b48ff 0%,#6B48FF 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
263
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b48ff', endColorstr='#6B48FF',GradientType=1 ); /* IE6-9 */
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
@mixin prime-title {
|
|
268
|
+
// @include prime-title;
|
|
269
|
+
font-size: 20px;
|
|
270
|
+
font-weight: bold;
|
|
271
|
+
text-transform: uppercase;
|
|
272
|
+
padding-bottom: 10px;
|
|
273
|
+
border-bottom: 1px solid $prime-gray-50;
|
|
274
|
+
margin-bottom: 20px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
@mixin prime-subtitle {
|
|
279
|
+
// @include prime-subtitle;
|
|
280
|
+
font-size: 16px !important;
|
|
281
|
+
text-transform: uppercase !important;
|
|
282
|
+
border-bottom: 1px solid $prime-gray-50 !important;
|
|
283
|
+
padding-bottom: 10px !important;
|
|
284
|
+
margin-bottom: 20px !important;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
@mixin ico-menu($img, $hgt, $wdt) {
|
|
288
|
+
background: url(/assets/img/menu/#{$img}.svg);
|
|
289
|
+
height: $hgt;
|
|
290
|
+
width: $wdt;
|
|
291
|
+
background-repeat: no-repeat;
|
|
292
|
+
background-position: center;
|
|
293
|
+
|
|
294
|
+
&::before {
|
|
295
|
+
display: none;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
@mixin ico-topmenu($img, $hgt, $wdt) {
|
|
301
|
+
background: url(/assets/img/topmenu/#{$img}.svg);
|
|
302
|
+
height: $hgt;
|
|
303
|
+
width: $wdt;
|
|
304
|
+
background-repeat: no-repeat;
|
|
305
|
+
background-position: center;
|
|
306
|
+
|
|
307
|
+
&::before {
|
|
308
|
+
display: none !important;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@mixin svg-prime {
|
|
314
|
+
filter: invert(37%) sepia(99%) saturate(5131%) hue-rotate(243deg) brightness(100%) contrast(103%);
|
|
315
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
@import './colors-standard.scss';
|
|
2
|
+
@import './colors-prime.scss';
|
|
3
|
+
@import './colors.scss';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// ==================================================
|
|
9
|
+
// Old Colors
|
|
10
|
+
// ==================================================
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Basic Colors
|
|
14
|
+
$navy: #1ab394; // Primary color
|
|
15
|
+
$dark-gray: #c2c2c2; // Default color
|
|
16
|
+
$blue: #1c84c6; // Success color
|
|
17
|
+
$lazur: #23c6c8; // Info color
|
|
18
|
+
$yellow: #f8ac59; // Warning color
|
|
19
|
+
$red: #ED5565; // Danger color
|
|
20
|
+
|
|
21
|
+
// Various colors
|
|
22
|
+
$text-color: #676a6c; // Body text
|
|
23
|
+
$gray: #f3f3f4; // Background wrapper color
|
|
24
|
+
$light-gray: #D1DADE; // Default label, badge
|
|
25
|
+
$label-badge-color: #5E5E5E;
|
|
26
|
+
$light-blue:#f3f6fb;
|
|
27
|
+
|
|
28
|
+
// Spinner color and margin
|
|
29
|
+
$spin-color: $navy;
|
|
30
|
+
$spin-margin: 0 auto;
|
|
31
|
+
|
|
32
|
+
//Basics
|
|
33
|
+
$basic-link-color: #337ab7;
|
|
34
|
+
|
|
35
|
+
// IBOX colors ( default panel colors)
|
|
36
|
+
$border-color: #e7eaec; // IBox border
|
|
37
|
+
$ibox-title-bg:#ffffff; // IBox Background header
|
|
38
|
+
$ibox-content-bg:#ffffff; // IBox Background content
|
|
39
|
+
|
|
40
|
+
//Sidebar width
|
|
41
|
+
$sidebar-width: 220px;
|
|
42
|
+
|
|
43
|
+
// Boxed layout width
|
|
44
|
+
$boxed-width: 1200px;
|
|
45
|
+
$boxed-background: url('patterns/shattered.png');
|
|
46
|
+
|
|
47
|
+
//Border radius for buttons
|
|
48
|
+
$btn-border-radius: 3px;
|
|
49
|
+
|
|
50
|
+
//Navigation
|
|
51
|
+
$nav-bg: #0a85a4;
|
|
52
|
+
$nav-profile-pattern: url("patterns/header-profile.png");
|
|
53
|
+
$nav-text-color: #fafafa;
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@function getColorWithOpacity($color, $opacity) {
|
|
58
|
+
@return rgba($color, $opacity);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
//Cores baseadas no UI-Kit do Adobe XD
|
|
64
|
+
$primary: #37B6C4;
|
|
65
|
+
$primary-hover: #037F9C;
|
|
66
|
+
$tc-white-1: #FFF;
|
|
67
|
+
$tc-white-2: #F1F1F1;
|
|
68
|
+
$grey-1: #D5CCC3;
|
|
69
|
+
$grey-2: #B9B9B9;
|
|
70
|
+
$grey-3: #8A817B;
|
|
71
|
+
$grey-4: #707070;
|
|
72
|
+
$grey-5: #484440;
|
|
73
|
+
|
|
74
|
+
$success: #1E8E3E;
|
|
75
|
+
$warning: #ED9C2E;
|
|
76
|
+
$danger: #D93025;
|
|
77
|
+
$complimentary: #039BE5;
|
package/scss/tcloud/styles.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@import 'custom/
|
|
1
|
+
@import 'custom/variables.scss';
|
|
2
2
|
@import 'custom/mixins.scss';
|
|
3
3
|
|
|
4
|
-
@import 'custom/layout.scss';
|
|
5
4
|
@import 'custom/buttons.scss';
|
|
6
|
-
@import 'custom/forms.scss';
|
|
7
|
-
@import 'custom/text.scss';
|
|
8
5
|
@import 'custom/card.scss';
|
|
6
|
+
@import 'custom/forms.scss';
|
|
7
|
+
@import 'custom/layout.scss';
|
|
8
|
+
@import 'custom/text.scss';
|