@turquoisehealth/pit-viper 2.216.1-dev.0 → 2.217.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/_site/assets/css/pit-viper-a11y.css +45 -9
- package/_site/assets/css/pit-viper-consumer.css +40 -4
- package/_site/assets/css/pit-viper-v2-scoped.css +45 -14
- package/_site/assets/css/pit-viper-v2.css +50 -14
- package/_site/assets/css/pit-viper.css +37 -1
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +1 -2
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +10 -12
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
|
@@ -158,7 +158,6 @@
|
|
|
158
158
|
[class*=pv-heading] {
|
|
159
159
|
font-family: var(--font-family-body, Inter, sans-serif);
|
|
160
160
|
font-weight: 600;
|
|
161
|
-
letter-spacing: 0.2px;
|
|
162
161
|
}
|
|
163
162
|
|
|
164
163
|
[class*=pv-text-body] {
|
|
@@ -189,57 +188,73 @@
|
|
|
189
188
|
.pv-heading-1 {
|
|
190
189
|
font-size: var(--font-size-heading-1, 1.375rem);
|
|
191
190
|
line-height: var(--line-height-heading-1, 1.1818181818);
|
|
191
|
+
letter-spacing: 0.2px;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
.pv-heading-2 {
|
|
195
195
|
font-size: var(--font-size-heading-2, 1.125rem);
|
|
196
196
|
line-height: var(--line-height-heading-2, 1.4444444444);
|
|
197
|
+
letter-spacing: 0.16px;
|
|
197
198
|
}
|
|
198
199
|
|
|
199
200
|
.pv-heading-3 {
|
|
200
201
|
font-size: var(--font-size-heading-3, 1rem);
|
|
201
202
|
line-height: var(--line-height-heading-3, 1.375);
|
|
203
|
+
letter-spacing: 0.14px;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
206
|
.pv-heading-4 {
|
|
205
207
|
font-size: var(--font-size-heading-4, 0.875rem);
|
|
206
208
|
line-height: var(--line-height-heading-4, 1.2857142857);
|
|
209
|
+
letter-spacing: 0.12px;
|
|
207
210
|
}
|
|
208
211
|
|
|
209
212
|
.pv-heading-5 {
|
|
210
213
|
font-size: var(--font-size-heading-5, 0.875rem);
|
|
211
214
|
line-height: var(--line-height-heading-5, 1.2857142857);
|
|
215
|
+
letter-spacing: 0.12px;
|
|
212
216
|
}
|
|
213
217
|
|
|
214
218
|
.pv-text-body-xl {
|
|
215
219
|
font-size: var(--font-size-xl, 1rem);
|
|
216
220
|
line-height: var(--line-height-xl, 1.375);
|
|
221
|
+
letter-spacing: 0.14px;
|
|
217
222
|
}
|
|
218
223
|
|
|
219
224
|
.pv-text-body-lg {
|
|
220
225
|
font-size: var(--font-size-l, 1rem);
|
|
221
226
|
line-height: var(--line-height-l, 1.375);
|
|
227
|
+
letter-spacing: 0.14px;
|
|
222
228
|
}
|
|
223
229
|
|
|
224
230
|
.pv-text-body-md {
|
|
225
231
|
font-size: var(--font-size-m, 0.875rem);
|
|
226
232
|
line-height: var(--line-height-m, 1.2857142857);
|
|
233
|
+
letter-spacing: 0.12px;
|
|
227
234
|
}
|
|
228
235
|
|
|
229
236
|
.pv-text-body-sm {
|
|
230
237
|
font-size: var(--font-size-s, 0.8125rem);
|
|
231
238
|
line-height: var(--line-height-s, 1.3846153846);
|
|
239
|
+
letter-spacing: 0.11px;
|
|
232
240
|
}
|
|
233
241
|
|
|
234
242
|
.pv-text-body-xs {
|
|
235
243
|
font-size: var(--font-size-xs, 0.8125rem);
|
|
236
244
|
line-height: var(--line-height-xs, 1.3846153846);
|
|
245
|
+
letter-spacing: 0.11px;
|
|
237
246
|
}
|
|
238
247
|
|
|
239
248
|
.pv-text-body-xxs {
|
|
240
249
|
font-size: var(--font-size-xxs, 0.8125rem);
|
|
241
250
|
line-height: var(--line-height-xxs, 1.3846153846);
|
|
242
|
-
letter-spacing: 0.
|
|
251
|
+
letter-spacing: 0.11px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.pv-text-caption {
|
|
255
|
+
font-size: var(--font-size-s, 0.8125rem);
|
|
256
|
+
line-height: var(--line-height-caption, 1.09090909);
|
|
257
|
+
letter-spacing: 0.11px;
|
|
243
258
|
}
|
|
244
259
|
|
|
245
260
|
.pv-text-medium {
|
|
@@ -253,26 +268,31 @@
|
|
|
253
268
|
.pv-text-title-xl {
|
|
254
269
|
font-size: var(--font-size-title-xl, 1rem);
|
|
255
270
|
line-height: var(--line-height-title-xl, 1.375);
|
|
271
|
+
letter-spacing: 0.14px;
|
|
256
272
|
}
|
|
257
273
|
|
|
258
274
|
.pv-text-title-lg {
|
|
259
275
|
font-size: var(--font-size-title-l, 1rem);
|
|
260
276
|
line-height: var(--line-height-title-l, 1.375);
|
|
277
|
+
letter-spacing: 0.14px;
|
|
261
278
|
}
|
|
262
279
|
|
|
263
280
|
.pv-text-title-md {
|
|
264
281
|
font-size: var(--font-size-title-m, 0.875rem);
|
|
265
282
|
line-height: var(--line-height-title-m, 1.2857142857);
|
|
283
|
+
letter-spacing: 0.12px;
|
|
266
284
|
}
|
|
267
285
|
|
|
268
286
|
.pv-text-title-sm {
|
|
269
287
|
font-size: var(--font-size-title-s, 0.8125rem);
|
|
270
288
|
line-height: var(--line-height-title-s, 1.3846153846);
|
|
289
|
+
letter-spacing: 0.11px;
|
|
271
290
|
}
|
|
272
291
|
|
|
273
292
|
.pv-text-title-xs {
|
|
274
293
|
font-size: var(--font-size-title-xs, 0.8125rem);
|
|
275
294
|
line-height: var(--line-height-title-xs, 1.3846153846);
|
|
295
|
+
letter-spacing: 0.11px;
|
|
276
296
|
}
|
|
277
297
|
|
|
278
298
|
.pv-text-eyebrow-lg {
|
|
@@ -702,8 +722,8 @@
|
|
|
702
722
|
}
|
|
703
723
|
|
|
704
724
|
.pv-button-small {
|
|
705
|
-
font-size: var(--button-small-font-size, 0.
|
|
706
|
-
line-height: var(--button-small-line-height, 1.
|
|
725
|
+
font-size: var(--button-small-font-size, 0.8125rem);
|
|
726
|
+
line-height: var(--button-small-line-height, 1.3846153846);
|
|
707
727
|
padding: var(--button-small-padding, calc(0.125rem - 1px) 0.25rem);
|
|
708
728
|
}
|
|
709
729
|
.pv-button-small.pv-button-primary-outline {
|
|
@@ -786,8 +806,8 @@
|
|
|
786
806
|
color: var(--button-link-inverse-hover-color, #A8E6E1);
|
|
787
807
|
}
|
|
788
808
|
[class*=pv-button-link].pv-button-xsmall, [class*=pv-button-link].pv-button-small, [class*=pv-button-link].pv-button-large {
|
|
789
|
-
font-size: var(--button-small-font-size, 0.
|
|
790
|
-
line-height: var(--button-small-line-height, 1.
|
|
809
|
+
font-size: var(--button-small-font-size, 0.8125rem);
|
|
810
|
+
line-height: var(--button-small-line-height, 1.3846153846);
|
|
791
811
|
}
|
|
792
812
|
|
|
793
813
|
.pv-button-link-destructive {
|
|
@@ -1156,7 +1176,7 @@
|
|
|
1156
1176
|
.pv-input-group > label {
|
|
1157
1177
|
font-size: var(--label-font-size, 0.8125rem);
|
|
1158
1178
|
font-weight: var(--label-font-weight, 400);
|
|
1159
|
-
letter-spacing: 0.
|
|
1179
|
+
letter-spacing: 0.11px;
|
|
1160
1180
|
position: relative;
|
|
1161
1181
|
z-index: 1;
|
|
1162
1182
|
}
|
|
@@ -5135,7 +5155,7 @@ pv-sidebar {
|
|
|
5135
5155
|
--nav-list-pressed-text-color: var(--layout-primary-sidebar-text-color);
|
|
5136
5156
|
--nav-list-font-size: 0.875rem;
|
|
5137
5157
|
--nav-list-font-weight: 600;
|
|
5138
|
-
--nav-list-line-height: 1.
|
|
5158
|
+
--nav-list-line-height: 1.1428571;
|
|
5139
5159
|
--nav-list-details-padding: 2px;
|
|
5140
5160
|
--nav-list-details-margin: -2px;
|
|
5141
5161
|
--nav-list-gap: 0;
|
|
@@ -6238,6 +6258,22 @@ svg.pv-text-inherit {
|
|
|
6238
6258
|
vertical-align: top;
|
|
6239
6259
|
}
|
|
6240
6260
|
|
|
6261
|
+
.pv-text-regular {
|
|
6262
|
+
font-weight: var(--font-weight-regular, 400);
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
.pv-text-medium {
|
|
6266
|
+
font-weight: var(--font-weight-medium, 500);
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6269
|
+
.pv-text-semibold {
|
|
6270
|
+
font-weight: var(--font-weight-semibold, 600);
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6273
|
+
.pv-text-bold {
|
|
6274
|
+
font-weight: var(--font-weight-bold, 700);
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6241
6277
|
.select2-container {
|
|
6242
6278
|
position: relative;
|
|
6243
6279
|
display: block;
|
|
@@ -6640,7 +6676,7 @@ input.select2-search__field::placeholder {
|
|
|
6640
6676
|
.p-datepicker-input {
|
|
6641
6677
|
font-size: var(--datepicker-text-size, 0.8125rem);
|
|
6642
6678
|
line-height: var(--datepicker-line-height, 1.3846153846);
|
|
6643
|
-
letter-spacing: 0.
|
|
6679
|
+
letter-spacing: 0.11px;
|
|
6644
6680
|
padding: calc(0.5rem - 1px) 0.5rem;
|
|
6645
6681
|
}
|
|
6646
6682
|
|
|
@@ -164,7 +164,6 @@
|
|
|
164
164
|
[class*=pv-heading] {
|
|
165
165
|
font-family: var(--font-family-body, GT Standard M, sans-serif);
|
|
166
166
|
font-weight: 600;
|
|
167
|
-
letter-spacing: 0.2px;
|
|
168
167
|
}
|
|
169
168
|
|
|
170
169
|
[class*=pv-text-body] {
|
|
@@ -195,57 +194,73 @@
|
|
|
195
194
|
.pv-heading-1 {
|
|
196
195
|
font-size: var(--font-size-heading-1, 3.875rem);
|
|
197
196
|
line-height: var(--line-height-heading-1, 1);
|
|
197
|
+
letter-spacing: 0.2px;
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.pv-heading-2 {
|
|
201
201
|
font-size: var(--font-size-heading-2, 3rem);
|
|
202
202
|
line-height: var(--line-height-heading-2, 1);
|
|
203
|
+
letter-spacing: 0.16px;
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
.pv-heading-3 {
|
|
206
207
|
font-size: var(--font-size-heading-3, 2.5rem);
|
|
207
208
|
line-height: var(--line-height-heading-3, 1.1);
|
|
209
|
+
letter-spacing: 0.14px;
|
|
208
210
|
}
|
|
209
211
|
|
|
210
212
|
.pv-heading-4 {
|
|
211
213
|
font-size: var(--font-size-heading-4, 1.75rem);
|
|
212
214
|
line-height: var(--line-height-heading-4, 1.1);
|
|
215
|
+
letter-spacing: 0.12px;
|
|
213
216
|
}
|
|
214
217
|
|
|
215
218
|
.pv-heading-5 {
|
|
216
219
|
font-size: var(--font-size-heading-5, 1.5rem);
|
|
217
220
|
line-height: var(--line-height-heading-5, 1.2);
|
|
221
|
+
letter-spacing: 0.12px;
|
|
218
222
|
}
|
|
219
223
|
|
|
220
224
|
.pv-text-body-xl {
|
|
221
225
|
font-size: var(--font-size-xl, 1.25rem);
|
|
222
226
|
line-height: var(--line-height-xl, 1.4);
|
|
227
|
+
letter-spacing: 0.14px;
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
.pv-text-body-lg {
|
|
226
231
|
font-size: var(--font-size-l, 1.25rem);
|
|
227
232
|
line-height: var(--line-height-l, 1.4);
|
|
233
|
+
letter-spacing: 0.14px;
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.pv-text-body-md {
|
|
231
237
|
font-size: var(--font-size-m, 1rem);
|
|
232
238
|
line-height: var(--line-height-m, 1.5);
|
|
239
|
+
letter-spacing: 0.12px;
|
|
233
240
|
}
|
|
234
241
|
|
|
235
242
|
.pv-text-body-sm {
|
|
236
243
|
font-size: var(--font-size-s, 0.875rem);
|
|
237
244
|
line-height: var(--line-height-s, 1.3846153846);
|
|
245
|
+
letter-spacing: 0.11px;
|
|
238
246
|
}
|
|
239
247
|
|
|
240
248
|
.pv-text-body-xs {
|
|
241
249
|
font-size: var(--font-size-xs, 0.875rem);
|
|
242
250
|
line-height: var(--line-height-xs, 1.3846153846);
|
|
251
|
+
letter-spacing: 0.11px;
|
|
243
252
|
}
|
|
244
253
|
|
|
245
254
|
.pv-text-body-xxs {
|
|
246
255
|
font-size: var(--font-size-xxs, 0.875rem);
|
|
247
256
|
line-height: var(--line-height-xxs, 1.3846153846);
|
|
248
|
-
letter-spacing: 0.
|
|
257
|
+
letter-spacing: 0.11px;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.pv-text-caption {
|
|
261
|
+
font-size: var(--font-size-s, 0.875rem);
|
|
262
|
+
line-height: var(--line-height-caption, 1.09090909);
|
|
263
|
+
letter-spacing: 0.11px;
|
|
249
264
|
}
|
|
250
265
|
|
|
251
266
|
.pv-text-medium {
|
|
@@ -259,26 +274,31 @@
|
|
|
259
274
|
.pv-text-title-xl {
|
|
260
275
|
font-size: var(--font-size-title-xl, 1.25rem);
|
|
261
276
|
line-height: var(--line-height-title-xl, 1.4);
|
|
277
|
+
letter-spacing: 0.14px;
|
|
262
278
|
}
|
|
263
279
|
|
|
264
280
|
.pv-text-title-lg {
|
|
265
281
|
font-size: var(--font-size-title-l, 1.25rem);
|
|
266
282
|
line-height: var(--line-height-title-l, 1.4);
|
|
283
|
+
letter-spacing: 0.14px;
|
|
267
284
|
}
|
|
268
285
|
|
|
269
286
|
.pv-text-title-md {
|
|
270
287
|
font-size: var(--font-size-title-m, 1rem);
|
|
271
288
|
line-height: var(--line-height-title-m, 1.5);
|
|
289
|
+
letter-spacing: 0.12px;
|
|
272
290
|
}
|
|
273
291
|
|
|
274
292
|
.pv-text-title-sm {
|
|
275
293
|
font-size: var(--font-size-title-s, 0.875rem);
|
|
276
294
|
line-height: var(--line-height-title-s, 1.3846153846);
|
|
295
|
+
letter-spacing: 0.11px;
|
|
277
296
|
}
|
|
278
297
|
|
|
279
298
|
.pv-text-title-xs {
|
|
280
299
|
font-size: var(--font-size-title-xs, 0.875rem);
|
|
281
300
|
line-height: var(--line-height-title-xs, 1.3846153846);
|
|
301
|
+
letter-spacing: 0.11px;
|
|
282
302
|
}
|
|
283
303
|
|
|
284
304
|
.pv-text-eyebrow-lg {
|
|
@@ -1162,7 +1182,7 @@
|
|
|
1162
1182
|
.pv-input-group > label {
|
|
1163
1183
|
font-size: var(--label-font-size, 0.875rem);
|
|
1164
1184
|
font-weight: var(--label-font-weight, 400);
|
|
1165
|
-
letter-spacing: 0.
|
|
1185
|
+
letter-spacing: 0.11px;
|
|
1166
1186
|
position: relative;
|
|
1167
1187
|
z-index: 1;
|
|
1168
1188
|
}
|
|
@@ -6059,6 +6079,22 @@ svg.pv-text-inherit {
|
|
|
6059
6079
|
vertical-align: top;
|
|
6060
6080
|
}
|
|
6061
6081
|
|
|
6082
|
+
.pv-text-regular {
|
|
6083
|
+
font-weight: var(--font-weight-regular, 400);
|
|
6084
|
+
}
|
|
6085
|
+
|
|
6086
|
+
.pv-text-medium {
|
|
6087
|
+
font-weight: var(--font-weight-medium, 500);
|
|
6088
|
+
}
|
|
6089
|
+
|
|
6090
|
+
.pv-text-semibold {
|
|
6091
|
+
font-weight: var(--font-weight-semibold, 600);
|
|
6092
|
+
}
|
|
6093
|
+
|
|
6094
|
+
.pv-text-bold {
|
|
6095
|
+
font-weight: var(--font-weight-bold, 700);
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6062
6098
|
.select2-container {
|
|
6063
6099
|
position: relative;
|
|
6064
6100
|
display: block;
|
|
@@ -6461,7 +6497,7 @@ input.select2-search__field::placeholder {
|
|
|
6461
6497
|
.p-datepicker-input {
|
|
6462
6498
|
font-size: var(--datepicker-text-size, 0.875rem);
|
|
6463
6499
|
line-height: var(--datepicker-line-height, 1.3846153846);
|
|
6464
|
-
letter-spacing: 0.
|
|
6500
|
+
letter-spacing: 0.11px;
|
|
6465
6501
|
padding: calc(0.5rem - 1px) 0.5rem;
|
|
6466
6502
|
}
|
|
6467
6503
|
|
|
@@ -142,7 +142,6 @@
|
|
|
142
142
|
.pv-v2 [class*=pv-heading] {
|
|
143
143
|
font-family: var(--font-family-body, Inter, sans-serif);
|
|
144
144
|
font-weight: 600;
|
|
145
|
-
letter-spacing: 0.2px;
|
|
146
145
|
}
|
|
147
146
|
.pv-v2 [class*=pv-text-body] {
|
|
148
147
|
font-family: var(--font-family-body, Inter, sans-serif);
|
|
@@ -167,47 +166,62 @@
|
|
|
167
166
|
.pv-v2 .pv-heading-1 {
|
|
168
167
|
font-size: var(--font-size-heading-1, 1.25rem);
|
|
169
168
|
line-height: var(--line-height-heading-1, 1.2);
|
|
169
|
+
letter-spacing: 0.2px;
|
|
170
170
|
}
|
|
171
171
|
.pv-v2 .pv-heading-2 {
|
|
172
172
|
font-size: var(--font-size-heading-2, 1rem);
|
|
173
173
|
line-height: var(--line-height-heading-2, 1.5);
|
|
174
|
+
letter-spacing: 0.16px;
|
|
174
175
|
}
|
|
175
176
|
.pv-v2 .pv-heading-3 {
|
|
176
177
|
font-size: var(--font-size-heading-3, 0.875rem);
|
|
177
178
|
line-height: var(--line-height-heading-3, 1.4285714);
|
|
179
|
+
letter-spacing: 0.14px;
|
|
178
180
|
}
|
|
179
181
|
.pv-v2 .pv-heading-4 {
|
|
180
182
|
font-size: var(--font-size-heading-4, 0.75rem);
|
|
181
183
|
line-height: var(--line-height-heading-4, 1.3333333);
|
|
184
|
+
letter-spacing: 0.12px;
|
|
182
185
|
}
|
|
183
186
|
.pv-v2 .pv-heading-5 {
|
|
184
187
|
font-size: var(--font-size-heading-5, 0.75rem);
|
|
185
188
|
line-height: var(--line-height-heading-5, 1.3333333);
|
|
189
|
+
letter-spacing: 0.12px;
|
|
186
190
|
}
|
|
187
191
|
.pv-v2 .pv-text-body-xl {
|
|
188
192
|
font-size: var(--font-size-xl, 0.875rem);
|
|
189
|
-
line-height: var(--line-height-xl, 1.
|
|
193
|
+
line-height: var(--line-height-xl, 1.4285714);
|
|
194
|
+
letter-spacing: 0.14px;
|
|
190
195
|
}
|
|
191
196
|
.pv-v2 .pv-text-body-lg {
|
|
192
197
|
font-size: var(--font-size-l, 0.875rem);
|
|
193
|
-
line-height: var(--line-height-l, 1.
|
|
198
|
+
line-height: var(--line-height-l, 1.4285714);
|
|
199
|
+
letter-spacing: 0.14px;
|
|
194
200
|
}
|
|
195
201
|
.pv-v2 .pv-text-body-md {
|
|
196
202
|
font-size: var(--font-size-m, 0.75rem);
|
|
197
203
|
line-height: var(--line-height-m, 1.33333333);
|
|
204
|
+
letter-spacing: 0.12px;
|
|
198
205
|
}
|
|
199
206
|
.pv-v2 .pv-text-body-sm {
|
|
200
207
|
font-size: var(--font-size-s, 0.6875rem);
|
|
201
208
|
line-height: var(--line-height-s, 1.45454545);
|
|
209
|
+
letter-spacing: 0.11px;
|
|
202
210
|
}
|
|
203
211
|
.pv-v2 .pv-text-body-xs {
|
|
204
212
|
font-size: var(--font-size-xs, 0.6875rem);
|
|
205
213
|
line-height: var(--line-height-xs, 1.45454545);
|
|
214
|
+
letter-spacing: 0.11px;
|
|
206
215
|
}
|
|
207
216
|
.pv-v2 .pv-text-body-xxs {
|
|
208
217
|
font-size: var(--font-size-xxs, 0.6875rem);
|
|
209
218
|
line-height: var(--line-height-xxs, 1.45454545);
|
|
210
|
-
letter-spacing: 0.
|
|
219
|
+
letter-spacing: 0.11px;
|
|
220
|
+
}
|
|
221
|
+
.pv-v2 .pv-text-caption {
|
|
222
|
+
font-size: var(--font-size-s, 0.6875rem);
|
|
223
|
+
line-height: var(--line-height-caption, 1.09090909);
|
|
224
|
+
letter-spacing: 0.11px;
|
|
211
225
|
}
|
|
212
226
|
.pv-v2 .pv-text-medium {
|
|
213
227
|
font-weight: 500;
|
|
@@ -218,22 +232,27 @@
|
|
|
218
232
|
.pv-v2 .pv-text-title-xl {
|
|
219
233
|
font-size: var(--font-size-title-xl, 0.875rem);
|
|
220
234
|
line-height: var(--line-height-title-xl, 1.1428571);
|
|
235
|
+
letter-spacing: 0.14px;
|
|
221
236
|
}
|
|
222
237
|
.pv-v2 .pv-text-title-lg {
|
|
223
238
|
font-size: var(--font-size-title-l, 0.875rem);
|
|
224
239
|
line-height: var(--line-height-title-l, 1.1428571);
|
|
240
|
+
letter-spacing: 0.14px;
|
|
225
241
|
}
|
|
226
242
|
.pv-v2 .pv-text-title-md {
|
|
227
243
|
font-size: var(--font-size-title-m, 0.75rem);
|
|
228
244
|
line-height: var(--line-height-title-m, 1.33333333);
|
|
245
|
+
letter-spacing: 0.12px;
|
|
229
246
|
}
|
|
230
247
|
.pv-v2 .pv-text-title-sm {
|
|
231
248
|
font-size: var(--font-size-title-s, 0.6875rem);
|
|
232
249
|
line-height: var(--line-height-title-s, 1.45454545);
|
|
250
|
+
letter-spacing: 0.11px;
|
|
233
251
|
}
|
|
234
252
|
.pv-v2 .pv-text-title-xs {
|
|
235
253
|
font-size: var(--font-size-title-xs, 0.6875rem);
|
|
236
254
|
line-height: var(--line-height-title-xs, 1.45454545);
|
|
255
|
+
letter-spacing: 0.11px;
|
|
237
256
|
}
|
|
238
257
|
.pv-v2 .pv-text-eyebrow-lg {
|
|
239
258
|
font-weight: var(--font-weight-bold, 700);
|
|
@@ -316,14 +335,14 @@
|
|
|
316
335
|
position: relative;
|
|
317
336
|
padding-bottom: var(--display-list-padding-bottom, 0.5rem);
|
|
318
337
|
font-size: var(--display-list-font-size, 0.875rem);
|
|
319
|
-
line-height: var(--display-list-line-height, 1.
|
|
338
|
+
line-height: var(--display-list-line-height, 1.4285714);
|
|
320
339
|
}
|
|
321
340
|
.pv-v2 [data-list-style=display]::before {
|
|
322
341
|
content: counter(display) ".";
|
|
323
342
|
color: #16696D;
|
|
324
343
|
font-family: "Inter", sans-serif;
|
|
325
344
|
font-size: var(--display-counter-list-font-size, 0.875rem);
|
|
326
|
-
line-height: var(--display-counter-list-line-height, 1.
|
|
345
|
+
line-height: var(--display-counter-list-line-height, 1.4285714);
|
|
327
346
|
}
|
|
328
347
|
.pv-v2 [data-list-incomplete] {
|
|
329
348
|
color: #4B595C;
|
|
@@ -627,8 +646,8 @@
|
|
|
627
646
|
padding: var(--button-xsmall-padding, calc(0.125rem - 1px) 0.25rem);
|
|
628
647
|
}
|
|
629
648
|
.pv-v2 .pv-button-small {
|
|
630
|
-
font-size: var(--button-small-font-size, 0.
|
|
631
|
-
line-height: var(--button-small-line-height, 1.
|
|
649
|
+
font-size: var(--button-small-font-size, 0.6875rem);
|
|
650
|
+
line-height: var(--button-small-line-height, 1.45454545);
|
|
632
651
|
padding: var(--button-small-padding, calc(0.125rem - 1px) 0.25rem);
|
|
633
652
|
}
|
|
634
653
|
.pv-v2 .pv-button-small.pv-button-primary-outline {
|
|
@@ -706,8 +725,8 @@
|
|
|
706
725
|
color: var(--button-link-inverse-hover-color, #A8E6E1);
|
|
707
726
|
}
|
|
708
727
|
.pv-v2 [class*=pv-button-link].pv-button-xsmall, .pv-v2 [class*=pv-button-link].pv-button-small, .pv-v2 [class*=pv-button-link].pv-button-large {
|
|
709
|
-
font-size: var(--button-small-font-size, 0.
|
|
710
|
-
line-height: var(--button-small-line-height, 1.
|
|
728
|
+
font-size: var(--button-small-font-size, 0.6875rem);
|
|
729
|
+
line-height: var(--button-small-line-height, 1.45454545);
|
|
711
730
|
}
|
|
712
731
|
.pv-v2 .pv-button-link-destructive {
|
|
713
732
|
color: var(--button-link-destructive-color, #801A00);
|
|
@@ -1057,7 +1076,7 @@
|
|
|
1057
1076
|
.pv-v2 .pv-input-group > label {
|
|
1058
1077
|
font-size: var(--label-font-size, 0.6875rem);
|
|
1059
1078
|
font-weight: var(--label-font-weight, 400);
|
|
1060
|
-
letter-spacing: 0.
|
|
1079
|
+
letter-spacing: 0.11px;
|
|
1061
1080
|
position: relative;
|
|
1062
1081
|
z-index: 1;
|
|
1063
1082
|
}
|
|
@@ -1444,7 +1463,7 @@
|
|
|
1444
1463
|
.pv-v2 .pv-ghost-input[data-style=text-large] input {
|
|
1445
1464
|
font-weight: 400;
|
|
1446
1465
|
font-size: 0.875rem;
|
|
1447
|
-
line-height: 1.
|
|
1466
|
+
line-height: 1.4285714;
|
|
1448
1467
|
}
|
|
1449
1468
|
.pv-v2 .pv-ghost-input[data-style=text-medium] input {
|
|
1450
1469
|
font-weight: 400;
|
|
@@ -3945,7 +3964,7 @@
|
|
|
3945
3964
|
background-position: 0.75rem 50%;
|
|
3946
3965
|
border-radius: 4px;
|
|
3947
3966
|
font-size: 0.875rem;
|
|
3948
|
-
line-height: 1.
|
|
3967
|
+
line-height: 1.4285714;
|
|
3949
3968
|
}
|
|
3950
3969
|
.pv-v2 .pv-alert-warning {
|
|
3951
3970
|
border-color: #EFC666;
|
|
@@ -5473,6 +5492,18 @@
|
|
|
5473
5492
|
.pv-v2 .pv-valign-top {
|
|
5474
5493
|
vertical-align: top;
|
|
5475
5494
|
}
|
|
5495
|
+
.pv-v2 .pv-text-regular {
|
|
5496
|
+
font-weight: var(--font-weight-regular, 400);
|
|
5497
|
+
}
|
|
5498
|
+
.pv-v2 .pv-text-medium {
|
|
5499
|
+
font-weight: var(--font-weight-medium, 500);
|
|
5500
|
+
}
|
|
5501
|
+
.pv-v2 .pv-text-semibold {
|
|
5502
|
+
font-weight: var(--font-weight-semibold, 600);
|
|
5503
|
+
}
|
|
5504
|
+
.pv-v2 .pv-text-bold {
|
|
5505
|
+
font-weight: var(--font-weight-bold, 700);
|
|
5506
|
+
}
|
|
5476
5507
|
.pv-v2 .select2-container {
|
|
5477
5508
|
position: relative;
|
|
5478
5509
|
display: block;
|
|
@@ -5825,7 +5856,7 @@
|
|
|
5825
5856
|
.pv-v2 .p-datepicker-input {
|
|
5826
5857
|
font-size: var(--datepicker-text-size, 0.6875rem);
|
|
5827
5858
|
line-height: var(--datepicker-line-height, 1.45454545);
|
|
5828
|
-
letter-spacing: 0.
|
|
5859
|
+
letter-spacing: 0.11px;
|
|
5829
5860
|
padding: calc(0.5rem - 1px) 0.5rem;
|
|
5830
5861
|
}
|
|
5831
5862
|
.pv-v2 .p-datepicker-year, .pv-v2 .p-datepicker-month {
|