cax-design-system 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/calendar/calendar.d.ts +2 -1
- package/esm2022/autocomplete/autocomplete.mjs +2 -2
- package/esm2022/calendar/calendar.mjs +8 -3
- package/esm2022/image/image.mjs +3 -3
- package/esm2022/logo/logo.mjs +1 -1
- package/esm2022/navigation/navigation.mjs +33 -6
- package/esm2022/overlaypanel/overlaypanel.mjs +2 -2
- package/esm2022/table/components/column-filter-form-element/column-filter-form-element.mjs +2 -2
- package/esm2022/tableconfiguration/cax-design-system-tableconfiguration.mjs +5 -0
- package/esm2022/tableconfiguration/public_api.mjs +3 -0
- package/esm2022/tableconfiguration/tableconfiguration.mjs +55 -0
- package/esm2022/tableconfiguration/tableconfiguration.module.mjs +16 -0
- package/fesm2022/cax-design-system-autocomplete.mjs +2 -2
- package/fesm2022/cax-design-system-autocomplete.mjs.map +1 -1
- package/fesm2022/cax-design-system-calendar.mjs +7 -2
- package/fesm2022/cax-design-system-calendar.mjs.map +1 -1
- package/fesm2022/cax-design-system-image.mjs +2 -2
- package/fesm2022/cax-design-system-image.mjs.map +1 -1
- package/fesm2022/cax-design-system-logo.mjs.map +1 -1
- package/fesm2022/cax-design-system-navigation.mjs +32 -5
- package/fesm2022/cax-design-system-navigation.mjs.map +1 -1
- package/fesm2022/cax-design-system-overlaypanel.mjs +2 -2
- package/fesm2022/cax-design-system-table.mjs +1 -1
- package/fesm2022/cax-design-system-table.mjs.map +1 -1
- package/fesm2022/cax-design-system-tableconfiguration.mjs +75 -0
- package/fesm2022/cax-design-system-tableconfiguration.mjs.map +1 -0
- package/image/image.d.ts +2 -2
- package/logo/logo.d.ts +1 -1
- package/navigation/navigation.d.ts +11 -1
- package/package.json +174 -168
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +44 -50
- package/resources/components/autocomplete/autocomplete.scss +4 -6
- package/resources/components/calendar/calendar.scss +19 -2
- package/resources/components/image/image.scss +4 -9
- package/resources/components/navigation/navigation.scss +16 -42
- package/resources/components/overlaypanel/overlaypanel.scss +1 -1
- package/resources/components/tableconfiguration/tableconfiguration.scss +115 -0
- package/resources/logo/dataX-dark.svg +11 -11
- package/resources/logo/dataX-icon-dark.svg +4 -5
- package/resources/logo/dataX-icon.svg +4 -5
- package/resources/logo/dataX.svg +11 -11
- package/tableconfiguration/index.d.ts +5 -0
- package/tableconfiguration/public_api.d.ts +2 -0
- package/tableconfiguration/tableconfiguration.d.ts +15 -0
- package/tableconfiguration/tableconfiguration.module.d.ts +7 -0
- package/resources/logo/usercard.png +0 -0
package/resources/cax.scss
CHANGED
|
@@ -3132,7 +3132,6 @@
|
|
|
3132
3132
|
border-bottom-right-radius: 6px;
|
|
3133
3133
|
}
|
|
3134
3134
|
|
|
3135
|
-
|
|
3136
3135
|
.cax-card {
|
|
3137
3136
|
background: var(--white-900);
|
|
3138
3137
|
color: var(--neutral-900);
|
|
@@ -3174,7 +3173,7 @@
|
|
|
3174
3173
|
padding: 0 1rem;
|
|
3175
3174
|
}
|
|
3176
3175
|
.cax-divider.cax-divider-horizontal:before {
|
|
3177
|
-
border-top: 1px
|
|
3176
|
+
border-top: 1px var(--neutral-100);
|
|
3178
3177
|
}
|
|
3179
3178
|
.cax-divider.cax-divider-horizontal .cax-divider-content {
|
|
3180
3179
|
padding: 0 0.5rem;
|
|
@@ -5412,28 +5411,23 @@
|
|
|
5412
5411
|
}
|
|
5413
5412
|
}
|
|
5414
5413
|
@layer cax {
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
}
|
|
5420
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token {
|
|
5421
|
-
border-radius: 4px;
|
|
5422
|
-
margin: 0;
|
|
5414
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link {
|
|
5415
|
+
border-radius: 6px !important;
|
|
5416
|
+
flex-direction: row-reverse;
|
|
5417
|
+
justify-content: space-between;
|
|
5423
5418
|
}
|
|
5424
|
-
.cax-
|
|
5425
|
-
|
|
5419
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link .cax-accordion-toggle-icon {
|
|
5420
|
+
transform: rotate(90deg);
|
|
5426
5421
|
}
|
|
5427
|
-
.cax-
|
|
5428
|
-
|
|
5422
|
+
.cax-accordion .cax-accordion-header.cax-highlight .cax-accordion-toggle-icon {
|
|
5423
|
+
transform: rotate(-180deg);
|
|
5429
5424
|
}
|
|
5430
|
-
.cax-
|
|
5431
|
-
|
|
5425
|
+
.cax-accordion .cax-accordion-header:not(.cax-disabled) .cax-accordion-header-link:focus-visible {
|
|
5426
|
+
outline-offset: -2px;
|
|
5432
5427
|
}
|
|
5433
|
-
.cax-
|
|
5434
|
-
|
|
5428
|
+
.cax-accordion cax-accordiontab:last-of-type .cax-accordion-tab {
|
|
5429
|
+
border-bottom: 0 none;
|
|
5435
5430
|
}
|
|
5436
|
-
|
|
5437
5431
|
.cax-card {
|
|
5438
5432
|
border-radius: 12px;
|
|
5439
5433
|
display: flex;
|
|
@@ -6706,6 +6700,8 @@ cax-calendar.ng-dirty.ng-invalid > .cax-calendar > .cax-inputtext {
|
|
|
6706
6700
|
}
|
|
6707
6701
|
.cax-datepicker .cax-yearpicker {
|
|
6708
6702
|
margin: 4px;
|
|
6703
|
+
padding-right: 12px !important;
|
|
6704
|
+
padding-left: 12px !important;
|
|
6709
6705
|
}
|
|
6710
6706
|
.cax-datepicker .cax-yearpicker .cax-yearpicker-year {
|
|
6711
6707
|
padding: 0.25rem;
|
|
@@ -7644,11 +7640,15 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7644
7640
|
|
|
7645
7641
|
.cax-nav {
|
|
7646
7642
|
background-color: var(--white-100);
|
|
7647
|
-
border-right:
|
|
7643
|
+
border-right: 1.5px solid var(--neutral-75);
|
|
7644
|
+
}
|
|
7645
|
+
|
|
7646
|
+
.cax-nav .cax-nav-header {
|
|
7647
|
+
color: var(--neutral-900);
|
|
7648
7648
|
}
|
|
7649
7649
|
|
|
7650
7650
|
.cax-nav .cax-divider.cax-divider-vertical::before {
|
|
7651
|
-
border-color: var(--neutral-
|
|
7651
|
+
border-color: var(--neutral-100);
|
|
7652
7652
|
}
|
|
7653
7653
|
|
|
7654
7654
|
.cax-nav-bottom-container {
|
|
@@ -7661,10 +7661,10 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7661
7661
|
li {
|
|
7662
7662
|
i {
|
|
7663
7663
|
font-size: 24px;
|
|
7664
|
-
color: var(--neutral-
|
|
7664
|
+
color: var(--neutral-900);
|
|
7665
7665
|
}
|
|
7666
7666
|
&:hover {
|
|
7667
|
-
background-color: var(--neutral-
|
|
7667
|
+
background-color: var(--neutral-75);
|
|
7668
7668
|
}
|
|
7669
7669
|
}
|
|
7670
7670
|
li.active {
|
|
@@ -7680,15 +7680,16 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7680
7680
|
.cax-nav-list-label {
|
|
7681
7681
|
font-size: 16px;
|
|
7682
7682
|
font-weight: 600;
|
|
7683
|
-
color: var(--neutral-
|
|
7683
|
+
color: var(--neutral-900);
|
|
7684
7684
|
margin-left: 8px;
|
|
7685
7685
|
}
|
|
7686
7686
|
|
|
7687
7687
|
.cax-nav-account-details {
|
|
7688
|
-
border: 1px solid var(--neutral-
|
|
7688
|
+
border: 1px solid var(--neutral-125);
|
|
7689
7689
|
|
|
7690
7690
|
&:hover {
|
|
7691
|
-
|
|
7691
|
+
border: 1px solid var(--neutral-200);
|
|
7692
|
+
background-color: var(--neutral-75);
|
|
7692
7693
|
}
|
|
7693
7694
|
|
|
7694
7695
|
.cax-nav-account-icon {
|
|
@@ -7701,7 +7702,7 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7701
7702
|
}
|
|
7702
7703
|
|
|
7703
7704
|
.cax-nav-account-details.active {
|
|
7704
|
-
background: var(--neutral-
|
|
7705
|
+
background: var(--neutral-50);
|
|
7705
7706
|
}
|
|
7706
7707
|
|
|
7707
7708
|
.cax-nav-user {
|
|
@@ -7709,34 +7710,29 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7709
7710
|
color: var(--neutral-900);
|
|
7710
7711
|
}
|
|
7711
7712
|
.cax-nav-user-role {
|
|
7712
|
-
color: var(--neutral-
|
|
7713
|
+
color: var(--neutral-750);
|
|
7713
7714
|
}
|
|
7714
7715
|
}
|
|
7715
7716
|
|
|
7716
7717
|
.cax-nav-copyright {
|
|
7717
|
-
color: var(--neutral-
|
|
7718
|
+
color: var(--neutral-750);
|
|
7718
7719
|
}
|
|
7719
|
-
.cax-nav-profile-options
|
|
7720
|
-
.cax-nav-organisation-list {
|
|
7720
|
+
.cax-nav-profile-options {
|
|
7721
7721
|
background-color: var(--white-100);
|
|
7722
7722
|
}
|
|
7723
7723
|
.cax-nav-logout {
|
|
7724
7724
|
color: var(--error-500);
|
|
7725
7725
|
}
|
|
7726
|
-
|
|
7727
|
-
|
|
7728
|
-
|
|
7729
|
-
|
|
7730
|
-
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
background-color: var(--neutral-300);
|
|
7734
|
-
}
|
|
7735
|
-
.cax-nav-organisation {
|
|
7736
|
-
.cax-nav-organisation-name {
|
|
7737
|
-
color: var(--neutral-900);
|
|
7726
|
+
|
|
7727
|
+
.cax-nav-overlay,
|
|
7728
|
+
.cax-nav-overlay-expand {
|
|
7729
|
+
border: 1px solid var(--neutral-125) !important;
|
|
7730
|
+
background: var(--neutral-50) !important;
|
|
7731
|
+
i {
|
|
7732
|
+
font-size: 24px;
|
|
7738
7733
|
}
|
|
7739
7734
|
}
|
|
7735
|
+
|
|
7740
7736
|
.cax-nav-backdrop {
|
|
7741
7737
|
position: fixed;
|
|
7742
7738
|
top: 0;
|
|
@@ -11054,7 +11050,7 @@ cax-dropdown.ng-dirty.ng-invalid > .cax-dropdown {
|
|
|
11054
11050
|
.cax-overlaypanel {
|
|
11055
11051
|
background: var(--white-100);
|
|
11056
11052
|
color: var(--neutral-900);
|
|
11057
|
-
border: 1px solid var(--neutral-
|
|
11053
|
+
border: 1px solid var(--neutral-100);
|
|
11058
11054
|
border-radius: 8px;
|
|
11059
11055
|
}
|
|
11060
11056
|
.cax-overlaypanel .cax-overlaypanel-content {
|
|
@@ -11122,7 +11118,6 @@ cax-dropdown.ng-dirty.ng-invalid > .cax-dropdown {
|
|
|
11122
11118
|
box-shadow: none;
|
|
11123
11119
|
}
|
|
11124
11120
|
|
|
11125
|
-
|
|
11126
11121
|
.cax-accordion .cax-accordion-header .cax-accordion-header-link {
|
|
11127
11122
|
padding: var(--space-200) 17.5px var(--space-200) 17.5px;
|
|
11128
11123
|
border: 1px solid var(--neutral-200);
|
|
@@ -11257,7 +11252,6 @@ cax-dropdown.ng-dirty.ng-invalid > .cax-dropdown {
|
|
|
11257
11252
|
0px 0.5px 0px 0px rgba(0, 0, 0, 0.06),
|
|
11258
11253
|
0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
11259
11254
|
}
|
|
11260
|
-
|
|
11261
11255
|
.cax-inputnumber {
|
|
11262
11256
|
position: relative;
|
|
11263
11257
|
display: inline-flex;
|
|
@@ -11845,19 +11839,19 @@ cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enab
|
|
|
11845
11839
|
background: var(--white-100);
|
|
11846
11840
|
}
|
|
11847
11841
|
|
|
11848
|
-
cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
|
|
11842
|
+
.cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
|
|
11849
11843
|
border-color: var(--error-600);
|
|
11850
11844
|
}
|
|
11851
11845
|
|
|
11852
|
-
|
|
11846
|
+
.cax-autocomplete .cax-inputtext {
|
|
11853
11847
|
padding-left: 1.9rem;
|
|
11854
11848
|
padding-right: 1.9rem;
|
|
11855
11849
|
}
|
|
11856
|
-
|
|
11850
|
+
.cax-autocomplete .cax-autocomplete-clear-icon {
|
|
11857
11851
|
color: var(--neutral-300);
|
|
11858
11852
|
}
|
|
11859
11853
|
|
|
11860
|
-
|
|
11854
|
+
.cax-autocomplete .cax-autocomplete-dd .cax-autocomplete-clear-icon {
|
|
11861
11855
|
color: var(--neutral-300);
|
|
11862
11856
|
right: 3.25rem;
|
|
11863
11857
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.cax-autocomplete-loader {
|
|
8
|
+
position: absolute;
|
|
8
9
|
position: absolute;
|
|
9
10
|
top: 50%;
|
|
10
11
|
margin-top: -0.5rem;
|
|
@@ -100,16 +101,13 @@
|
|
|
100
101
|
cursor: pointer;
|
|
101
102
|
right: 10px;
|
|
102
103
|
}
|
|
103
|
-
|
|
104
|
-
.cax-autocomplete-clearable {
|
|
105
|
-
position: relative;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
104
|
.cax-autocomplete-search-icon{
|
|
109
105
|
position: absolute;
|
|
110
106
|
top: 50%;
|
|
111
107
|
margin-top: -0.5rem;
|
|
112
108
|
cursor: pointer;
|
|
113
109
|
margin-left: 9px;
|
|
114
|
-
}
|
|
110
|
+
}
|
|
111
|
+
|
|
115
112
|
}
|
|
113
|
+
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
.cax-calendar .cax-inputtext {
|
|
9
9
|
flex: 1 1 auto;
|
|
10
10
|
text-overflow: ellipsis;
|
|
11
|
+
padding-left: 25px !important;
|
|
12
|
+
padding-right: 25px !important;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
.cax-calendar-w-btn .cax-inputtext {
|
|
@@ -35,11 +37,11 @@
|
|
|
35
37
|
|
|
36
38
|
/* Datepicker */
|
|
37
39
|
.cax-calendar .cax-datepicker {
|
|
38
|
-
min-width:
|
|
40
|
+
min-width: fit-content;
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
.cax-datepicker {
|
|
42
|
-
|
|
44
|
+
width: 372px;
|
|
43
45
|
position: absolute;
|
|
44
46
|
top: 0;
|
|
45
47
|
left: 0;
|
|
@@ -174,9 +176,24 @@
|
|
|
174
176
|
|
|
175
177
|
.cax-datepicker-icon {
|
|
176
178
|
pointer-events: none;
|
|
179
|
+
left: 8px;
|
|
180
|
+
color: black !important;
|
|
181
|
+
margin-top: 1px !important;
|
|
177
182
|
}
|
|
183
|
+
.cax-input-icon-left {
|
|
184
|
+
order: -1;
|
|
185
|
+
margin-left: 20px;
|
|
186
|
+
}
|
|
187
|
+
|
|
178
188
|
|
|
179
189
|
.cax-calendar-clearable {
|
|
180
190
|
position: relative;
|
|
181
191
|
}
|
|
192
|
+
|
|
193
|
+
.downarrow{
|
|
194
|
+
position: absolute;
|
|
195
|
+
right: 0.5rem;
|
|
196
|
+
top: 0.5rem;
|
|
197
|
+
|
|
198
|
+
}
|
|
182
199
|
}
|
|
@@ -70,28 +70,23 @@
|
|
|
70
70
|
|
|
71
71
|
// custom styles starts here
|
|
72
72
|
|
|
73
|
-
.cax-image-xsm {
|
|
74
|
-
height: 40px;
|
|
75
|
-
width: auto;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
73
|
.cax-image-sm {
|
|
79
|
-
height:
|
|
74
|
+
height: 32px;
|
|
80
75
|
width: auto;
|
|
81
76
|
}
|
|
82
77
|
|
|
83
78
|
.cax-image-md {
|
|
84
|
-
height:
|
|
79
|
+
height: 40px;
|
|
85
80
|
width: auto;
|
|
86
81
|
}
|
|
87
82
|
|
|
88
83
|
.cax-image-lg {
|
|
89
|
-
height:
|
|
84
|
+
height: 48px;
|
|
90
85
|
width: auto;
|
|
91
86
|
}
|
|
92
87
|
|
|
93
88
|
.cax-image-xl {
|
|
94
|
-
height:
|
|
89
|
+
height: 56px;
|
|
95
90
|
width: auto;
|
|
96
91
|
}
|
|
97
92
|
}
|
|
@@ -9,12 +9,24 @@
|
|
|
9
9
|
left: 0;
|
|
10
10
|
top: 0;
|
|
11
11
|
z-index: 1200;
|
|
12
|
+
.cax-nav-header {
|
|
13
|
+
.cax-image img {
|
|
14
|
+
max-width: 26px;
|
|
15
|
+
object-fit: cover;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
12
18
|
}
|
|
13
19
|
.cax-nav.cax-nav-expand {
|
|
14
20
|
width: 264px;
|
|
15
21
|
.cax-nav-bottom-container {
|
|
16
22
|
width: 248px;
|
|
17
23
|
}
|
|
24
|
+
.cax-nav-header {
|
|
25
|
+
.cax-image img {
|
|
26
|
+
max-width: 100px;
|
|
27
|
+
object-fit: cover;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
18
30
|
}
|
|
19
31
|
.cax-nav-header-container {
|
|
20
32
|
display: flex;
|
|
@@ -141,48 +153,6 @@
|
|
|
141
153
|
}
|
|
142
154
|
}
|
|
143
155
|
|
|
144
|
-
.cax-nav-organisation-list {
|
|
145
|
-
border-radius: 12px;
|
|
146
|
-
padding: 8px;
|
|
147
|
-
margin-bottom: 8px;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.cax-nav-organisation-container {
|
|
151
|
-
display: flex;
|
|
152
|
-
align-items: flex-start;
|
|
153
|
-
cursor: pointer;
|
|
154
|
-
padding: 12px;
|
|
155
|
-
border-radius: 8px;
|
|
156
|
-
.cax-nav-organisation-radio {
|
|
157
|
-
margin-left: auto;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.cax-nav-organisation-container:not(:last-child) {
|
|
162
|
-
margin-bottom: 8px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.cax-nav-organisation {
|
|
166
|
-
display: grid;
|
|
167
|
-
margin: 0 8px;
|
|
168
|
-
white-space: nowrap;
|
|
169
|
-
.cax-nav-organisation-name {
|
|
170
|
-
font-weight: 600;
|
|
171
|
-
font-size: 16px;
|
|
172
|
-
line-height: 24px;
|
|
173
|
-
}
|
|
174
|
-
.cax-nav-organisation-plan {
|
|
175
|
-
display: flex;
|
|
176
|
-
i {
|
|
177
|
-
font-size: 20px;
|
|
178
|
-
margin-right: 3px;
|
|
179
|
-
}
|
|
180
|
-
font-size: 14px;
|
|
181
|
-
font-weight: 500;
|
|
182
|
-
line-height: 21px;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
|
|
186
156
|
.cax-nav-overlay-expand {
|
|
187
157
|
left: 270px !important;
|
|
188
158
|
top: auto !important;
|
|
@@ -195,3 +165,7 @@
|
|
|
195
165
|
bottom: 6px;
|
|
196
166
|
}
|
|
197
167
|
}
|
|
168
|
+
|
|
169
|
+
.c-pointer {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
.table-configuration {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 24px;
|
|
5
|
+
padding: 12px;
|
|
6
|
+
|
|
7
|
+
.table-font-size {
|
|
8
|
+
.header-details {
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: space-between;
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
}
|
|
14
|
+
.font-configuration {
|
|
15
|
+
border: 1px solid var(--neutral-100);
|
|
16
|
+
padding: 16px 24px;
|
|
17
|
+
border-radius: 6px;
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
align-items: center;
|
|
21
|
+
gap: 8px;
|
|
22
|
+
.font-labels {
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: space-between;
|
|
25
|
+
align-items: center;
|
|
26
|
+
font-weight: 600;
|
|
27
|
+
width: 100%;
|
|
28
|
+
&.active {
|
|
29
|
+
color: var(--primary-color);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.slider-wrapper {
|
|
34
|
+
position: relative;
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.custom-slider {
|
|
39
|
+
-webkit-appearance: none;
|
|
40
|
+
appearance: none;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 4px;
|
|
43
|
+
background: var(--neutral-100);
|
|
44
|
+
border-radius: 3px;
|
|
45
|
+
outline: none;
|
|
46
|
+
transition: background 0.3s;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.custom-slider::-webkit-slider-thumb {
|
|
50
|
+
-webkit-appearance: none;
|
|
51
|
+
width: 16px;
|
|
52
|
+
height: 16px;
|
|
53
|
+
background: var(--white-100);
|
|
54
|
+
border: 2px solid var(--primary-color);
|
|
55
|
+
border-radius: 50%;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.range-marker {
|
|
60
|
+
position: absolute;
|
|
61
|
+
top: 5px;
|
|
62
|
+
left: 2px;
|
|
63
|
+
width: 100%;
|
|
64
|
+
display: flex;
|
|
65
|
+
z-index: -10;
|
|
66
|
+
justify-content: space-between;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.range {
|
|
70
|
+
width: 4px;
|
|
71
|
+
height: 16px;
|
|
72
|
+
background: var(--neutral-100);
|
|
73
|
+
border-radius: 4px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.range.active {
|
|
77
|
+
visibility: hidden;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.table-row-size {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: column;
|
|
85
|
+
gap: 8px;
|
|
86
|
+
.header-details {
|
|
87
|
+
font-weight: 500;
|
|
88
|
+
}
|
|
89
|
+
.row-configuration {
|
|
90
|
+
display: flex;
|
|
91
|
+
justify-content: space-between;
|
|
92
|
+
gap: 16px;
|
|
93
|
+
|
|
94
|
+
li {
|
|
95
|
+
list-style-type: none;
|
|
96
|
+
width: 95.5px;
|
|
97
|
+
display: flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
justify-content: center;
|
|
100
|
+
border: 1px solid var(--neutral-100);
|
|
101
|
+
font-size: 14px;
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
height: 53px;
|
|
104
|
+
border-radius: 6px;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
|
|
107
|
+
&.active {
|
|
108
|
+
border: 1px solid var(--primary-color);
|
|
109
|
+
color: var(--primary-color);
|
|
110
|
+
background: var(--primary-25);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|