plataforma-fundacao-componentes 2.26.2 → 2.26.4
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/dist/assets/icons/InformationIcon.d.ts +2 -2
- package/dist/assets/icons/MiniInformationIcon.d.ts +3 -0
- package/dist/components/checkbox/Checkbox.d.ts +286 -3
- package/dist/components/input/Input.d.ts +4 -4
- package/dist/components/input/Input.stories.d.ts +1 -0
- package/dist/components/inputArea/InputArea.d.ts +2 -2
- package/dist/components/modal/Modal.d.ts +4 -4
- package/dist/components/radioButton/RadioButton.d.ts +4 -3
- package/dist/components/radioButton/RadioButton.stories.d.ts +1 -0
- package/dist/components/search/Search.d.ts +2 -2
- package/dist/components/select/Select.d.ts +2 -2
- package/dist/components/table/components/leftControlWithLabel/LeftControlWithLabel.d.ts +3 -3
- package/dist/components/tooltipElement/TooltipElement.d.ts +9 -0
- package/dist/components/tooltipElement/TooltipElement.stories.d.ts +7 -0
- package/dist/components/typography/Typography.d.ts +13 -0
- package/dist/components/typography/Typography.stories.d.ts +38 -0
- package/dist/components/videoModal/VideoModal.d.ts +6 -6
- package/dist/index.css +450 -259
- package/dist/index.d.ts +18 -15
- package/dist/index.js +685 -508
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +686 -512
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/HTMLutils.d.ts +1 -1
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -2140,38 +2140,48 @@ h5 {
|
|
|
2140
2140
|
display: flex;
|
|
2141
2141
|
justify-content: center;
|
|
2142
2142
|
align-items: center;
|
|
2143
|
-
transition: background-color 0.3s ease, opacity 0.3s ease;
|
|
2143
|
+
transition: background-color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
|
|
2144
2144
|
position: relative; }
|
|
2145
2145
|
.component-checkbox:not(:disabled), .component-checkbox:not(.component-checkbox[aria-disabled='true']) {
|
|
2146
2146
|
cursor: pointer; }
|
|
2147
2147
|
.component-checkbox:focus {
|
|
2148
2148
|
outline: none; }
|
|
2149
2149
|
|
|
2150
|
+
.component-checkbox-primary[data-error='true'][data-checked='true'],
|
|
2151
|
+
.component-checkbox-dark[data-error='true'][data-checked='true'],
|
|
2152
|
+
.component-checkbox-blue[data-error='true'][data-checked='true'] {
|
|
2153
|
+
background-color: #e60000; }
|
|
2154
|
+
|
|
2155
|
+
.component-checkbox-primary[data-error='true'][data-checked='false'],
|
|
2156
|
+
.component-checkbox-dark[data-error='true'][data-checked='false'],
|
|
2157
|
+
.component-checkbox-blue[data-error='true'][data-checked='false'] {
|
|
2158
|
+
background-color: #ffb4b4; }
|
|
2159
|
+
|
|
2150
2160
|
.component-checkbox-primary:disabled, .component-checkbox-primary[aria-disabled='true'] {
|
|
2151
2161
|
opacity: 0.6; }
|
|
2152
2162
|
|
|
2153
|
-
.component-checkbox-primary
|
|
2163
|
+
.component-checkbox-primary[data-checked='false'] {
|
|
2154
2164
|
background-color: #c4c4c4; }
|
|
2155
2165
|
|
|
2156
|
-
.component-checkbox-primary
|
|
2166
|
+
.component-checkbox-primary[data-checked='true'] {
|
|
2157
2167
|
background-color: #3fa110; }
|
|
2158
2168
|
|
|
2159
2169
|
.component-checkbox-dark:disabled, .component-checkbox-dark[aria-disabled='true'] {
|
|
2160
2170
|
opacity: 0.6; }
|
|
2161
2171
|
|
|
2162
|
-
.component-checkbox-dark
|
|
2172
|
+
.component-checkbox-dark[data-checked='false'] {
|
|
2163
2173
|
background-color: #c4c4c4; }
|
|
2164
2174
|
|
|
2165
|
-
.component-checkbox-dark
|
|
2175
|
+
.component-checkbox-dark[data-checked='true'] {
|
|
2166
2176
|
background-color: #323c32; }
|
|
2167
2177
|
|
|
2168
2178
|
.component-checkbox-blue:disabled, .component-checkbox-blue[aria-disabled='true'] {
|
|
2169
2179
|
opacity: 0.6; }
|
|
2170
2180
|
|
|
2171
|
-
.component-checkbox-blue
|
|
2181
|
+
.component-checkbox-blue[data-checked='false'] {
|
|
2172
2182
|
background-color: #eaeaea; }
|
|
2173
2183
|
|
|
2174
|
-
.component-checkbox-blue
|
|
2184
|
+
.component-checkbox-blue[data-checked='true'] {
|
|
2175
2185
|
background-color: #00708f; }
|
|
2176
2186
|
|
|
2177
2187
|
.component-checkbox-classic {
|
|
@@ -2185,11 +2195,15 @@ h5 {
|
|
|
2185
2195
|
height: 12px;
|
|
2186
2196
|
background-color: rgba(0, 0, 0, 0);
|
|
2187
2197
|
transition: background-color 0.3s ease; }
|
|
2198
|
+
.component-checkbox-classic[data-error='true'] {
|
|
2199
|
+
border-color: #e60000; }
|
|
2200
|
+
.component-checkbox-classic[data-error='true'][data-checked='true']::after {
|
|
2201
|
+
background-color: #e60000; }
|
|
2188
2202
|
.component-checkbox-classic:disabled, .component-checkbox-classic[aria-disabled='true'] {
|
|
2189
2203
|
border-color: #828a82; }
|
|
2190
|
-
.component-checkbox-classic:disabled
|
|
2204
|
+
.component-checkbox-classic:disabled[data-checked='true']::after, .component-checkbox-classic[aria-disabled='true'][data-checked='true']::after {
|
|
2191
2205
|
background-color: #828a82; }
|
|
2192
|
-
.component-checkbox-classic
|
|
2206
|
+
.component-checkbox-classic[data-checked='true']::after {
|
|
2193
2207
|
background-color: #3fa110; }
|
|
2194
2208
|
|
|
2195
2209
|
@use "sass:map";
|
|
@@ -2471,62 +2485,6 @@ h5 {
|
|
|
2471
2485
|
flex: 0 0 calc(100% * 12 / 12);
|
|
2472
2486
|
max-width: calc(100% * 12 / 12); } }
|
|
2473
2487
|
|
|
2474
|
-
:export {
|
|
2475
|
-
widthXs: 575.98px;
|
|
2476
|
-
widthSm: 767.98px;
|
|
2477
|
-
widthMd: 991.98px;
|
|
2478
|
-
widthLg: 1199.98px; }
|
|
2479
|
-
|
|
2480
|
-
:export {
|
|
2481
|
-
white: #fefefe;
|
|
2482
|
-
darkenWhite: #efefef;
|
|
2483
|
-
black: #121212;
|
|
2484
|
-
transparent: rgba(0, 0, 0, 0);
|
|
2485
|
-
primary: #3fa110;
|
|
2486
|
-
primaryDark: #33820d;
|
|
2487
|
-
primaryLight: #d7e6c8;
|
|
2488
|
-
secondaryDarker: #323c32;
|
|
2489
|
-
secondaryDark: #5a645a;
|
|
2490
|
-
blueDarker: #2b517b;
|
|
2491
|
-
secondary: #828a82;
|
|
2492
|
-
secondaryLight: #cdd3cd;
|
|
2493
|
-
secondaryLighter: #f8f9f7;
|
|
2494
|
-
danger: #e60000;
|
|
2495
|
-
dangerLight: #ffb4b4;
|
|
2496
|
-
dangerDark: #ab4745;
|
|
2497
|
-
warning: #ffcd00;
|
|
2498
|
-
warningLight: #ffeb98;
|
|
2499
|
-
warningDark: #765f00; }
|
|
2500
|
-
|
|
2501
|
-
.component-control-label {
|
|
2502
|
-
display: inline-flex;
|
|
2503
|
-
align-items: center;
|
|
2504
|
-
-webkit-user-select: none;
|
|
2505
|
-
-moz-user-select: none;
|
|
2506
|
-
-ms-user-select: none;
|
|
2507
|
-
-webkit-tap-highlight-color: transparent;
|
|
2508
|
-
user-select: none;
|
|
2509
|
-
vertical-align: middle;
|
|
2510
|
-
color: #323c32;
|
|
2511
|
-
gap: 8px; }
|
|
2512
|
-
.component-control-label.top {
|
|
2513
|
-
flex-direction: column-reverse; }
|
|
2514
|
-
.component-control-label.left {
|
|
2515
|
-
flex-direction: row-reverse; }
|
|
2516
|
-
.component-control-label.bottom {
|
|
2517
|
-
flex-direction: column; }
|
|
2518
|
-
.component-control-label.right {
|
|
2519
|
-
flex-direction: row; }
|
|
2520
|
-
.component-control-label.disabled {
|
|
2521
|
-
color: rgba(50, 60, 50, 0.8);
|
|
2522
|
-
cursor: auto; }
|
|
2523
|
-
.component-control-label:not(.disabled):hover {
|
|
2524
|
-
cursor: pointer; }
|
|
2525
|
-
.component-control-label span {
|
|
2526
|
-
padding-top: 2px; }
|
|
2527
|
-
.component-control-label > button {
|
|
2528
|
-
min-width: 18px; }
|
|
2529
|
-
|
|
2530
2488
|
@charset "UTF-8";
|
|
2531
2489
|
:export {
|
|
2532
2490
|
widthXs: 575.98px;
|
|
@@ -2622,6 +2580,62 @@ Extra small
|
|
|
2622
2580
|
max-width 100% 540px 720px 960px 1140px
|
|
2623
2581
|
*/
|
|
2624
2582
|
|
|
2583
|
+
:export {
|
|
2584
|
+
widthXs: 575.98px;
|
|
2585
|
+
widthSm: 767.98px;
|
|
2586
|
+
widthMd: 991.98px;
|
|
2587
|
+
widthLg: 1199.98px; }
|
|
2588
|
+
|
|
2589
|
+
:export {
|
|
2590
|
+
white: #fefefe;
|
|
2591
|
+
darkenWhite: #efefef;
|
|
2592
|
+
black: #121212;
|
|
2593
|
+
transparent: rgba(0, 0, 0, 0);
|
|
2594
|
+
primary: #3fa110;
|
|
2595
|
+
primaryDark: #33820d;
|
|
2596
|
+
primaryLight: #d7e6c8;
|
|
2597
|
+
secondaryDarker: #323c32;
|
|
2598
|
+
secondaryDark: #5a645a;
|
|
2599
|
+
blueDarker: #2b517b;
|
|
2600
|
+
secondary: #828a82;
|
|
2601
|
+
secondaryLight: #cdd3cd;
|
|
2602
|
+
secondaryLighter: #f8f9f7;
|
|
2603
|
+
danger: #e60000;
|
|
2604
|
+
dangerLight: #ffb4b4;
|
|
2605
|
+
dangerDark: #ab4745;
|
|
2606
|
+
warning: #ffcd00;
|
|
2607
|
+
warningLight: #ffeb98;
|
|
2608
|
+
warningDark: #765f00; }
|
|
2609
|
+
|
|
2610
|
+
.component-control-label {
|
|
2611
|
+
display: inline-flex;
|
|
2612
|
+
align-items: center;
|
|
2613
|
+
-webkit-user-select: none;
|
|
2614
|
+
-moz-user-select: none;
|
|
2615
|
+
-ms-user-select: none;
|
|
2616
|
+
-webkit-tap-highlight-color: transparent;
|
|
2617
|
+
user-select: none;
|
|
2618
|
+
vertical-align: middle;
|
|
2619
|
+
color: #323c32;
|
|
2620
|
+
gap: 8px; }
|
|
2621
|
+
.component-control-label.top {
|
|
2622
|
+
flex-direction: column-reverse; }
|
|
2623
|
+
.component-control-label.left {
|
|
2624
|
+
flex-direction: row-reverse; }
|
|
2625
|
+
.component-control-label.bottom {
|
|
2626
|
+
flex-direction: column; }
|
|
2627
|
+
.component-control-label.right {
|
|
2628
|
+
flex-direction: row; }
|
|
2629
|
+
.component-control-label.disabled {
|
|
2630
|
+
color: rgba(50, 60, 50, 0.8);
|
|
2631
|
+
cursor: auto; }
|
|
2632
|
+
.component-control-label:not(.disabled):hover {
|
|
2633
|
+
cursor: pointer; }
|
|
2634
|
+
.component-control-label span {
|
|
2635
|
+
padding-top: 2px; }
|
|
2636
|
+
.component-control-label > button {
|
|
2637
|
+
min-width: 18px; }
|
|
2638
|
+
|
|
2625
2639
|
:export {
|
|
2626
2640
|
widthXs: 575.98px;
|
|
2627
2641
|
widthSm: 767.98px;
|
|
@@ -4033,42 +4047,6 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4033
4047
|
warningLight: #ffeb98;
|
|
4034
4048
|
warningDark: #765f00; }
|
|
4035
4049
|
|
|
4036
|
-
.component-header-separator {
|
|
4037
|
-
width: 1px;
|
|
4038
|
-
height: 14px;
|
|
4039
|
-
margin: 0 2px; }
|
|
4040
|
-
.component-header-separator.component-header-separator-primary {
|
|
4041
|
-
background-color: #fefefe; }
|
|
4042
|
-
.component-header-separator.component-header-separator-secondary {
|
|
4043
|
-
background-color: #cdd3cd; }
|
|
4044
|
-
|
|
4045
|
-
:export {
|
|
4046
|
-
widthXs: 575.98px;
|
|
4047
|
-
widthSm: 767.98px;
|
|
4048
|
-
widthMd: 991.98px;
|
|
4049
|
-
widthLg: 1199.98px; }
|
|
4050
|
-
|
|
4051
|
-
:export {
|
|
4052
|
-
white: #fefefe;
|
|
4053
|
-
darkenWhite: #efefef;
|
|
4054
|
-
black: #121212;
|
|
4055
|
-
transparent: rgba(0, 0, 0, 0);
|
|
4056
|
-
primary: #3fa110;
|
|
4057
|
-
primaryDark: #33820d;
|
|
4058
|
-
primaryLight: #d7e6c8;
|
|
4059
|
-
secondaryDarker: #323c32;
|
|
4060
|
-
secondaryDark: #5a645a;
|
|
4061
|
-
blueDarker: #2b517b;
|
|
4062
|
-
secondary: #828a82;
|
|
4063
|
-
secondaryLight: #cdd3cd;
|
|
4064
|
-
secondaryLighter: #f8f9f7;
|
|
4065
|
-
danger: #e60000;
|
|
4066
|
-
dangerLight: #ffb4b4;
|
|
4067
|
-
dangerDark: #ab4745;
|
|
4068
|
-
warning: #ffcd00;
|
|
4069
|
-
warningLight: #ffeb98;
|
|
4070
|
-
warningDark: #765f00; }
|
|
4071
|
-
|
|
4072
4050
|
header.component-header {
|
|
4073
4051
|
z-index: 970;
|
|
4074
4052
|
left: 0;
|
|
@@ -4221,6 +4199,42 @@ header.component-header {
|
|
|
4221
4199
|
warningLight: #ffeb98;
|
|
4222
4200
|
warningDark: #765f00; }
|
|
4223
4201
|
|
|
4202
|
+
.component-header-separator {
|
|
4203
|
+
width: 1px;
|
|
4204
|
+
height: 14px;
|
|
4205
|
+
margin: 0 2px; }
|
|
4206
|
+
.component-header-separator.component-header-separator-primary {
|
|
4207
|
+
background-color: #fefefe; }
|
|
4208
|
+
.component-header-separator.component-header-separator-secondary {
|
|
4209
|
+
background-color: #cdd3cd; }
|
|
4210
|
+
|
|
4211
|
+
:export {
|
|
4212
|
+
widthXs: 575.98px;
|
|
4213
|
+
widthSm: 767.98px;
|
|
4214
|
+
widthMd: 991.98px;
|
|
4215
|
+
widthLg: 1199.98px; }
|
|
4216
|
+
|
|
4217
|
+
:export {
|
|
4218
|
+
white: #fefefe;
|
|
4219
|
+
darkenWhite: #efefef;
|
|
4220
|
+
black: #121212;
|
|
4221
|
+
transparent: rgba(0, 0, 0, 0);
|
|
4222
|
+
primary: #3fa110;
|
|
4223
|
+
primaryDark: #33820d;
|
|
4224
|
+
primaryLight: #d7e6c8;
|
|
4225
|
+
secondaryDarker: #323c32;
|
|
4226
|
+
secondaryDark: #5a645a;
|
|
4227
|
+
blueDarker: #2b517b;
|
|
4228
|
+
secondary: #828a82;
|
|
4229
|
+
secondaryLight: #cdd3cd;
|
|
4230
|
+
secondaryLighter: #f8f9f7;
|
|
4231
|
+
danger: #e60000;
|
|
4232
|
+
dangerLight: #ffb4b4;
|
|
4233
|
+
dangerDark: #ab4745;
|
|
4234
|
+
warning: #ffcd00;
|
|
4235
|
+
warningLight: #ffeb98;
|
|
4236
|
+
warningDark: #765f00; }
|
|
4237
|
+
|
|
4224
4238
|
.component-information-icon {
|
|
4225
4239
|
display: flex;
|
|
4226
4240
|
align-items: center;
|
|
@@ -5282,116 +5296,8 @@ header.component-header {
|
|
|
5282
5296
|
.component-page-subtitle {
|
|
5283
5297
|
font-size: 16px; } }
|
|
5284
5298
|
|
|
5285
|
-
:
|
|
5286
|
-
|
|
5287
|
-
widthSm: 767.98px;
|
|
5288
|
-
widthMd: 991.98px;
|
|
5289
|
-
widthLg: 1199.98px; }
|
|
5290
|
-
|
|
5291
|
-
:export {
|
|
5292
|
-
white: #fefefe;
|
|
5293
|
-
darkenWhite: #efefef;
|
|
5294
|
-
black: #121212;
|
|
5295
|
-
transparent: rgba(0, 0, 0, 0);
|
|
5296
|
-
primary: #3fa110;
|
|
5297
|
-
primaryDark: #33820d;
|
|
5298
|
-
primaryLight: #d7e6c8;
|
|
5299
|
-
secondaryDarker: #323c32;
|
|
5300
|
-
secondaryDark: #5a645a;
|
|
5301
|
-
blueDarker: #2b517b;
|
|
5302
|
-
secondary: #828a82;
|
|
5303
|
-
secondaryLight: #cdd3cd;
|
|
5304
|
-
secondaryLighter: #f8f9f7;
|
|
5305
|
-
danger: #e60000;
|
|
5306
|
-
dangerLight: #ffb4b4;
|
|
5307
|
-
dangerDark: #ab4745;
|
|
5308
|
-
warning: #ffcd00;
|
|
5309
|
-
warningLight: #ffeb98;
|
|
5310
|
-
warningDark: #765f00; }
|
|
5311
|
-
|
|
5312
|
-
.component-paginator {
|
|
5313
|
-
width: 100%;
|
|
5314
|
-
display: flex;
|
|
5315
|
-
margin: auto; }
|
|
5316
|
-
.component-paginator .component-paginator-center-content {
|
|
5317
|
-
position: relative;
|
|
5318
|
-
display: flex;
|
|
5319
|
-
align-items: center;
|
|
5320
|
-
justify-content: center;
|
|
5321
|
-
margin-left: auto;
|
|
5322
|
-
margin-right: auto; }
|
|
5323
|
-
.component-paginator .component-paginator-center-content > div {
|
|
5324
|
-
display: flex;
|
|
5325
|
-
align-items: center;
|
|
5326
|
-
visibility: visible;
|
|
5327
|
-
opacity: 1;
|
|
5328
|
-
transition: 0.3s ease; }
|
|
5329
|
-
.component-paginator .component-paginator-center-content > div.hidden {
|
|
5330
|
-
visibility: hidden;
|
|
5331
|
-
opacity: 0; }
|
|
5332
|
-
.component-paginator .component-paginator-center-content > div .component-paginator-numbers {
|
|
5333
|
-
overflow-x: auto;
|
|
5334
|
-
display: flex; }
|
|
5335
|
-
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number {
|
|
5336
|
-
-webkit-user-select: none;
|
|
5337
|
-
-moz-user-select: none;
|
|
5338
|
-
user-select: none;
|
|
5339
|
-
display: flex;
|
|
5340
|
-
justify-content: center;
|
|
5341
|
-
align-items: center;
|
|
5342
|
-
-webkit-appearance: none;
|
|
5343
|
-
-moz-appearance: none;
|
|
5344
|
-
appearance: none;
|
|
5345
|
-
border: none;
|
|
5346
|
-
outline: none;
|
|
5347
|
-
background-color: rgba(0, 0, 0, 0);
|
|
5348
|
-
color: #323c32;
|
|
5349
|
-
cursor: pointer;
|
|
5350
|
-
padding: 2px;
|
|
5351
|
-
border-radius: 200px;
|
|
5352
|
-
width: 25px;
|
|
5353
|
-
height: 25px;
|
|
5354
|
-
font-size: 16px;
|
|
5355
|
-
font-weight: 500;
|
|
5356
|
-
transition: background-color 0.3s ease, color 0.3s ease; }
|
|
5357
|
-
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number:hover {
|
|
5358
|
-
background-color: #f3f5f1; }
|
|
5359
|
-
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number.active {
|
|
5360
|
-
cursor: default;
|
|
5361
|
-
background-color: #3fa110;
|
|
5362
|
-
color: #fefefe; }
|
|
5363
|
-
.component-paginator .component-paginator-center-content .component-paginator-loader {
|
|
5364
|
-
position: absolute;
|
|
5365
|
-
top: 0;
|
|
5366
|
-
left: 0;
|
|
5367
|
-
width: 100%;
|
|
5368
|
-
height: 100%;
|
|
5369
|
-
display: flex;
|
|
5370
|
-
align-items: center;
|
|
5371
|
-
justify-content: center;
|
|
5372
|
-
opacity: 1;
|
|
5373
|
-
transition: 0.3s ease; }
|
|
5374
|
-
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-enter {
|
|
5375
|
-
opacity: 0; }
|
|
5376
|
-
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-enter-active {
|
|
5377
|
-
transition: opacity 0.3s ease;
|
|
5378
|
-
opacity: 1; }
|
|
5379
|
-
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-exit {
|
|
5380
|
-
opacity: 1; }
|
|
5381
|
-
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-exit-active {
|
|
5382
|
-
transition: opacity 0.3s ease;
|
|
5383
|
-
opacity: 0; }
|
|
5384
|
-
.component-paginator .component-paginator-left-arrow {
|
|
5385
|
-
margin-right: 4px; }
|
|
5386
|
-
.component-paginator .component-paginator-left-arrow svg {
|
|
5387
|
-
max-height: 16px; }
|
|
5388
|
-
.component-paginator .component-paginator-right-arrow {
|
|
5389
|
-
margin-left: 4px; }
|
|
5390
|
-
.component-paginator .component-paginator-right-arrow svg {
|
|
5391
|
-
max-height: 16px; }
|
|
5392
|
-
|
|
5393
|
-
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
5394
|
-
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
5299
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
5300
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
5395
5301
|
:export {
|
|
5396
5302
|
white: #fefefe;
|
|
5397
5303
|
darkenWhite: #efefef;
|
|
@@ -5744,6 +5650,114 @@ h5 {
|
|
|
5744
5650
|
warningLight: #ffeb98;
|
|
5745
5651
|
warningDark: #765f00; }
|
|
5746
5652
|
|
|
5653
|
+
.component-paginator {
|
|
5654
|
+
width: 100%;
|
|
5655
|
+
display: flex;
|
|
5656
|
+
margin: auto; }
|
|
5657
|
+
.component-paginator .component-paginator-center-content {
|
|
5658
|
+
position: relative;
|
|
5659
|
+
display: flex;
|
|
5660
|
+
align-items: center;
|
|
5661
|
+
justify-content: center;
|
|
5662
|
+
margin-left: auto;
|
|
5663
|
+
margin-right: auto; }
|
|
5664
|
+
.component-paginator .component-paginator-center-content > div {
|
|
5665
|
+
display: flex;
|
|
5666
|
+
align-items: center;
|
|
5667
|
+
visibility: visible;
|
|
5668
|
+
opacity: 1;
|
|
5669
|
+
transition: 0.3s ease; }
|
|
5670
|
+
.component-paginator .component-paginator-center-content > div.hidden {
|
|
5671
|
+
visibility: hidden;
|
|
5672
|
+
opacity: 0; }
|
|
5673
|
+
.component-paginator .component-paginator-center-content > div .component-paginator-numbers {
|
|
5674
|
+
overflow-x: auto;
|
|
5675
|
+
display: flex; }
|
|
5676
|
+
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number {
|
|
5677
|
+
-webkit-user-select: none;
|
|
5678
|
+
-moz-user-select: none;
|
|
5679
|
+
user-select: none;
|
|
5680
|
+
display: flex;
|
|
5681
|
+
justify-content: center;
|
|
5682
|
+
align-items: center;
|
|
5683
|
+
-webkit-appearance: none;
|
|
5684
|
+
-moz-appearance: none;
|
|
5685
|
+
appearance: none;
|
|
5686
|
+
border: none;
|
|
5687
|
+
outline: none;
|
|
5688
|
+
background-color: rgba(0, 0, 0, 0);
|
|
5689
|
+
color: #323c32;
|
|
5690
|
+
cursor: pointer;
|
|
5691
|
+
padding: 2px;
|
|
5692
|
+
border-radius: 200px;
|
|
5693
|
+
width: 25px;
|
|
5694
|
+
height: 25px;
|
|
5695
|
+
font-size: 16px;
|
|
5696
|
+
font-weight: 500;
|
|
5697
|
+
transition: background-color 0.3s ease, color 0.3s ease; }
|
|
5698
|
+
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number:hover {
|
|
5699
|
+
background-color: #f3f5f1; }
|
|
5700
|
+
.component-paginator .component-paginator-center-content > div .component-paginator-numbers .component-paginator-number.active {
|
|
5701
|
+
cursor: default;
|
|
5702
|
+
background-color: #3fa110;
|
|
5703
|
+
color: #fefefe; }
|
|
5704
|
+
.component-paginator .component-paginator-center-content .component-paginator-loader {
|
|
5705
|
+
position: absolute;
|
|
5706
|
+
top: 0;
|
|
5707
|
+
left: 0;
|
|
5708
|
+
width: 100%;
|
|
5709
|
+
height: 100%;
|
|
5710
|
+
display: flex;
|
|
5711
|
+
align-items: center;
|
|
5712
|
+
justify-content: center;
|
|
5713
|
+
opacity: 1;
|
|
5714
|
+
transition: 0.3s ease; }
|
|
5715
|
+
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-enter {
|
|
5716
|
+
opacity: 0; }
|
|
5717
|
+
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-enter-active {
|
|
5718
|
+
transition: opacity 0.3s ease;
|
|
5719
|
+
opacity: 1; }
|
|
5720
|
+
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-exit {
|
|
5721
|
+
opacity: 1; }
|
|
5722
|
+
.component-paginator .component-paginator-center-content .component-paginator-loader.component-paginator-loader-exit-active {
|
|
5723
|
+
transition: opacity 0.3s ease;
|
|
5724
|
+
opacity: 0; }
|
|
5725
|
+
.component-paginator .component-paginator-left-arrow {
|
|
5726
|
+
margin-right: 4px; }
|
|
5727
|
+
.component-paginator .component-paginator-left-arrow svg {
|
|
5728
|
+
max-height: 16px; }
|
|
5729
|
+
.component-paginator .component-paginator-right-arrow {
|
|
5730
|
+
margin-left: 4px; }
|
|
5731
|
+
.component-paginator .component-paginator-right-arrow svg {
|
|
5732
|
+
max-height: 16px; }
|
|
5733
|
+
|
|
5734
|
+
:export {
|
|
5735
|
+
widthXs: 575.98px;
|
|
5736
|
+
widthSm: 767.98px;
|
|
5737
|
+
widthMd: 991.98px;
|
|
5738
|
+
widthLg: 1199.98px; }
|
|
5739
|
+
|
|
5740
|
+
:export {
|
|
5741
|
+
white: #fefefe;
|
|
5742
|
+
darkenWhite: #efefef;
|
|
5743
|
+
black: #121212;
|
|
5744
|
+
transparent: rgba(0, 0, 0, 0);
|
|
5745
|
+
primary: #3fa110;
|
|
5746
|
+
primaryDark: #33820d;
|
|
5747
|
+
primaryLight: #d7e6c8;
|
|
5748
|
+
secondaryDarker: #323c32;
|
|
5749
|
+
secondaryDark: #5a645a;
|
|
5750
|
+
blueDarker: #2b517b;
|
|
5751
|
+
secondary: #828a82;
|
|
5752
|
+
secondaryLight: #cdd3cd;
|
|
5753
|
+
secondaryLighter: #f8f9f7;
|
|
5754
|
+
danger: #e60000;
|
|
5755
|
+
dangerLight: #ffb4b4;
|
|
5756
|
+
dangerDark: #ab4745;
|
|
5757
|
+
warning: #ffcd00;
|
|
5758
|
+
warningLight: #ffeb98;
|
|
5759
|
+
warningDark: #765f00; }
|
|
5760
|
+
|
|
5747
5761
|
.component-video-player {
|
|
5748
5762
|
display: flex;
|
|
5749
5763
|
width: 100%;
|
|
@@ -5889,7 +5903,7 @@ h5 {
|
|
|
5889
5903
|
justify-content: center;
|
|
5890
5904
|
align-items: center;
|
|
5891
5905
|
border-radius: 100px;
|
|
5892
|
-
transition: background-color 0.3s ease; }
|
|
5906
|
+
transition: background-color 0.3s ease, border-color 0.3s ease; }
|
|
5893
5907
|
.component-radio-button:not(:disabled) {
|
|
5894
5908
|
cursor: pointer; }
|
|
5895
5909
|
.component-radio-button:focus {
|
|
@@ -5898,31 +5912,39 @@ h5 {
|
|
|
5898
5912
|
.component-radio-button.new:disabled {
|
|
5899
5913
|
opacity: 0.6; }
|
|
5900
5914
|
|
|
5901
|
-
.component-radio-button.new
|
|
5915
|
+
.component-radio-button.new[data-checked='false'] {
|
|
5902
5916
|
background-color: #c4c4c4; }
|
|
5917
|
+
.component-radio-button.new[data-checked='false'][data-error='true'] {
|
|
5918
|
+
background-color: #ffb4b4; }
|
|
5903
5919
|
|
|
5904
|
-
.component-radio-button.new
|
|
5920
|
+
.component-radio-button.new[data-checked='true'] {
|
|
5905
5921
|
background-color: #3fa110; }
|
|
5922
|
+
.component-radio-button.new[data-checked='true'][data-error='true'] {
|
|
5923
|
+
background-color: #e60000; }
|
|
5906
5924
|
|
|
5907
5925
|
.component-radio-button.classic {
|
|
5908
|
-
border:
|
|
5926
|
+
border: 1px solid #3fa110;
|
|
5909
5927
|
background-color: rgba(0, 0, 0, 0); }
|
|
5910
5928
|
.component-radio-button.classic::after {
|
|
5911
5929
|
content: '';
|
|
5912
|
-
width:
|
|
5913
|
-
height:
|
|
5930
|
+
width: 12px;
|
|
5931
|
+
height: 12px;
|
|
5914
5932
|
background-color: rgba(0, 0, 0, 0);
|
|
5915
5933
|
border-radius: 200px;
|
|
5916
|
-
transition: background-color 0.3s ease,
|
|
5934
|
+
transition: background-color 0.3s ease, border-color 0.3s ease; }
|
|
5935
|
+
.component-radio-button.classic[data-error='true'] {
|
|
5936
|
+
border-color: #e60000; }
|
|
5937
|
+
.component-radio-button.classic[data-error='true'][data-checked='true']::after {
|
|
5938
|
+
background-color: #e60000; }
|
|
5917
5939
|
.component-radio-button.classic:disabled {
|
|
5918
5940
|
border-color: #c4c4c4 !important; }
|
|
5919
|
-
.component-radio-button.classic:disabled
|
|
5941
|
+
.component-radio-button.classic:disabled[data-checked='false'] {
|
|
5920
5942
|
background-color: rgba(0, 0, 0, 0); }
|
|
5921
|
-
.component-radio-button.classic:disabled
|
|
5943
|
+
.component-radio-button.classic:disabled[data-checked='true']::after {
|
|
5922
5944
|
background-color: #c4c4c4; }
|
|
5923
|
-
.component-radio-button.classic
|
|
5945
|
+
.component-radio-button.classic[data-checked='false'] {
|
|
5924
5946
|
background-color: rgba(0, 0, 0, 0); }
|
|
5925
|
-
.component-radio-button.classic
|
|
5947
|
+
.component-radio-button.classic[data-checked='true']::after {
|
|
5926
5948
|
background-color: #3fa110; }
|
|
5927
5949
|
|
|
5928
5950
|
:export {
|
|
@@ -6387,43 +6409,6 @@ h5 {
|
|
|
6387
6409
|
warningLight: #ffeb98;
|
|
6388
6410
|
warningDark: #765f00; }
|
|
6389
6411
|
|
|
6390
|
-
.component-table-actions-column {
|
|
6391
|
-
display: flex;
|
|
6392
|
-
align-items: center;
|
|
6393
|
-
justify-content: flex-end; }
|
|
6394
|
-
.component-table-actions-column > *:not(:first-child) {
|
|
6395
|
-
margin-left: 16px; }
|
|
6396
|
-
.component-table-actions-column svg {
|
|
6397
|
-
width: 20px;
|
|
6398
|
-
height: 20px; }
|
|
6399
|
-
|
|
6400
|
-
:export {
|
|
6401
|
-
widthXs: 575.98px;
|
|
6402
|
-
widthSm: 767.98px;
|
|
6403
|
-
widthMd: 991.98px;
|
|
6404
|
-
widthLg: 1199.98px; }
|
|
6405
|
-
|
|
6406
|
-
:export {
|
|
6407
|
-
white: #fefefe;
|
|
6408
|
-
darkenWhite: #efefef;
|
|
6409
|
-
black: #121212;
|
|
6410
|
-
transparent: rgba(0, 0, 0, 0);
|
|
6411
|
-
primary: #3fa110;
|
|
6412
|
-
primaryDark: #33820d;
|
|
6413
|
-
primaryLight: #d7e6c8;
|
|
6414
|
-
secondaryDarker: #323c32;
|
|
6415
|
-
secondaryDark: #5a645a;
|
|
6416
|
-
blueDarker: #2b517b;
|
|
6417
|
-
secondary: #828a82;
|
|
6418
|
-
secondaryLight: #cdd3cd;
|
|
6419
|
-
secondaryLighter: #f8f9f7;
|
|
6420
|
-
danger: #e60000;
|
|
6421
|
-
dangerLight: #ffb4b4;
|
|
6422
|
-
dangerDark: #ab4745;
|
|
6423
|
-
warning: #ffcd00;
|
|
6424
|
-
warningLight: #ffeb98;
|
|
6425
|
-
warningDark: #765f00; }
|
|
6426
|
-
|
|
6427
6412
|
table.component-table {
|
|
6428
6413
|
font-family: "Nunito", sans-serif;
|
|
6429
6414
|
width: 100%;
|
|
@@ -6578,6 +6563,43 @@ table.component-table {
|
|
|
6578
6563
|
warningLight: #ffeb98;
|
|
6579
6564
|
warningDark: #765f00; }
|
|
6580
6565
|
|
|
6566
|
+
.component-table-actions-column {
|
|
6567
|
+
display: flex;
|
|
6568
|
+
align-items: center;
|
|
6569
|
+
justify-content: flex-end; }
|
|
6570
|
+
.component-table-actions-column > *:not(:first-child) {
|
|
6571
|
+
margin-left: 16px; }
|
|
6572
|
+
.component-table-actions-column svg {
|
|
6573
|
+
width: 20px;
|
|
6574
|
+
height: 20px; }
|
|
6575
|
+
|
|
6576
|
+
:export {
|
|
6577
|
+
widthXs: 575.98px;
|
|
6578
|
+
widthSm: 767.98px;
|
|
6579
|
+
widthMd: 991.98px;
|
|
6580
|
+
widthLg: 1199.98px; }
|
|
6581
|
+
|
|
6582
|
+
:export {
|
|
6583
|
+
white: #fefefe;
|
|
6584
|
+
darkenWhite: #efefef;
|
|
6585
|
+
black: #121212;
|
|
6586
|
+
transparent: rgba(0, 0, 0, 0);
|
|
6587
|
+
primary: #3fa110;
|
|
6588
|
+
primaryDark: #33820d;
|
|
6589
|
+
primaryLight: #d7e6c8;
|
|
6590
|
+
secondaryDarker: #323c32;
|
|
6591
|
+
secondaryDark: #5a645a;
|
|
6592
|
+
blueDarker: #2b517b;
|
|
6593
|
+
secondary: #828a82;
|
|
6594
|
+
secondaryLight: #cdd3cd;
|
|
6595
|
+
secondaryLighter: #f8f9f7;
|
|
6596
|
+
danger: #e60000;
|
|
6597
|
+
dangerLight: #ffb4b4;
|
|
6598
|
+
dangerDark: #ab4745;
|
|
6599
|
+
warning: #ffcd00;
|
|
6600
|
+
warningLight: #ffeb98;
|
|
6601
|
+
warningDark: #765f00; }
|
|
6602
|
+
|
|
6581
6603
|
.component-table-actions {
|
|
6582
6604
|
display: flex;
|
|
6583
6605
|
justify-content: flex-start;
|
|
@@ -8760,3 +8782,172 @@ nav.component-tabs {
|
|
|
8760
8782
|
white-space: nowrap; }
|
|
8761
8783
|
.component-table-left-checkbox-with-label.w-100 .component-table-left-checkbox-with-label-label-wrapper {
|
|
8762
8784
|
width: 100%; }
|
|
8785
|
+
|
|
8786
|
+
:export {
|
|
8787
|
+
white: #fefefe;
|
|
8788
|
+
darkenWhite: #efefef;
|
|
8789
|
+
black: #121212;
|
|
8790
|
+
transparent: rgba(0, 0, 0, 0);
|
|
8791
|
+
primary: #3fa110;
|
|
8792
|
+
primaryDark: #33820d;
|
|
8793
|
+
primaryLight: #d7e6c8;
|
|
8794
|
+
secondaryDarker: #323c32;
|
|
8795
|
+
secondaryDark: #5a645a;
|
|
8796
|
+
blueDarker: #2b517b;
|
|
8797
|
+
secondary: #828a82;
|
|
8798
|
+
secondaryLight: #cdd3cd;
|
|
8799
|
+
secondaryLighter: #f8f9f7;
|
|
8800
|
+
danger: #e60000;
|
|
8801
|
+
dangerLight: #ffb4b4;
|
|
8802
|
+
dangerDark: #ab4745;
|
|
8803
|
+
warning: #ffcd00;
|
|
8804
|
+
warningLight: #ffeb98;
|
|
8805
|
+
warningDark: #765f00; }
|
|
8806
|
+
|
|
8807
|
+
:export {
|
|
8808
|
+
widthXs: 575.98px;
|
|
8809
|
+
widthSm: 767.98px;
|
|
8810
|
+
widthMd: 991.98px;
|
|
8811
|
+
widthLg: 1199.98px; }
|
|
8812
|
+
|
|
8813
|
+
.tooltip {
|
|
8814
|
+
z-index: 989;
|
|
8815
|
+
display: flex;
|
|
8816
|
+
align-items: center;
|
|
8817
|
+
justify-content: center;
|
|
8818
|
+
text-align: center;
|
|
8819
|
+
padding: 4px 32px;
|
|
8820
|
+
font-weight: 300;
|
|
8821
|
+
background-color: #323c32;
|
|
8822
|
+
color: #fefefe;
|
|
8823
|
+
font-family: "Nunito", sans-serif;
|
|
8824
|
+
font-size: 16px;
|
|
8825
|
+
line-height: 24px;
|
|
8826
|
+
border-radius: 8px; }
|
|
8827
|
+
.tooltip .label {
|
|
8828
|
+
max-width: 300px; }
|
|
8829
|
+
|
|
8830
|
+
.reference {
|
|
8831
|
+
display: flex;
|
|
8832
|
+
align-items: center;
|
|
8833
|
+
width: -moz-fit-content;
|
|
8834
|
+
width: fit-content; }
|
|
8835
|
+
|
|
8836
|
+
:export {
|
|
8837
|
+
white: #fefefe;
|
|
8838
|
+
darkenWhite: #efefef;
|
|
8839
|
+
black: #121212;
|
|
8840
|
+
transparent: rgba(0, 0, 0, 0);
|
|
8841
|
+
primary: #3fa110;
|
|
8842
|
+
primaryDark: #33820d;
|
|
8843
|
+
primaryLight: #d7e6c8;
|
|
8844
|
+
secondaryDarker: #323c32;
|
|
8845
|
+
secondaryDark: #5a645a;
|
|
8846
|
+
blueDarker: #2b517b;
|
|
8847
|
+
secondary: #828a82;
|
|
8848
|
+
secondaryLight: #cdd3cd;
|
|
8849
|
+
secondaryLighter: #f8f9f7;
|
|
8850
|
+
danger: #e60000;
|
|
8851
|
+
dangerLight: #ffb4b4;
|
|
8852
|
+
dangerDark: #ab4745;
|
|
8853
|
+
warning: #ffcd00;
|
|
8854
|
+
warningLight: #ffeb98;
|
|
8855
|
+
warningDark: #765f00; }
|
|
8856
|
+
|
|
8857
|
+
:export {
|
|
8858
|
+
widthXs: 575.98px;
|
|
8859
|
+
widthSm: 767.98px;
|
|
8860
|
+
widthMd: 991.98px;
|
|
8861
|
+
widthLg: 1199.98px; }
|
|
8862
|
+
|
|
8863
|
+
.tp {
|
|
8864
|
+
margin: 0;
|
|
8865
|
+
padding: 0;
|
|
8866
|
+
font-weight: 300;
|
|
8867
|
+
display: block;
|
|
8868
|
+
text-align: start; }
|
|
8869
|
+
.tp.focus {
|
|
8870
|
+
font-weight: 500; }
|
|
8871
|
+
.tp.primary {
|
|
8872
|
+
color: #3fa110; }
|
|
8873
|
+
.tp.primary-dark {
|
|
8874
|
+
color: #33820d; }
|
|
8875
|
+
.tp.secondary {
|
|
8876
|
+
color: #fefefe; }
|
|
8877
|
+
.tp.default {
|
|
8878
|
+
color: #323c32; }
|
|
8879
|
+
|
|
8880
|
+
.caption.tp {
|
|
8881
|
+
font-family: "Nunito", sans-serif;
|
|
8882
|
+
font-size: 14px;
|
|
8883
|
+
line-height: 24px; }
|
|
8884
|
+
.caption.tp.focus {
|
|
8885
|
+
font-weight: 700; }
|
|
8886
|
+
|
|
8887
|
+
.small.tp {
|
|
8888
|
+
font-family: "Nunito", sans-serif;
|
|
8889
|
+
font-size: 12px;
|
|
8890
|
+
line-height: 16px; }
|
|
8891
|
+
.small.tp.focus {
|
|
8892
|
+
font-weight: 700; }
|
|
8893
|
+
|
|
8894
|
+
p.tp {
|
|
8895
|
+
font-family: "Nunito", sans-serif;
|
|
8896
|
+
font-size: 16px;
|
|
8897
|
+
line-height: 24px; }
|
|
8898
|
+
p.tp.focus {
|
|
8899
|
+
font-weight: 700; }
|
|
8900
|
+
|
|
8901
|
+
h1.tp {
|
|
8902
|
+
font-family: "Exo 2", sans-serif;
|
|
8903
|
+
font-size: 40px;
|
|
8904
|
+
line-height: 48px; }
|
|
8905
|
+
@media screen and (max-width: 767.98px) {
|
|
8906
|
+
h1.tp {
|
|
8907
|
+
font-size: 36px;
|
|
8908
|
+
line-height: 44px; } }
|
|
8909
|
+
|
|
8910
|
+
h2.tp {
|
|
8911
|
+
font-family: "Exo 2", sans-serif;
|
|
8912
|
+
font-size: 32px;
|
|
8913
|
+
line-height: 40px; }
|
|
8914
|
+
@media screen and (max-width: 767.98px) {
|
|
8915
|
+
h2.tp {
|
|
8916
|
+
font-size: 28px;
|
|
8917
|
+
line-height: 40px; } }
|
|
8918
|
+
|
|
8919
|
+
h3.tp {
|
|
8920
|
+
font-family: "Exo 2", sans-serif;
|
|
8921
|
+
font-size: 24px;
|
|
8922
|
+
line-height: 32px; }
|
|
8923
|
+
@media screen and (max-width: 767.98px) {
|
|
8924
|
+
h3.tp {
|
|
8925
|
+
font-size: 20px;
|
|
8926
|
+
line-height: 24px; } }
|
|
8927
|
+
|
|
8928
|
+
h4.tp {
|
|
8929
|
+
font-family: "Exo 2", sans-serif;
|
|
8930
|
+
font-size: 20px;
|
|
8931
|
+
line-height: 24px; }
|
|
8932
|
+
@media screen and (max-width: 767.98px) {
|
|
8933
|
+
h4.tp {
|
|
8934
|
+
font-size: 16px;
|
|
8935
|
+
line-height: 24px; } }
|
|
8936
|
+
|
|
8937
|
+
h5.tp {
|
|
8938
|
+
font-family: "Exo 2", sans-serif;
|
|
8939
|
+
font-size: 16px;
|
|
8940
|
+
line-height: 24px; }
|
|
8941
|
+
@media screen and (max-width: 767.98px) {
|
|
8942
|
+
h5.tp {
|
|
8943
|
+
font-size: 14px;
|
|
8944
|
+
line-height: 20px; } }
|
|
8945
|
+
|
|
8946
|
+
h6.tp {
|
|
8947
|
+
font-family: "Exo 2", sans-serif;
|
|
8948
|
+
font-size: 14px;
|
|
8949
|
+
line-height: 16px; }
|
|
8950
|
+
@media screen and (max-width: 767.98px) {
|
|
8951
|
+
h6.tp {
|
|
8952
|
+
font-size: 14px;
|
|
8953
|
+
line-height: 16px; } }
|