@egovernments/digit-ui-components-css 0.0.2-beta.43 → 0.0.2-beta.45
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/index.css +126 -63
- package/dist/index.min.css +3 -3
- package/package.json +4 -7
- package/src/digitv2/components/cardV2.scss +1 -1
- package/src/digitv2/components/{uploaderV2.scss → fileUploadV2.scss} +19 -6
- package/src/digitv2/components/formCardV2.scss +2 -0
- package/src/digitv2/components/headerV2.scss +426 -0
- package/src/digitv2/components/multiSelectDropdownV2.scss +1 -0
- package/src/digitv2/components/radiobtnV2.scss +4 -0
- package/src/digitv2/components/selectDropdownV2.scss +3 -3
- package/src/digitv2/components/{selectionCardV2.scss → selectionTagV2.scss} +29 -6
- package/src/digitv2/components/{slideOverMenuV2.scss → sidePanelV2.scss} +20 -0
- package/src/digitv2/components/{sidebarV2.scss → sidenavV2.scss} +8 -0
- package/src/digitv2/components/summaryCardFieldPairV2.scss +83 -0
- package/src/digitv2/components/{viewCardV2.scss → summaryCardV2.scss} +1 -1
- package/src/digitv2/components/textInputV2.scss +2 -0
- package/src/digitv2/components/timelineV2.scss +20 -0
- package/src/digitv2/components/treeSelectV2.scss +1 -1
- package/src/digitv2/index.scss +16 -10
- package/src/digitv2/components/topbarV2.scss +0 -426
- package/src/digitv2/components/viewCardFieldPairV2.scss +0 -83
- /package/src/digitv2/components/{infoCardV2.scss → alertCardV2.scss} +0 -0
- /package/src/digitv2/components/{actionbarV2.scss → footerV2.scss} +0 -0
- /package/src/digitv2/components/{mobilesidebarV2.scss → hamburgerV2.scss} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egovernments/digit-ui-components-css",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.45",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.css",
|
|
6
6
|
"author": "Jagankumar <jagan.kumar@egovernments.org>",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"start": "gulp build",
|
|
15
|
-
"build": "NODE_ENV=production gulp build",
|
|
15
|
+
"build": "cross-env NODE_ENV=production gulp build",
|
|
16
16
|
"build:prod": "NODE_ENV=production gulp build",
|
|
17
17
|
"prepublish": "yarn build:prod",
|
|
18
18
|
"publish:css-develop": "npm publish --tag core-v0.1",
|
|
@@ -20,13 +20,11 @@
|
|
|
20
20
|
"deploy": "gulp && cp -R svg example && cp -R img example && gh-pages -d example"
|
|
21
21
|
},
|
|
22
22
|
"browserslist": [
|
|
23
|
-
"> 3%"
|
|
23
|
+
"> 3%",
|
|
24
24
|
"last 2 versions"
|
|
25
25
|
],
|
|
26
26
|
"style": "./dist/index.css",
|
|
27
|
-
"dependencies": {
|
|
28
|
-
|
|
29
|
-
},
|
|
27
|
+
"dependencies": {},
|
|
30
28
|
"devDependencies": {
|
|
31
29
|
"node-sass": "^4.14.1",
|
|
32
30
|
"normalize.css": "^8.0.1",
|
|
@@ -67,4 +65,3 @@
|
|
|
67
65
|
"digit-ui-components"
|
|
68
66
|
]
|
|
69
67
|
}
|
|
70
|
-
|
|
@@ -20,8 +20,14 @@
|
|
|
20
20
|
gap: theme(digitv2.spacers.spacer2) theme(digitv2.spacers.spacer0);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
.upload-options-svg-wrap{
|
|
24
|
+
width: theme(digitv2.spacers.spacer10);
|
|
25
|
+
height: theme(digitv2.spacers.spacer10);
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
|
|
23
29
|
.upload-options-label {
|
|
24
|
-
@extend .typography.
|
|
30
|
+
@extend .typography.button.large;
|
|
25
31
|
@apply cursor-pointer;
|
|
26
32
|
color: theme(digitv2.lightTheme.primary-1);
|
|
27
33
|
}
|
|
@@ -108,7 +114,7 @@
|
|
|
108
114
|
outline: none !important;
|
|
109
115
|
}
|
|
110
116
|
|
|
111
|
-
.digit-uploader-content-
|
|
117
|
+
.digit-uploader-content-uploadWidget {
|
|
112
118
|
@apply flex flex-col w-full items-center justify-center max-w-full;
|
|
113
119
|
gap: theme(digitv2.spacers.spacer4);
|
|
114
120
|
border: 0.063rem solid theme(digitv2.lightTheme.generic-divider);
|
|
@@ -164,13 +170,20 @@
|
|
|
164
170
|
}
|
|
165
171
|
}
|
|
166
172
|
|
|
173
|
+
.drag-drop-link{
|
|
174
|
+
@extend .typography.link-S;
|
|
175
|
+
margin-left: theme(digitv2.spacers.spacer1);
|
|
176
|
+
color: theme(digitv2.lightTheme.primary-1);
|
|
177
|
+
cursor: pointer;
|
|
178
|
+
}
|
|
179
|
+
|
|
167
180
|
&.error {
|
|
168
181
|
border-style: dashed !important;
|
|
169
182
|
border: 0.094rem solid theme(digitv2.lightTheme.alert-error);
|
|
170
183
|
}
|
|
171
184
|
}
|
|
172
185
|
|
|
173
|
-
.digit-
|
|
186
|
+
.digit-uploadWidget-label {
|
|
174
187
|
@extend .typography.body-s;
|
|
175
188
|
font-family: theme(digitv2.fontFamily.sans);
|
|
176
189
|
font-style: theme(digitv2.fontStyle.normal);
|
|
@@ -471,7 +484,7 @@
|
|
|
471
484
|
}
|
|
472
485
|
}
|
|
473
486
|
|
|
474
|
-
.digit-
|
|
487
|
+
.digit-uploadWidget-close-icon {
|
|
475
488
|
@apply absolute top-0 right-0 w-6 h-6 items-center cursor-pointer;
|
|
476
489
|
background: theme(digitv2.lightTheme.generic-background);
|
|
477
490
|
border: 0.063rem solid theme(digitv2.lightTheme.generic-divider);
|
|
@@ -488,7 +501,7 @@
|
|
|
488
501
|
&.error {
|
|
489
502
|
border: 0.063rem solid theme(digitv2.lightTheme.alert-error);
|
|
490
503
|
|
|
491
|
-
.digit-
|
|
504
|
+
.digit-uploadWidget-close-icon {
|
|
492
505
|
background: theme(digitv2.lightTheme.alert-error);
|
|
493
506
|
border: 0.063rem solid theme(digitv2.lightTheme.alert-error);
|
|
494
507
|
border-top: none;
|
|
@@ -505,7 +518,7 @@
|
|
|
505
518
|
}
|
|
506
519
|
}
|
|
507
520
|
|
|
508
|
-
.
|
|
521
|
+
.uploadWidget-error-card {
|
|
509
522
|
@apply w-full max-w-full;
|
|
510
523
|
margin: theme(digitv2.spacers.spacer0);
|
|
511
524
|
}
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
.topbar {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
width: 100%;
|
|
5
|
+
padding: 0.625rem 1.5rem;
|
|
6
|
+
background: white;
|
|
7
|
+
box-shadow: rgba(0, 0, 0, 0.24) 0 0.063rem 0.25rem;
|
|
8
|
+
z-index: 9999999;
|
|
9
|
+
@apply flex items-center;
|
|
10
|
+
|
|
11
|
+
img {
|
|
12
|
+
display: inline;
|
|
13
|
+
|
|
14
|
+
&.city {
|
|
15
|
+
margin-right: 0.5rem;
|
|
16
|
+
height: 3rem;
|
|
17
|
+
width: 3rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&.state {
|
|
21
|
+
height: 1.25rem;
|
|
22
|
+
max-height: 1.25rem;
|
|
23
|
+
width: auto;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ulb {
|
|
28
|
+
font-weight: bold;
|
|
29
|
+
display: inline-block;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.right {
|
|
33
|
+
float: right;
|
|
34
|
+
margin-top: 0.75rem;
|
|
35
|
+
position: relative;
|
|
36
|
+
|
|
37
|
+
svg {
|
|
38
|
+
display: inline;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.user-img-txt {
|
|
42
|
+
background: theme(colors.primary.main);
|
|
43
|
+
padding: 0.625rem 0.938rem;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
color: white;
|
|
46
|
+
font-weight: 700;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.left {
|
|
51
|
+
float: left;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.w-80 {
|
|
55
|
+
width: 70%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.width-20 {
|
|
59
|
+
width: 30%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.margin-top-6 {
|
|
63
|
+
margin-top: 0.375rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.margin-right-30 {
|
|
67
|
+
margin-right: 1.875rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.margin-top-10 {
|
|
71
|
+
margin-top: 0.625rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.icon {
|
|
75
|
+
display: block;
|
|
76
|
+
color: rgb(117, 117, 117);
|
|
77
|
+
fill: rgb(117, 117, 117);
|
|
78
|
+
height: 1.313rem;
|
|
79
|
+
width: 1.313rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.column-gap-15 {
|
|
83
|
+
column-gap: 0.938rem;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.column-gap-5 {
|
|
87
|
+
column-gap: 0.313rem;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.select-wrap,
|
|
91
|
+
.employee-select-wrap {
|
|
92
|
+
margin-bottom: 0rem;
|
|
93
|
+
|
|
94
|
+
.profile-dropdown--item {
|
|
95
|
+
span {
|
|
96
|
+
white-space: pre;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.digit-employee-select-wrap {
|
|
102
|
+
margin-bottom: 0rem;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.digit-topbar-container {
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
justify-content: space-between;
|
|
109
|
+
width: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
@media screen and (min-width: 40.063rem) {
|
|
113
|
+
.digit-hamburger-class {
|
|
114
|
+
display: none !important;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@media screen and (max-width: 40rem) {
|
|
119
|
+
|
|
120
|
+
.ulb {
|
|
121
|
+
font-size: 0.875rem;
|
|
122
|
+
display: inline-block;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.flex-right {
|
|
126
|
+
display: none;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.digit-employee-select-wrap {
|
|
130
|
+
right: 0;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.cp {
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
|
|
138
|
+
.hamburger {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
@media (max-width: 48.75rem) {
|
|
143
|
+
.hamburger {
|
|
144
|
+
display: none;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.citizen {
|
|
150
|
+
.right {
|
|
151
|
+
margin-top: 0.313rem;
|
|
152
|
+
margin-bottom: 0.313rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.topbar-select-wrap {
|
|
156
|
+
margin-bottom: 0;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.flex-between {
|
|
160
|
+
@apply flex items-center justify-between;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.profile-dropdown--item {
|
|
165
|
+
display: flex;
|
|
166
|
+
flex-direction: row;
|
|
167
|
+
padding: 0.625rem;
|
|
168
|
+
column-gap: 0.625rem;
|
|
169
|
+
color: theme(colors.text.secondary);
|
|
170
|
+
|
|
171
|
+
&:hover {
|
|
172
|
+
background: theme(colors.grey.mid);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.flex-right {
|
|
177
|
+
@apply flex items-center justify-end;
|
|
178
|
+
min-width: 5.313rem;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
video::-webkit-media-controls-panel {
|
|
182
|
+
top: 55%;
|
|
183
|
+
position: absolute;
|
|
184
|
+
width: 100%;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.topbarOptionsClassName {
|
|
188
|
+
right: -3rem !important
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.digit-topbar {
|
|
192
|
+
@apply w-full max-w-full fixed items-center;
|
|
193
|
+
top: 0;
|
|
194
|
+
left: 0;
|
|
195
|
+
z-index: 9999999;
|
|
196
|
+
display: flex;
|
|
197
|
+
background-color: theme(digitv2.lightTheme.paper-primary);
|
|
198
|
+
height: 4.5rem;
|
|
199
|
+
padding: theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer10) theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer10);
|
|
200
|
+
|
|
201
|
+
.margin-top-10 {
|
|
202
|
+
margin-top: 0.625rem;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.digit-dropdown-select-wrap ,
|
|
206
|
+
.digit-dropdown-employee-select-wrap {
|
|
207
|
+
margin-bottom: 0rem;
|
|
208
|
+
|
|
209
|
+
.digit-dropdown-item {
|
|
210
|
+
span {
|
|
211
|
+
white-space: pre;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.digit-employee-select-wrap {
|
|
217
|
+
margin-bottom: 0rem;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
.digit-dropdown-item {
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: row;
|
|
224
|
+
padding: theme(digitv2.spacers.spacer3);
|
|
225
|
+
column-gap: 0.625rem;
|
|
226
|
+
color: theme(colors.text.secondary);
|
|
227
|
+
|
|
228
|
+
&:hover {
|
|
229
|
+
background: theme(colors.grey.mid);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@media (min-width: 48rem) {
|
|
234
|
+
justify-content: space-between;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
@media (min-width: 30.063rem) and (max-width: 47.938rem) {
|
|
238
|
+
padding: theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer6) theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer6);
|
|
239
|
+
gap: theme(digitv2.spacers.spacer4);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
@media (max-width: 30rem) {
|
|
243
|
+
height: 3.5rem;
|
|
244
|
+
padding: theme(digitv2.spacers.spacer4);
|
|
245
|
+
gap: theme(digitv2.spacers.spacer4);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
&.light {
|
|
249
|
+
box-shadow: theme(digitv2.spacers.spacer0) 0.063rem 0.125rem theme(digitv2.spacers.spacer0) #00000029;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.digit-logo-ulb-wrapper {
|
|
253
|
+
display: flex !important;
|
|
254
|
+
gap: theme(digitv2.spacers.spacer4);
|
|
255
|
+
align-items: center !important;
|
|
256
|
+
max-width: calc(50%-(theme(digitv2.spacers.spacer6)));
|
|
257
|
+
|
|
258
|
+
@media (min-width: 48rem) {
|
|
259
|
+
height: theme(digitv2.spacers.spacer8);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
@media (min-width: 30.063rem) and (max-width: 47.938rem) {
|
|
263
|
+
height: theme(digitv2.spacers.spacer8);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
@media (max-width: 30rem) {}
|
|
267
|
+
|
|
268
|
+
.digit-topbar-logo {
|
|
269
|
+
flex-shrink: 0;
|
|
270
|
+
height: theme(digitv2.spacers.spacer8);
|
|
271
|
+
width: 1.291rem;
|
|
272
|
+
|
|
273
|
+
&.clickable {
|
|
274
|
+
cursor: pointer;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.digit-topbar-ulb {
|
|
279
|
+
@extend .typography.heading-s;
|
|
280
|
+
font-family: theme(digitv2.fontFamily.sans);
|
|
281
|
+
font-style: theme(digitv2.fontStyle.normal);
|
|
282
|
+
font-weight: theme(digitv2.fontWeight.bold);
|
|
283
|
+
line-height: theme(digitv2.lineHeight.lineheight1);
|
|
284
|
+
|
|
285
|
+
@media (max-aspect-ratio: 9/16) {
|
|
286
|
+
/* Media query for mobile */
|
|
287
|
+
font-size: theme(digitv2.fontSize.heading-s.mobile);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
291
|
+
/* Media query for tablets */
|
|
292
|
+
font-size: theme(digitv2.fontSize.heading-s.tablet);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
@media (min-aspect-ratio: 3/4) {
|
|
296
|
+
/* Media query for desktop */
|
|
297
|
+
font-size: theme(digitv2.fontSize.heading-s.desktop);
|
|
298
|
+
}
|
|
299
|
+
@apply whitespace-no-wrap overflow-hidden;
|
|
300
|
+
color: theme(digitv2.lightTheme.text-primary);
|
|
301
|
+
text-overflow: ellipsis;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&.dark {
|
|
306
|
+
background-color: theme(digitv2.lightTheme.primary-2);
|
|
307
|
+
|
|
308
|
+
.digit-logo-ulb-wrapper {
|
|
309
|
+
.digit-topbar-ulb {
|
|
310
|
+
color: theme(digitv2.lightTheme.paper-primary);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.digit-header-action-fields {
|
|
315
|
+
.individual-action-field {
|
|
316
|
+
color: theme(digitv2.lightTheme.paper-primary);
|
|
317
|
+
|
|
318
|
+
.digit-dropdown-employee-select-wrap,
|
|
319
|
+
.digit-dropdown-select-wrap{
|
|
320
|
+
background:none;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.digit-header-action-fields {
|
|
327
|
+
@apply items-center overflow-hidden;
|
|
328
|
+
display: flex !important;
|
|
329
|
+
height: theme(digitv2.spacers.spacer8);
|
|
330
|
+
max-width: 50%;
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
@media (min-width: 48rem) {
|
|
334
|
+
gap: theme(digitv2.spacers.spacer8);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
@media (min-width: 30.063rem) and (max-width: 47.938rem) {
|
|
338
|
+
gap: theme(digitv2.spacers.spacer4);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.digit-header-img {
|
|
342
|
+
&.clickable {
|
|
343
|
+
cursor: pointer;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.digit-topbar-hamburger {
|
|
349
|
+
width: theme(digitv2.spacers.spacer6);
|
|
350
|
+
height: theme(digitv2.spacers.spacer6);
|
|
351
|
+
|
|
352
|
+
@media (min-width: 30.063rem) and (max-width: 47.938rem) {
|
|
353
|
+
width: theme(digitv2.spacers.spacer8);
|
|
354
|
+
height: theme(digitv2.spacers.spacer8);
|
|
355
|
+
|
|
356
|
+
svg {
|
|
357
|
+
width: theme(digitv2.spacers.spacer8);
|
|
358
|
+
height: theme(digitv2.spacers.spacer8);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
&.clickable {
|
|
363
|
+
cursor: pointer;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.digit-header-img-ulb-wrapper-mobileview {
|
|
369
|
+
display: flex;
|
|
370
|
+
align-items: center;
|
|
371
|
+
height: theme(digitv2.spacers.spacer6);
|
|
372
|
+
max-width: calc(100%-(theme(digitv2.spacers.spacer6)));
|
|
373
|
+
|
|
374
|
+
.digit-header-img {
|
|
375
|
+
margin-right: theme(digitv2.spacers.spacer2);
|
|
376
|
+
margin-bottom: 0.156rem;
|
|
377
|
+
|
|
378
|
+
&.clickable {
|
|
379
|
+
cursor: pointer;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.topbar-divider {
|
|
384
|
+
height: theme(digitv2.spacers.spacer6);
|
|
385
|
+
width: 0.063rem;
|
|
386
|
+
border: 0.063rem solid theme(digitv2.lightTheme.text-primary);
|
|
387
|
+
margin-right: 0.625rem;
|
|
388
|
+
|
|
389
|
+
&.dark {
|
|
390
|
+
border: 0.063rem solid theme(digitv2.lightTheme.paper-primary);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.digit-topbar-ulb-mobileview {
|
|
396
|
+
@apply overflow-hidden whitespace-no-wrap;
|
|
397
|
+
@extend .typography.body-s;
|
|
398
|
+
font-family: theme(digitv2.fontFamily.sans);
|
|
399
|
+
font-style: theme(digitv2.fontStyle.normal);
|
|
400
|
+
font-weight: theme(digitv2.fontWeight.regular);
|
|
401
|
+
line-height: theme(digitv2.lineHeight.lineheight2);
|
|
402
|
+
|
|
403
|
+
@media (max-aspect-ratio: 9/16) {
|
|
404
|
+
/* Media query for mobile */
|
|
405
|
+
font-size: theme(digitv2.fontSize.body-s.mobile);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
409
|
+
/* Media query for tablets */
|
|
410
|
+
font-size: theme(digitv2.fontSize.body-s.tablet);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
@media (min-aspect-ratio: 3/4) {
|
|
414
|
+
/* Media query for desktop */
|
|
415
|
+
font-size: theme(digitv2.fontSize.body-s.desktop);
|
|
416
|
+
}
|
|
417
|
+
text-overflow: ellipsis;
|
|
418
|
+
color: theme(digitv2.lightTheme.text-primary);
|
|
419
|
+
|
|
420
|
+
&.dark {
|
|
421
|
+
color: theme(digitv2.lightTheme.paper-primary);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
}
|
|
426
|
+
}
|
|
@@ -463,6 +463,7 @@
|
|
|
463
463
|
font-style: theme(digitv2.fontStyle.normal);
|
|
464
464
|
font-weight: theme(digitv2.fontWeight.regular);
|
|
465
465
|
line-height: theme(digitv2.lineHeight.lineheight2);
|
|
466
|
+
padding-left: theme(digitv2.spacers.spacer3);
|
|
466
467
|
|
|
467
468
|
@media (max-aspect-ratio: 9/16) {
|
|
468
469
|
/* Media query for mobile */
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
}
|
|
200
200
|
.digit-dropdown-item {
|
|
201
201
|
@apply flex flex-row;
|
|
202
|
-
padding:
|
|
202
|
+
padding: theme(digitv2.spacers.spacer3);
|
|
203
203
|
gap: 0.625rem;
|
|
204
204
|
min-height: 2.438rem;
|
|
205
205
|
color: theme(digitv2.lightTheme.text-primary) !important;
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
}
|
|
319
319
|
&.nestedtextdropdown {
|
|
320
320
|
min-height: 4.75rem;
|
|
321
|
-
padding: theme(digitv2.spacers.spacer2)
|
|
321
|
+
padding: theme(digitv2.spacers.spacer2) theme(digitv2.spacers.spacer3) theme(digitv2.spacers.spacer2) theme(digitv2.spacers.spacer3);
|
|
322
322
|
color: theme(digitv2.lightTheme.text-secondary) !important;
|
|
323
323
|
&:hover {
|
|
324
324
|
border: 0.063rem solid theme(digitv2.lightTheme.primary-1);
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
}
|
|
357
357
|
&.profiledropdown {
|
|
358
358
|
min-height: theme(digitv2.spacers.spacer12);
|
|
359
|
-
padding: theme(digitv2.spacers.spacer2)
|
|
359
|
+
padding: theme(digitv2.spacers.spacer2) theme(digitv2.spacers.spacer3);
|
|
360
360
|
}
|
|
361
361
|
&.profilenestedtext {
|
|
362
362
|
min-height: 4.75rem;
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
justify-content: center;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
&.hideContainer{
|
|
23
|
+
border: none;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
border-radius: theme(digitv2.spacers.spacer0);
|
|
26
|
+
}
|
|
27
|
+
|
|
22
28
|
}
|
|
23
29
|
|
|
24
30
|
.selection-card.error {
|
|
@@ -26,6 +32,7 @@
|
|
|
26
32
|
}
|
|
27
33
|
|
|
28
34
|
.option {
|
|
35
|
+
@extend .typography.body-s;
|
|
29
36
|
display: flex;
|
|
30
37
|
align-items: center;
|
|
31
38
|
padding: theme(digitv2.spacers.spacer2) theme(digitv2.spacers.spacer4);
|
|
@@ -40,30 +47,46 @@
|
|
|
40
47
|
font-style: theme(digitv2.fontStyle.normal);
|
|
41
48
|
font-weight: theme(digitv2.fontWeight.regular);
|
|
42
49
|
line-height: theme(digitv2.lineHeight.lineheight2);
|
|
43
|
-
|
|
44
50
|
@media (max-aspect-ratio: 9/16) {
|
|
45
51
|
/* Media query for mobile */
|
|
46
|
-
font-size: theme(digitv2.fontSize.body-
|
|
52
|
+
font-size: theme(digitv2.fontSize.body-s.mobile);
|
|
47
53
|
}
|
|
48
54
|
|
|
49
55
|
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
50
56
|
/* Media query for tablets */
|
|
51
|
-
font-size: theme(digitv2.fontSize.body-
|
|
57
|
+
font-size: theme(digitv2.fontSize.body-s.tablet);
|
|
52
58
|
}
|
|
53
59
|
|
|
54
60
|
@media (min-aspect-ratio: 3/4) {
|
|
55
61
|
/* Media query for desktop */
|
|
56
|
-
font-size: theme(digitv2.fontSize.body-
|
|
62
|
+
font-size: theme(digitv2.fontSize.body-s.desktop);
|
|
57
63
|
}
|
|
58
64
|
}
|
|
59
65
|
|
|
60
66
|
.option.selected {
|
|
67
|
+
@extend .typography.heading-s;
|
|
61
68
|
background-color: theme(digitv2.lightTheme.primary-1);
|
|
62
69
|
color: theme(digitv2.lightTheme.paper-primary);
|
|
63
70
|
font-weight: theme(digitv2.fontWeight.bold);
|
|
71
|
+
line-height: theme(digitv2.lineHeight.lineheight1);
|
|
72
|
+
|
|
73
|
+
@media (max-aspect-ratio: 9/16) {
|
|
74
|
+
/* Media query for mobile */
|
|
75
|
+
font-size: theme(digitv2.fontSize.heading-s.mobile);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
79
|
+
/* Media query for tablets */
|
|
80
|
+
font-size: theme(digitv2.fontSize.heading-s.tablet);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@media (min-aspect-ratio: 3/4) {
|
|
84
|
+
/* Media query for desktop */
|
|
85
|
+
font-size: theme(digitv2.fontSize.heading-s.desktop);
|
|
86
|
+
}
|
|
64
87
|
}
|
|
65
88
|
|
|
66
|
-
.option .
|
|
89
|
+
.option .selectiontag-option-label {
|
|
67
90
|
width: 100%;
|
|
68
91
|
display: flex;
|
|
69
92
|
align-items: center;
|
|
@@ -71,7 +94,7 @@
|
|
|
71
94
|
}
|
|
72
95
|
|
|
73
96
|
|
|
74
|
-
.option .
|
|
97
|
+
.option .selectiontagicon {
|
|
75
98
|
flex-shrink: 0;
|
|
76
99
|
display: flex;
|
|
77
100
|
align-items: center;
|
|
@@ -102,8 +102,28 @@
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.slider-header {
|
|
105
|
+
@extend .typography.heading-m;
|
|
105
106
|
flex-shrink: 0;
|
|
106
107
|
padding: theme(digitv2.spacers.spacer4);
|
|
108
|
+
font-family: theme(digitv2.fontFamily.sans);
|
|
109
|
+
font-style: theme(digitv2.fontStyle.normal);
|
|
110
|
+
font-weight: theme(digitv2.fontWeight.bold);
|
|
111
|
+
line-height: theme(digitv2.lineHeight.lineheight1);
|
|
112
|
+
|
|
113
|
+
@media (max-aspect-ratio: 9/16) {
|
|
114
|
+
/* Media query for mobile */
|
|
115
|
+
font-size: theme(digitv2.fontSize.heading-m.mobile);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
119
|
+
/* Media query for tablets */
|
|
120
|
+
font-size: theme(digitv2.fontSize.heading-m.tablet);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@media (min-aspect-ratio: 3/4) {
|
|
124
|
+
/* Media query for desktop */
|
|
125
|
+
font-size: theme(digitv2.fontSize.heading-m.desktop);
|
|
126
|
+
}
|
|
107
127
|
border-bottom: 0.063rem solid #d6d5d4;
|
|
108
128
|
|
|
109
129
|
.close-icon {
|