@turquoisehealth/pit-viper 2.233.0 → 2.234.1
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 +25 -8
- package/_site/assets/css/pit-viper-consumer.css +25 -8
- package/_site/assets/css/pit-viper-v2-scoped.css +21 -8
- package/_site/assets/css/pit-viper-v2.css +26 -9
- package/_site/assets/css/pit-viper.css +25 -8
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-card-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-insight-card-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-widget-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/base/PvCard/PvCard.vue.d.ts +21 -0
- package/pv-components/dist/vue/ai/components/base/PvModal/PvModal.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/components/base/PvCard/PvCard.vue.d.ts +21 -0
- package/pv-components/dist/vue/base/components/base/PvModal/PvModal.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +643 -614
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvCard/PvCard.vue.d.ts +21 -0
- package/pv-components/dist/vue/visualizations/components/base/PvModal/PvModal.vue.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1366 -1337
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-card/pv-card.js +517 -487
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +17 -16
- package/pv-components/dist/web/components/pv-insight-card/pv-insight-card.js +498 -468
- package/pv-components/dist/web/components/pv-modal/pv-modal.js +484 -483
- package/pv-components/dist/web/components/pv-widget/pv-widget.js +534 -504
- package/pv-components/dist/web/pv-components.iife.js +13 -13
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -3332,7 +3332,7 @@ button.pv-tag-secondary:active {
|
|
|
3332
3332
|
}
|
|
3333
3333
|
|
|
3334
3334
|
[class*=pv-modal] {
|
|
3335
|
-
--max-height:
|
|
3335
|
+
--max-height: 100%;
|
|
3336
3336
|
--max-width: 100%;
|
|
3337
3337
|
--top: 2rem;
|
|
3338
3338
|
border: none;
|
|
@@ -4145,9 +4145,6 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4145
4145
|
border-radius: var(--card-radius, 8px);
|
|
4146
4146
|
background-color: var(--card-background-color, #FFFFFF);
|
|
4147
4147
|
overflow: clip;
|
|
4148
|
-
transition-duration: 0.125s;
|
|
4149
|
-
transition-timing-function: ease-in;
|
|
4150
|
-
transition-property: border-color;
|
|
4151
4148
|
}
|
|
4152
4149
|
.pv-card:hover, .pv-card:focus-visible {
|
|
4153
4150
|
border-color: var(--card-hover-border-color, #8F939E);
|
|
@@ -4195,7 +4192,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4195
4192
|
font-weight: inherit;
|
|
4196
4193
|
transition-duration: 0.125s;
|
|
4197
4194
|
transition-timing-function: ease-in;
|
|
4198
|
-
transition-property:
|
|
4195
|
+
transition-property: box-shadow, color;
|
|
4199
4196
|
}
|
|
4200
4197
|
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
4201
4198
|
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
@@ -4225,6 +4222,28 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4225
4222
|
background-color: var(--card-secondary-background-color, #F0F2F2);
|
|
4226
4223
|
}
|
|
4227
4224
|
|
|
4225
|
+
.pv-card-hover-action {
|
|
4226
|
+
border-radius: var(--card-hover-action-radius, 8px);
|
|
4227
|
+
border-color: var(--card-background-color, #FFFFFF);
|
|
4228
|
+
}
|
|
4229
|
+
.pv-card-hover-action:hover, .pv-card-hover-action:focus-visible {
|
|
4230
|
+
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
4231
|
+
border-color: var(--card-hover-background-color, #E8F2F4);
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
.pv-card-hover-action-secondary {
|
|
4235
|
+
background-color: var(--color-background-accent, #F0F2F2);
|
|
4236
|
+
border-color: var(--color-background-accent, #F0F2F2);
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
.pv-card-hover-action__action.pv-flex {
|
|
4240
|
+
display: none;
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
.pv-card-hover-action:hover .pv-card-hover-action__action.pv-flex {
|
|
4244
|
+
display: flex;
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4228
4247
|
.pv-card-select {
|
|
4229
4248
|
--unselected: "Apply to Table";
|
|
4230
4249
|
--selected: "Applied";
|
|
@@ -4248,14 +4267,12 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4248
4267
|
flex-direction: column;
|
|
4249
4268
|
transition-duration: 0.125s;
|
|
4250
4269
|
transition-timing-function: ease-in;
|
|
4251
|
-
transition-property:
|
|
4270
|
+
transition-property: color;
|
|
4252
4271
|
}
|
|
4253
4272
|
.pv-card-select > label > :first-child {
|
|
4254
4273
|
flex: 1;
|
|
4255
4274
|
border-bottom: 1px solid #8F939E;
|
|
4256
4275
|
transition-duration: 0.125s;
|
|
4257
|
-
transition-timing-function: ease-in;
|
|
4258
|
-
transition-property: border-color;
|
|
4259
4276
|
}
|
|
4260
4277
|
.pv-card-select > label > :last-child {
|
|
4261
4278
|
padding: 1rem 1.5rem;
|
|
@@ -3338,7 +3338,7 @@ button.pv-tag-secondary:active {
|
|
|
3338
3338
|
}
|
|
3339
3339
|
|
|
3340
3340
|
[class*=pv-modal] {
|
|
3341
|
-
--max-height:
|
|
3341
|
+
--max-height: 100%;
|
|
3342
3342
|
--max-width: 100%;
|
|
3343
3343
|
--top: 2rem;
|
|
3344
3344
|
border: none;
|
|
@@ -4151,9 +4151,6 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4151
4151
|
border-radius: var(--card-radius, 8px);
|
|
4152
4152
|
background-color: var(--card-background-color, #FFFFFF);
|
|
4153
4153
|
overflow: clip;
|
|
4154
|
-
transition-duration: 0.125s;
|
|
4155
|
-
transition-timing-function: ease-in;
|
|
4156
|
-
transition-property: border-color;
|
|
4157
4154
|
}
|
|
4158
4155
|
.pv-card:hover, .pv-card:focus-visible {
|
|
4159
4156
|
border-color: var(--card-hover-border-color, #E8EBEB);
|
|
@@ -4201,7 +4198,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4201
4198
|
font-weight: inherit;
|
|
4202
4199
|
transition-duration: 0.125s;
|
|
4203
4200
|
transition-timing-function: ease-in;
|
|
4204
|
-
transition-property:
|
|
4201
|
+
transition-property: box-shadow, color;
|
|
4205
4202
|
}
|
|
4206
4203
|
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
4207
4204
|
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
@@ -4231,6 +4228,28 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4231
4228
|
background-color: var(--card-secondary-background-color, #F7F8F8);
|
|
4232
4229
|
}
|
|
4233
4230
|
|
|
4231
|
+
.pv-card-hover-action {
|
|
4232
|
+
border-radius: var(--card-hover-action-radius, 8px);
|
|
4233
|
+
border-color: var(--card-background-color, #FFFFFF);
|
|
4234
|
+
}
|
|
4235
|
+
.pv-card-hover-action:hover, .pv-card-hover-action:focus-visible {
|
|
4236
|
+
background-color: var(--card-hover-background-color, #F8F7F1);
|
|
4237
|
+
border-color: var(--card-hover-background-color, #F8F7F1);
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
.pv-card-hover-action-secondary {
|
|
4241
|
+
background-color: var(--color-background-accent, #F7F8F8);
|
|
4242
|
+
border-color: var(--color-background-accent, #F7F8F8);
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
.pv-card-hover-action__action.pv-flex {
|
|
4246
|
+
display: none;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.pv-card-hover-action:hover .pv-card-hover-action__action.pv-flex {
|
|
4250
|
+
display: flex;
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4234
4253
|
.pv-card-select {
|
|
4235
4254
|
--unselected: "Apply to Table";
|
|
4236
4255
|
--selected: "Applied";
|
|
@@ -4254,14 +4273,12 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4254
4273
|
flex-direction: column;
|
|
4255
4274
|
transition-duration: 0.125s;
|
|
4256
4275
|
transition-timing-function: ease-in;
|
|
4257
|
-
transition-property:
|
|
4276
|
+
transition-property: color;
|
|
4258
4277
|
}
|
|
4259
4278
|
.pv-card-select > label > :first-child {
|
|
4260
4279
|
flex: 1;
|
|
4261
4280
|
border-bottom: 1px solid #E8EBEB;
|
|
4262
4281
|
transition-duration: 0.125s;
|
|
4263
|
-
transition-timing-function: ease-in;
|
|
4264
|
-
transition-property: border-color;
|
|
4265
4282
|
}
|
|
4266
4283
|
.pv-card-select > label > :last-child {
|
|
4267
4284
|
padding: 1rem 1.5rem;
|
|
@@ -3041,7 +3041,7 @@
|
|
|
3041
3041
|
background-position: 50% 50%;
|
|
3042
3042
|
}
|
|
3043
3043
|
.pv-v2 [class*=pv-modal] {
|
|
3044
|
-
--max-height:
|
|
3044
|
+
--max-height: 100%;
|
|
3045
3045
|
--max-width: 100%;
|
|
3046
3046
|
--top: 2rem;
|
|
3047
3047
|
border: none;
|
|
@@ -3800,9 +3800,6 @@
|
|
|
3800
3800
|
border-radius: var(--card-radius, 8px);
|
|
3801
3801
|
background-color: var(--card-background-color, #FFFFFF);
|
|
3802
3802
|
overflow: clip;
|
|
3803
|
-
transition-duration: 0.125s;
|
|
3804
|
-
transition-timing-function: ease-in;
|
|
3805
|
-
transition-property: border-color;
|
|
3806
3803
|
}
|
|
3807
3804
|
.pv-v2 .pv-card:hover, .pv-v2 .pv-card:focus-visible {
|
|
3808
3805
|
border-color: var(--card-hover-border-color, #E3E7EA);
|
|
@@ -3845,7 +3842,7 @@
|
|
|
3845
3842
|
font-weight: inherit;
|
|
3846
3843
|
transition-duration: 0.125s;
|
|
3847
3844
|
transition-timing-function: ease-in;
|
|
3848
|
-
transition-property:
|
|
3845
|
+
transition-property: box-shadow, color;
|
|
3849
3846
|
}
|
|
3850
3847
|
.pv-v2 .pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-v2 .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
3851
3848
|
.pv-v2 .pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
@@ -3872,6 +3869,24 @@
|
|
|
3872
3869
|
.pv-v2 .pv-card-secondary:is(button) {
|
|
3873
3870
|
background-color: var(--card-secondary-background-color, #F7F8F8);
|
|
3874
3871
|
}
|
|
3872
|
+
.pv-v2 .pv-card-hover-action {
|
|
3873
|
+
border-radius: var(--card-hover-action-radius, 8px);
|
|
3874
|
+
border-color: var(--card-background-color, #FFFFFF);
|
|
3875
|
+
}
|
|
3876
|
+
.pv-v2 .pv-card-hover-action:hover, .pv-v2 .pv-card-hover-action:focus-visible {
|
|
3877
|
+
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
3878
|
+
border-color: var(--card-hover-background-color, #E8F2F4);
|
|
3879
|
+
}
|
|
3880
|
+
.pv-v2 .pv-card-hover-action-secondary {
|
|
3881
|
+
background-color: var(--color-background-accent, #F7F8F8);
|
|
3882
|
+
border-color: var(--color-background-accent, #F7F8F8);
|
|
3883
|
+
}
|
|
3884
|
+
.pv-v2 .pv-card-hover-action__action.pv-flex {
|
|
3885
|
+
display: none;
|
|
3886
|
+
}
|
|
3887
|
+
.pv-v2 .pv-card-hover-action:hover .pv-card-hover-action__action.pv-flex {
|
|
3888
|
+
display: flex;
|
|
3889
|
+
}
|
|
3875
3890
|
.pv-v2 .pv-card-select {
|
|
3876
3891
|
--unselected: "Apply to Table";
|
|
3877
3892
|
--selected: "Applied";
|
|
@@ -3895,14 +3910,12 @@
|
|
|
3895
3910
|
flex-direction: column;
|
|
3896
3911
|
transition-duration: 0.125s;
|
|
3897
3912
|
transition-timing-function: ease-in;
|
|
3898
|
-
transition-property:
|
|
3913
|
+
transition-property: color;
|
|
3899
3914
|
}
|
|
3900
3915
|
.pv-v2 .pv-card-select > label > :first-child {
|
|
3901
3916
|
flex: 1;
|
|
3902
3917
|
border-bottom: 1px solid #E3E7EA;
|
|
3903
3918
|
transition-duration: 0.125s;
|
|
3904
|
-
transition-timing-function: ease-in;
|
|
3905
|
-
transition-property: border-color;
|
|
3906
3919
|
}
|
|
3907
3920
|
.pv-v2 .pv-card-select > label > :last-child {
|
|
3908
3921
|
padding: 1rem 1.5rem;
|
|
@@ -3332,7 +3332,7 @@ button.pv-tag-secondary:active {
|
|
|
3332
3332
|
}
|
|
3333
3333
|
|
|
3334
3334
|
[class*=pv-modal] {
|
|
3335
|
-
--max-height:
|
|
3335
|
+
--max-height: 100%;
|
|
3336
3336
|
--max-width: 100%;
|
|
3337
3337
|
--top: 2rem;
|
|
3338
3338
|
border: none;
|
|
@@ -4165,9 +4165,6 @@ pv-header [slot=left] h3.pv-heading-3 {
|
|
|
4165
4165
|
border-radius: var(--card-radius, 8px);
|
|
4166
4166
|
background-color: var(--card-background-color, #FFFFFF);
|
|
4167
4167
|
overflow: clip;
|
|
4168
|
-
transition-duration: 0.125s;
|
|
4169
|
-
transition-timing-function: ease-in;
|
|
4170
|
-
transition-property: border-color;
|
|
4171
4168
|
}
|
|
4172
4169
|
.pv-card:hover, .pv-card:focus-visible {
|
|
4173
4170
|
border-color: var(--card-hover-border-color, #E3E7EA);
|
|
@@ -4215,7 +4212,7 @@ pv-header [slot=left] h3.pv-heading-3 {
|
|
|
4215
4212
|
font-weight: inherit;
|
|
4216
4213
|
transition-duration: 0.125s;
|
|
4217
4214
|
transition-timing-function: ease-in;
|
|
4218
|
-
transition-property:
|
|
4215
|
+
transition-property: box-shadow, color;
|
|
4219
4216
|
}
|
|
4220
4217
|
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
4221
4218
|
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
@@ -4247,6 +4244,28 @@ pv-header [slot=left] h3.pv-heading-3 {
|
|
|
4247
4244
|
background-color: var(--card-secondary-background-color, #F7F8F8);
|
|
4248
4245
|
}
|
|
4249
4246
|
|
|
4247
|
+
.pv-card-hover-action {
|
|
4248
|
+
border-radius: var(--card-hover-action-radius, 8px);
|
|
4249
|
+
border-color: var(--card-background-color, #FFFFFF);
|
|
4250
|
+
}
|
|
4251
|
+
.pv-card-hover-action:hover, .pv-card-hover-action:focus-visible {
|
|
4252
|
+
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
4253
|
+
border-color: var(--card-hover-background-color, #E8F2F4);
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
.pv-card-hover-action-secondary {
|
|
4257
|
+
background-color: var(--color-background-accent, #F7F8F8);
|
|
4258
|
+
border-color: var(--color-background-accent, #F7F8F8);
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
.pv-card-hover-action__action.pv-flex {
|
|
4262
|
+
display: none;
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
.pv-card-hover-action:hover .pv-card-hover-action__action.pv-flex {
|
|
4266
|
+
display: flex;
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4250
4269
|
.pv-card-select {
|
|
4251
4270
|
--unselected: "Apply to Table";
|
|
4252
4271
|
--selected: "Applied";
|
|
@@ -4270,14 +4289,12 @@ pv-header [slot=left] h3.pv-heading-3 {
|
|
|
4270
4289
|
flex-direction: column;
|
|
4271
4290
|
transition-duration: 0.125s;
|
|
4272
4291
|
transition-timing-function: ease-in;
|
|
4273
|
-
transition-property:
|
|
4292
|
+
transition-property: color;
|
|
4274
4293
|
}
|
|
4275
4294
|
.pv-card-select > label > :first-child {
|
|
4276
4295
|
flex: 1;
|
|
4277
4296
|
border-bottom: 1px solid #E3E7EA;
|
|
4278
4297
|
transition-duration: 0.125s;
|
|
4279
|
-
transition-timing-function: ease-in;
|
|
4280
|
-
transition-property: border-color;
|
|
4281
4298
|
}
|
|
4282
4299
|
.pv-card-select > label > :last-child {
|
|
4283
4300
|
padding: 1rem 1.5rem;
|
|
@@ -5547,7 +5564,7 @@ pv-sidebar {
|
|
|
5547
5564
|
overflow: auto;
|
|
5548
5565
|
color: #121313;
|
|
5549
5566
|
background-color: #FFFFFF;
|
|
5550
|
-
box-shadow:
|
|
5567
|
+
box-shadow: 8px 0px 32px -8px rgba(0, 0, 0, 0.24);
|
|
5551
5568
|
transition: opacity 0.125s, transform 0.125s;
|
|
5552
5569
|
}
|
|
5553
5570
|
@starting-style {
|
|
@@ -3337,7 +3337,7 @@ button.pv-tag-secondary:active {
|
|
|
3337
3337
|
}
|
|
3338
3338
|
|
|
3339
3339
|
[class*=pv-modal] {
|
|
3340
|
-
--max-height:
|
|
3340
|
+
--max-height: 100%;
|
|
3341
3341
|
--max-width: 100%;
|
|
3342
3342
|
--top: 2rem;
|
|
3343
3343
|
border: none;
|
|
@@ -4150,9 +4150,6 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4150
4150
|
border-radius: var(--card-radius, 5px);
|
|
4151
4151
|
background-color: var(--card-background-color, #FFFFFF);
|
|
4152
4152
|
overflow: clip;
|
|
4153
|
-
transition-duration: 0.125s;
|
|
4154
|
-
transition-timing-function: ease-in;
|
|
4155
|
-
transition-property: border-color;
|
|
4156
4153
|
}
|
|
4157
4154
|
.pv-card:hover, .pv-card:focus-visible {
|
|
4158
4155
|
border-color: var(--card-hover-border-color, #176F6F);
|
|
@@ -4200,7 +4197,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4200
4197
|
font-weight: inherit;
|
|
4201
4198
|
transition-duration: 0.125s;
|
|
4202
4199
|
transition-timing-function: ease-in;
|
|
4203
|
-
transition-property:
|
|
4200
|
+
transition-property: box-shadow, color;
|
|
4204
4201
|
}
|
|
4205
4202
|
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
4206
4203
|
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
@@ -4230,6 +4227,28 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4230
4227
|
background-color: var(--card-secondary-background-color, #F8F8FA);
|
|
4231
4228
|
}
|
|
4232
4229
|
|
|
4230
|
+
.pv-card-hover-action {
|
|
4231
|
+
border-radius: var(--card-hover-action-radius, 8px);
|
|
4232
|
+
border-color: var(--card-background-color, #FFFFFF);
|
|
4233
|
+
}
|
|
4234
|
+
.pv-card-hover-action:hover, .pv-card-hover-action:focus-visible {
|
|
4235
|
+
background-color: var(--card-hover-background-color, #FFFFFF);
|
|
4236
|
+
border-color: var(--card-hover-background-color, #FFFFFF);
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
.pv-card-hover-action-secondary {
|
|
4240
|
+
background-color: var(--color-background-accent, #F8F8FA);
|
|
4241
|
+
border-color: var(--color-background-accent, #F8F8FA);
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4244
|
+
.pv-card-hover-action__action.pv-flex {
|
|
4245
|
+
display: none;
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
.pv-card-hover-action:hover .pv-card-hover-action__action.pv-flex {
|
|
4249
|
+
display: flex;
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4233
4252
|
.pv-card-select {
|
|
4234
4253
|
--unselected: "Apply to Table";
|
|
4235
4254
|
--selected: "Applied";
|
|
@@ -4253,14 +4272,12 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4253
4272
|
flex-direction: column;
|
|
4254
4273
|
transition-duration: 0.125s;
|
|
4255
4274
|
transition-timing-function: ease-in;
|
|
4256
|
-
transition-property:
|
|
4275
|
+
transition-property: color;
|
|
4257
4276
|
}
|
|
4258
4277
|
.pv-card-select > label > :first-child {
|
|
4259
4278
|
flex: 1;
|
|
4260
4279
|
border-bottom: 1px solid #DCDFE4;
|
|
4261
4280
|
transition-duration: 0.125s;
|
|
4262
|
-
transition-timing-function: ease-in;
|
|
4263
|
-
transition-property: border-color;
|
|
4264
4281
|
}
|
|
4265
4282
|
.pv-card-select > label > :last-child {
|
|
4266
4283
|
padding: 1rem 1.5rem;
|