@policystudio/policy-studio-ui-vue 1.0.22 → 1.0.23
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/css/psui_styles.css +1008 -60
- package/package.json +5 -3
- package/src/assets/scss/base.scss +6 -0
- package/src/assets/scss/components/PsAccordion.scss +63 -0
- package/src/assets/scss/components/PsButton.scss +145 -0
- package/src/assets/scss/components/PsInput.scss +48 -33
- package/src/components/accordion/PsAccordion.vue +28 -23
- package/src/components/accordion/PsAccordionItem.vue +29 -67
- package/src/components/badges-and-tags/PsCardInfos.vue +38 -0
- package/src/components/badges-and-tags/PsChartLegend.vue +17 -102
- package/src/components/buttons/PsButton.vue +42 -94
- package/src/components/controls/PsToggle.vue +1 -1
- package/src/components/forms/PsInput.vue +1 -1
- package/src/components/notifications/PsDialog.vue +1 -1
- package/src/components/tabs/PsTabHeader.vue +3 -2
- package/src/index.js +6 -0
- package/src/stories/Accordion.stories.js +70 -16
- package/src/stories/Button.stories.js +83 -35
- package/src/stories/CardInfos.stories.js +16 -0
- package/src/stories/Input.stories.js +36 -15
- package/tailwind.config.js +3 -2
package/dist/css/psui_styles.css
CHANGED
|
@@ -1344,6 +1344,10 @@ video {
|
|
|
1344
1344
|
border-color: rgba(146, 120, 201, var(--divide-opacity));
|
|
1345
1345
|
}
|
|
1346
1346
|
|
|
1347
|
+
.psui-divide-transparent > :not(template) ~ :not(template){
|
|
1348
|
+
border-color: transparent;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1347
1351
|
.psui-divide-solid > :not(template) ~ :not(template){
|
|
1348
1352
|
border-style: solid;
|
|
1349
1353
|
}
|
|
@@ -1685,6 +1689,10 @@ video {
|
|
|
1685
1689
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
1686
1690
|
}
|
|
1687
1691
|
|
|
1692
|
+
.psui-bg-transparent{
|
|
1693
|
+
background-color: transparent;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1688
1696
|
.hover\:psui-bg-white:hover{
|
|
1689
1697
|
background-color: #ffffff !important;
|
|
1690
1698
|
}
|
|
@@ -1893,6 +1901,10 @@ video {
|
|
|
1893
1901
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
1894
1902
|
}
|
|
1895
1903
|
|
|
1904
|
+
.hover\:psui-bg-transparent:hover{
|
|
1905
|
+
background-color: transparent;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1896
1908
|
.active\:psui-bg-white:active{
|
|
1897
1909
|
background-color: #ffffff !important;
|
|
1898
1910
|
}
|
|
@@ -2101,6 +2113,10 @@ video {
|
|
|
2101
2113
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
2102
2114
|
}
|
|
2103
2115
|
|
|
2116
|
+
.active\:psui-bg-transparent:active{
|
|
2117
|
+
background-color: transparent;
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2104
2120
|
.focus\:psui-bg-white:focus{
|
|
2105
2121
|
background-color: #ffffff !important;
|
|
2106
2122
|
}
|
|
@@ -2309,6 +2325,10 @@ video {
|
|
|
2309
2325
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
2310
2326
|
}
|
|
2311
2327
|
|
|
2328
|
+
.focus\:psui-bg-transparent:focus{
|
|
2329
|
+
background-color: transparent;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2312
2332
|
.psui-group:hover .group-hover\:psui-bg-white{
|
|
2313
2333
|
background-color: #ffffff !important;
|
|
2314
2334
|
}
|
|
@@ -2517,6 +2537,10 @@ video {
|
|
|
2517
2537
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
2518
2538
|
}
|
|
2519
2539
|
|
|
2540
|
+
.psui-group:hover .group-hover\:psui-bg-transparent{
|
|
2541
|
+
background-color: transparent;
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2520
2544
|
.even\:psui-bg-white:nth-child(even){
|
|
2521
2545
|
background-color: #ffffff !important;
|
|
2522
2546
|
}
|
|
@@ -2725,6 +2749,10 @@ video {
|
|
|
2725
2749
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
2726
2750
|
}
|
|
2727
2751
|
|
|
2752
|
+
.even\:psui-bg-transparent:nth-child(even){
|
|
2753
|
+
background-color: transparent;
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2728
2756
|
.first\:psui-bg-white:first-child{
|
|
2729
2757
|
background-color: #ffffff !important;
|
|
2730
2758
|
}
|
|
@@ -2933,6 +2961,10 @@ video {
|
|
|
2933
2961
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
2934
2962
|
}
|
|
2935
2963
|
|
|
2964
|
+
.first\:psui-bg-transparent:first-child{
|
|
2965
|
+
background-color: transparent;
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2936
2968
|
.disabled\:psui-bg-white:disabled{
|
|
2937
2969
|
background-color: #ffffff !important;
|
|
2938
2970
|
}
|
|
@@ -3141,6 +3173,10 @@ video {
|
|
|
3141
3173
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
3142
3174
|
}
|
|
3143
3175
|
|
|
3176
|
+
.disabled\:psui-bg-transparent:disabled{
|
|
3177
|
+
background-color: transparent;
|
|
3178
|
+
}
|
|
3179
|
+
|
|
3144
3180
|
.psui-bg-none{
|
|
3145
3181
|
background-image: none;
|
|
3146
3182
|
}
|
|
@@ -3352,6 +3388,11 @@ video {
|
|
|
3352
3388
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
3353
3389
|
}
|
|
3354
3390
|
|
|
3391
|
+
.psui-from-transparent{
|
|
3392
|
+
--gradient-from-color: transparent;
|
|
3393
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3355
3396
|
.psui-via-white{
|
|
3356
3397
|
--gradient-via-color: #ffffff !important;
|
|
3357
3398
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -3527,6 +3568,11 @@ video {
|
|
|
3527
3568
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
3528
3569
|
}
|
|
3529
3570
|
|
|
3571
|
+
.psui-via-transparent{
|
|
3572
|
+
--gradient-via-color: transparent;
|
|
3573
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3530
3576
|
.psui-to-white{
|
|
3531
3577
|
--gradient-to-color: #ffffff !important;
|
|
3532
3578
|
}
|
|
@@ -3667,6 +3713,10 @@ video {
|
|
|
3667
3713
|
--gradient-to-color: #9278C9;
|
|
3668
3714
|
}
|
|
3669
3715
|
|
|
3716
|
+
.psui-to-transparent{
|
|
3717
|
+
--gradient-to-color: transparent;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3670
3720
|
.hover\:psui-from-white:hover{
|
|
3671
3721
|
--gradient-from-color: #ffffff !important;
|
|
3672
3722
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -3842,6 +3892,11 @@ video {
|
|
|
3842
3892
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
3843
3893
|
}
|
|
3844
3894
|
|
|
3895
|
+
.hover\:psui-from-transparent:hover{
|
|
3896
|
+
--gradient-from-color: transparent;
|
|
3897
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3845
3900
|
.hover\:psui-via-white:hover{
|
|
3846
3901
|
--gradient-via-color: #ffffff !important;
|
|
3847
3902
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -4017,6 +4072,11 @@ video {
|
|
|
4017
4072
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
4018
4073
|
}
|
|
4019
4074
|
|
|
4075
|
+
.hover\:psui-via-transparent:hover{
|
|
4076
|
+
--gradient-via-color: transparent;
|
|
4077
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4020
4080
|
.hover\:psui-to-white:hover{
|
|
4021
4081
|
--gradient-to-color: #ffffff !important;
|
|
4022
4082
|
}
|
|
@@ -4157,6 +4217,10 @@ video {
|
|
|
4157
4217
|
--gradient-to-color: #9278C9;
|
|
4158
4218
|
}
|
|
4159
4219
|
|
|
4220
|
+
.hover\:psui-to-transparent:hover{
|
|
4221
|
+
--gradient-to-color: transparent;
|
|
4222
|
+
}
|
|
4223
|
+
|
|
4160
4224
|
.focus\:psui-from-white:focus{
|
|
4161
4225
|
--gradient-from-color: #ffffff !important;
|
|
4162
4226
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -4332,6 +4396,11 @@ video {
|
|
|
4332
4396
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
4333
4397
|
}
|
|
4334
4398
|
|
|
4399
|
+
.focus\:psui-from-transparent:focus{
|
|
4400
|
+
--gradient-from-color: transparent;
|
|
4401
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4335
4404
|
.focus\:psui-via-white:focus{
|
|
4336
4405
|
--gradient-via-color: #ffffff !important;
|
|
4337
4406
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -4507,6 +4576,11 @@ video {
|
|
|
4507
4576
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
4508
4577
|
}
|
|
4509
4578
|
|
|
4579
|
+
.focus\:psui-via-transparent:focus{
|
|
4580
|
+
--gradient-via-color: transparent;
|
|
4581
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4510
4584
|
.focus\:psui-to-white:focus{
|
|
4511
4585
|
--gradient-to-color: #ffffff !important;
|
|
4512
4586
|
}
|
|
@@ -4647,6 +4721,10 @@ video {
|
|
|
4647
4721
|
--gradient-to-color: #9278C9;
|
|
4648
4722
|
}
|
|
4649
4723
|
|
|
4724
|
+
.focus\:psui-to-transparent:focus{
|
|
4725
|
+
--gradient-to-color: transparent;
|
|
4726
|
+
}
|
|
4727
|
+
|
|
4650
4728
|
.psui-bg-opacity-0{
|
|
4651
4729
|
--bg-opacity: 0;
|
|
4652
4730
|
}
|
|
@@ -4995,6 +5073,10 @@ video {
|
|
|
4995
5073
|
border-color: rgba(146, 120, 201, var(--border-opacity));
|
|
4996
5074
|
}
|
|
4997
5075
|
|
|
5076
|
+
.psui-border-transparent{
|
|
5077
|
+
border-color: transparent;
|
|
5078
|
+
}
|
|
5079
|
+
|
|
4998
5080
|
.psui-border-DEFAULT{
|
|
4999
5081
|
--border-opacity: 1;
|
|
5000
5082
|
border-color: #00465F;
|
|
@@ -5209,6 +5291,10 @@ video {
|
|
|
5209
5291
|
border-color: rgba(146, 120, 201, var(--border-opacity));
|
|
5210
5292
|
}
|
|
5211
5293
|
|
|
5294
|
+
.disabled\:psui-border-transparent:disabled{
|
|
5295
|
+
border-color: transparent;
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5212
5298
|
.disabled\:psui-border-DEFAULT:disabled{
|
|
5213
5299
|
--border-opacity: 1;
|
|
5214
5300
|
border-color: #00465F;
|
|
@@ -9954,6 +10040,18 @@ video {
|
|
|
9954
10040
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
9955
10041
|
}
|
|
9956
10042
|
|
|
10043
|
+
.psui-placeholder-transparent::-moz-placeholder{
|
|
10044
|
+
color: transparent;
|
|
10045
|
+
}
|
|
10046
|
+
|
|
10047
|
+
.psui-placeholder-transparent:-ms-input-placeholder{
|
|
10048
|
+
color: transparent;
|
|
10049
|
+
}
|
|
10050
|
+
|
|
10051
|
+
.psui-placeholder-transparent::placeholder{
|
|
10052
|
+
color: transparent;
|
|
10053
|
+
}
|
|
10054
|
+
|
|
9957
10055
|
.focus\:psui-placeholder-white:focus::-moz-placeholder{
|
|
9958
10056
|
color: #ffffff !important;
|
|
9959
10057
|
}
|
|
@@ -10578,6 +10676,18 @@ video {
|
|
|
10578
10676
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
10579
10677
|
}
|
|
10580
10678
|
|
|
10679
|
+
.focus\:psui-placeholder-transparent:focus::-moz-placeholder{
|
|
10680
|
+
color: transparent;
|
|
10681
|
+
}
|
|
10682
|
+
|
|
10683
|
+
.focus\:psui-placeholder-transparent:focus:-ms-input-placeholder{
|
|
10684
|
+
color: transparent;
|
|
10685
|
+
}
|
|
10686
|
+
|
|
10687
|
+
.focus\:psui-placeholder-transparent:focus::placeholder{
|
|
10688
|
+
color: transparent;
|
|
10689
|
+
}
|
|
10690
|
+
|
|
10581
10691
|
.psui-placeholder-opacity-0::-moz-placeholder{
|
|
10582
10692
|
--placeholder-opacity: 0;
|
|
10583
10693
|
}
|
|
@@ -11165,6 +11275,10 @@ video {
|
|
|
11165
11275
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
11166
11276
|
}
|
|
11167
11277
|
|
|
11278
|
+
.psui-text-transparent{
|
|
11279
|
+
color: transparent;
|
|
11280
|
+
}
|
|
11281
|
+
|
|
11168
11282
|
.hover\:psui-text-white:hover{
|
|
11169
11283
|
color: #ffffff !important;
|
|
11170
11284
|
}
|
|
@@ -11373,6 +11487,10 @@ video {
|
|
|
11373
11487
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
11374
11488
|
}
|
|
11375
11489
|
|
|
11490
|
+
.hover\:psui-text-transparent:hover{
|
|
11491
|
+
color: transparent;
|
|
11492
|
+
}
|
|
11493
|
+
|
|
11376
11494
|
.active\:psui-text-white:active{
|
|
11377
11495
|
color: #ffffff !important;
|
|
11378
11496
|
}
|
|
@@ -11581,6 +11699,10 @@ video {
|
|
|
11581
11699
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
11582
11700
|
}
|
|
11583
11701
|
|
|
11702
|
+
.active\:psui-text-transparent:active{
|
|
11703
|
+
color: transparent;
|
|
11704
|
+
}
|
|
11705
|
+
|
|
11584
11706
|
.focus\:psui-text-white:focus{
|
|
11585
11707
|
color: #ffffff !important;
|
|
11586
11708
|
}
|
|
@@ -11789,6 +11911,10 @@ video {
|
|
|
11789
11911
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
11790
11912
|
}
|
|
11791
11913
|
|
|
11914
|
+
.focus\:psui-text-transparent:focus{
|
|
11915
|
+
color: transparent;
|
|
11916
|
+
}
|
|
11917
|
+
|
|
11792
11918
|
.psui-group:hover .group-hover\:psui-text-white{
|
|
11793
11919
|
color: #ffffff !important;
|
|
11794
11920
|
}
|
|
@@ -11997,6 +12123,10 @@ video {
|
|
|
11997
12123
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
11998
12124
|
}
|
|
11999
12125
|
|
|
12126
|
+
.psui-group:hover .group-hover\:psui-text-transparent{
|
|
12127
|
+
color: transparent;
|
|
12128
|
+
}
|
|
12129
|
+
|
|
12000
12130
|
.first\:psui-text-white:first-child{
|
|
12001
12131
|
color: #ffffff !important;
|
|
12002
12132
|
}
|
|
@@ -12205,6 +12335,10 @@ video {
|
|
|
12205
12335
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
12206
12336
|
}
|
|
12207
12337
|
|
|
12338
|
+
.first\:psui-text-transparent:first-child{
|
|
12339
|
+
color: transparent;
|
|
12340
|
+
}
|
|
12341
|
+
|
|
12208
12342
|
.disabled\:psui-text-white:disabled{
|
|
12209
12343
|
color: #ffffff !important;
|
|
12210
12344
|
}
|
|
@@ -12413,6 +12547,10 @@ video {
|
|
|
12413
12547
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
12414
12548
|
}
|
|
12415
12549
|
|
|
12550
|
+
.disabled\:psui-text-transparent:disabled{
|
|
12551
|
+
color: transparent;
|
|
12552
|
+
}
|
|
12553
|
+
|
|
12416
12554
|
.psui-text-opacity-0{
|
|
12417
12555
|
--text-opacity: 0;
|
|
12418
12556
|
}
|
|
@@ -15934,6 +16072,73 @@ video {
|
|
|
15934
16072
|
animation: bounce 1s infinite;
|
|
15935
16073
|
}
|
|
15936
16074
|
|
|
16075
|
+
*:focus {
|
|
16076
|
+
outline: none;
|
|
16077
|
+
}
|
|
16078
|
+
|
|
16079
|
+
html {
|
|
16080
|
+
-webkit-font-smoothing: antialiased;
|
|
16081
|
+
-moz-osx-font-smoothing: grayscale;
|
|
16082
|
+
}
|
|
16083
|
+
|
|
16084
|
+
.psui-el-accordion-item {
|
|
16085
|
+
border-bottom: 1px solid #e6ecf2;
|
|
16086
|
+
}
|
|
16087
|
+
|
|
16088
|
+
.psui-el-accordion-item-header {
|
|
16089
|
+
display: flex;
|
|
16090
|
+
cursor: pointer;
|
|
16091
|
+
transition-property: all;
|
|
16092
|
+
justify-content: space-between;
|
|
16093
|
+
transition: cubic-bezier(.17,.67,.83,.67) 250ms;
|
|
16094
|
+
padding-top: 16px;
|
|
16095
|
+
padding-bottom: 16px;
|
|
16096
|
+
}
|
|
16097
|
+
|
|
16098
|
+
.psui-el-accordion-item-header:hover {
|
|
16099
|
+
--text-opacity: 1;
|
|
16100
|
+
color: #318FAC;
|
|
16101
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16102
|
+
}
|
|
16103
|
+
|
|
16104
|
+
.psui-el-accordion-item-content {
|
|
16105
|
+
padding-bottom: 24px;
|
|
16106
|
+
}
|
|
16107
|
+
|
|
16108
|
+
.psui-el-accordion-item-icon {
|
|
16109
|
+
font-size: 20px;
|
|
16110
|
+
width: 20px;
|
|
16111
|
+
}
|
|
16112
|
+
|
|
16113
|
+
.psui-el-accordion.layout-big .psui-el-accordion-item-header, .psui-el-accordion.layout-big .psui-el-accordion-item-content {
|
|
16114
|
+
padding-left: 16px;
|
|
16115
|
+
padding-right: 16px;
|
|
16116
|
+
}
|
|
16117
|
+
|
|
16118
|
+
.psui-el-accordion.layout-big .psui-el-accordion-item-title {
|
|
16119
|
+
font-size: 18px;
|
|
16120
|
+
line-height: 120%;
|
|
16121
|
+
font-weight: 700;
|
|
16122
|
+
}
|
|
16123
|
+
|
|
16124
|
+
.psui-el-accordion.layout-big .psui-el-accordion-item-icon {
|
|
16125
|
+
--text-opacity: 1;
|
|
16126
|
+
color: #D6DDE5;
|
|
16127
|
+
color: rgba(214, 221, 229, var(--text-opacity))
|
|
16128
|
+
}
|
|
16129
|
+
|
|
16130
|
+
.psui-el-accordion.layout-medium .psui-el-accordion-item-title {
|
|
16131
|
+
font-size: 14px;
|
|
16132
|
+
line-height: 130%;
|
|
16133
|
+
font-weight: 700;
|
|
16134
|
+
}
|
|
16135
|
+
|
|
16136
|
+
.psui-el-accordion .psui-el-accordion-item.status-opened .psui-el-accordion-item-icon, .psui-el-accordion .psui-el-accordion-item-header:hover .psui-el-accordion-item-icon {
|
|
16137
|
+
--text-opacity: 1;
|
|
16138
|
+
color: #318FAC;
|
|
16139
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16140
|
+
}
|
|
16141
|
+
|
|
15937
16142
|
.psui-el-input {
|
|
15938
16143
|
/* Layout Default */
|
|
15939
16144
|
/* ----------------------------------------- Layout Default */
|
|
@@ -15941,21 +16146,7 @@ video {
|
|
|
15941
16146
|
/* ----------------------------------------- Layout Mini */
|
|
15942
16147
|
}
|
|
15943
16148
|
|
|
15944
|
-
.psui-el-input input {
|
|
15945
|
-
width: 100%;
|
|
15946
|
-
border-width: 1px;
|
|
15947
|
-
--border-opacity: 1;
|
|
15948
|
-
border-color: #D6DDE5;
|
|
15949
|
-
border-color: rgba(214, 221, 229, var(--border-opacity));
|
|
15950
|
-
border-radius: 0.375rem;
|
|
15951
|
-
display: block
|
|
15952
|
-
}
|
|
15953
|
-
|
|
15954
16149
|
.psui-el-input-prepend {
|
|
15955
|
-
position: absolute;
|
|
15956
|
-
top: 0;
|
|
15957
|
-
bottom: 0;
|
|
15958
|
-
left: 0;
|
|
15959
16150
|
padding-left: 0.5rem;
|
|
15960
16151
|
display: flex;
|
|
15961
16152
|
align-items: center;
|
|
@@ -15963,10 +16154,6 @@ video {
|
|
|
15963
16154
|
}
|
|
15964
16155
|
|
|
15965
16156
|
.psui-el-input-append {
|
|
15966
|
-
position: absolute;
|
|
15967
|
-
top: 0;
|
|
15968
|
-
bottom: 0;
|
|
15969
|
-
right: 0;
|
|
15970
16157
|
padding-right: 0.5rem;
|
|
15971
16158
|
display: flex;
|
|
15972
16159
|
align-items: center
|
|
@@ -15977,19 +16164,23 @@ video {
|
|
|
15977
16164
|
color: #798490;
|
|
15978
16165
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
15979
16166
|
font-size: 12px;
|
|
15980
|
-
line-height: 130
|
|
16167
|
+
line-height: 130%;
|
|
16168
|
+
margin-top: 0.25rem
|
|
15981
16169
|
}
|
|
15982
16170
|
|
|
15983
16171
|
.psui-el-input-wrapper {
|
|
15984
16172
|
position: relative;
|
|
16173
|
+
width: 100%;
|
|
16174
|
+
border-width: 1px;
|
|
16175
|
+
--border-opacity: 1;
|
|
16176
|
+
border-color: #D6DDE5;
|
|
16177
|
+
border-color: rgba(214, 221, 229, var(--border-opacity));
|
|
16178
|
+
border-radius: 0.375rem;
|
|
16179
|
+
background-color: #ffffff;
|
|
16180
|
+
display: flex;
|
|
16181
|
+
transition: cubic-bezier(.17,.67,.83,.67) 250ms
|
|
15985
16182
|
}
|
|
15986
16183
|
|
|
15987
|
-
.psui-el-input-wrapper.hover input {
|
|
15988
|
-
--border-opacity: 1;
|
|
15989
|
-
border-color: #64B5CE;
|
|
15990
|
-
border-color: rgba(100, 181, 206, var(--border-opacity))
|
|
15991
|
-
}
|
|
15992
|
-
|
|
15993
16184
|
.psui-el-input label {
|
|
15994
16185
|
font-weight: 700;
|
|
15995
16186
|
--text-opacity: 1;
|
|
@@ -16001,9 +16192,47 @@ video {
|
|
|
16001
16192
|
background-color: #ffffff;
|
|
16002
16193
|
--text-opacity: 1;
|
|
16003
16194
|
color: #515E6A;
|
|
16004
|
-
color: rgba(81, 94, 106, var(--text-opacity))
|
|
16195
|
+
color: rgba(81, 94, 106, var(--text-opacity));
|
|
16196
|
+
width: 100%;
|
|
16197
|
+
border-radius: 0.375rem
|
|
16005
16198
|
}
|
|
16006
16199
|
|
|
16200
|
+
.psui-el-input.status-error .psui-el-input-wrapper {
|
|
16201
|
+
--border-opacity: 1;
|
|
16202
|
+
border-color: #D65C5A;
|
|
16203
|
+
border-color: rgba(214, 92, 90, var(--border-opacity))
|
|
16204
|
+
}
|
|
16205
|
+
|
|
16206
|
+
.psui-el-input.status-error .psui-el-input-hint {
|
|
16207
|
+
--text-opacity: 1;
|
|
16208
|
+
color: #D65C5A;
|
|
16209
|
+
color: rgba(214, 92, 90, var(--text-opacity))
|
|
16210
|
+
}
|
|
16211
|
+
|
|
16212
|
+
.psui-el-input.status-disabled .psui-el-input-wrapper {
|
|
16213
|
+
--bg-opacity: 1;
|
|
16214
|
+
background-color: #E6ECF2;
|
|
16215
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
16216
|
+
--border-opacity: 1;
|
|
16217
|
+
border-color: #E6ECF2;
|
|
16218
|
+
border-color: rgba(230, 236, 242, var(--border-opacity))
|
|
16219
|
+
}
|
|
16220
|
+
|
|
16221
|
+
.psui-el-input.status-disabled input {
|
|
16222
|
+
--bg-opacity: 1;
|
|
16223
|
+
background-color: #E6ECF2;
|
|
16224
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
16225
|
+
--text-opacity: 1;
|
|
16226
|
+
color: #A2ACB7;
|
|
16227
|
+
color: rgba(162, 172, 183, var(--text-opacity))
|
|
16228
|
+
}
|
|
16229
|
+
|
|
16230
|
+
.psui-el-input.status-disabled label {
|
|
16231
|
+
--text-opacity: 1;
|
|
16232
|
+
color: #A2ACB7;
|
|
16233
|
+
color: rgba(162, 172, 183, var(--text-opacity))
|
|
16234
|
+
}
|
|
16235
|
+
|
|
16007
16236
|
/* ----------------------------------------- */
|
|
16008
16237
|
|
|
16009
16238
|
.psui-el-input.layout-default input {
|
|
@@ -16012,57 +16241,256 @@ video {
|
|
|
16012
16241
|
padding: 11.5px 16px;
|
|
16013
16242
|
}
|
|
16014
16243
|
|
|
16015
|
-
.psui-el-input.layout-default.status-
|
|
16244
|
+
.psui-el-input.layout-default.status-resting .psui-el-input-wrapper.hover {
|
|
16245
|
+
--border-opacity: 1;
|
|
16246
|
+
border-color: #64B5CE;
|
|
16247
|
+
border-color: rgba(100, 181, 206, var(--border-opacity))
|
|
16248
|
+
}
|
|
16249
|
+
|
|
16250
|
+
.psui-el-input.layout-default.status-active .psui-el-input-wrapper {
|
|
16016
16251
|
--border-opacity: 1;
|
|
16017
16252
|
border-color: #318FAC;
|
|
16018
16253
|
border-color: rgba(49, 143, 172, var(--border-opacity))
|
|
16019
16254
|
}
|
|
16020
16255
|
|
|
16021
|
-
|
|
16256
|
+
/* ----------------------------------------- */
|
|
16257
|
+
|
|
16258
|
+
.psui-el-input.layout-mini input {
|
|
16259
|
+
font-size: 14px;
|
|
16260
|
+
line-height: 130%;
|
|
16261
|
+
padding: 7px 8px;
|
|
16262
|
+
}
|
|
16263
|
+
|
|
16264
|
+
.psui-el-input.layout-mini.status-resting .psui-el-input-wrapper.hover {
|
|
16022
16265
|
--border-opacity: 1;
|
|
16023
|
-
border-color: #
|
|
16024
|
-
border-color: rgba(
|
|
16266
|
+
border-color: #5DB883;
|
|
16267
|
+
border-color: rgba(93, 184, 131, var(--border-opacity))
|
|
16025
16268
|
}
|
|
16026
16269
|
|
|
16027
|
-
.psui-el-input.layout-
|
|
16028
|
-
--
|
|
16029
|
-
color: #
|
|
16030
|
-
color: rgba(
|
|
16270
|
+
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper {
|
|
16271
|
+
--border-opacity: 1;
|
|
16272
|
+
border-color: #5DB883;
|
|
16273
|
+
border-color: rgba(93, 184, 131, var(--border-opacity));
|
|
16031
16274
|
}
|
|
16032
16275
|
|
|
16033
|
-
.psui-el-input.layout-
|
|
16034
|
-
|
|
16035
|
-
|
|
16036
|
-
|
|
16037
|
-
|
|
16038
|
-
|
|
16039
|
-
|
|
16040
|
-
|
|
16041
|
-
|
|
16042
|
-
|
|
16276
|
+
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper input {
|
|
16277
|
+
--text-opacity: 1;
|
|
16278
|
+
color: #5DB883;
|
|
16279
|
+
color: rgba(93, 184, 131, var(--text-opacity));
|
|
16280
|
+
}
|
|
16281
|
+
|
|
16282
|
+
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper input.focus {
|
|
16283
|
+
--text-opacity: 1;
|
|
16284
|
+
color: #515E6A;
|
|
16285
|
+
color: rgba(81, 94, 106, var(--text-opacity))
|
|
16286
|
+
}
|
|
16287
|
+
|
|
16288
|
+
.psui-el-button {
|
|
16289
|
+
font-weight: 700;
|
|
16290
|
+
align-items: center;
|
|
16291
|
+
display: flex;
|
|
16292
|
+
align-content: center;
|
|
16293
|
+
border-radius: 0.375rem;
|
|
16294
|
+
transition: cubic-bezier(.17,.67,.83,.67) 250ms;
|
|
16295
|
+
}
|
|
16296
|
+
|
|
16297
|
+
.psui-el-button span {
|
|
16298
|
+
font-weight: 700;
|
|
16299
|
+
line-height: 130%;
|
|
16300
|
+
font-family: inherit;
|
|
16301
|
+
text-align: right;
|
|
16302
|
+
}
|
|
16303
|
+
|
|
16304
|
+
.psui-el-button:focus {
|
|
16305
|
+
outline: none;
|
|
16306
|
+
}
|
|
16307
|
+
|
|
16308
|
+
.psui-el-button.right {
|
|
16309
|
+
flex-direction: row-reverse;
|
|
16310
|
+
}
|
|
16311
|
+
|
|
16312
|
+
.psui-el-button.big {
|
|
16313
|
+
display: flex;
|
|
16314
|
+
align-items: center;
|
|
16315
|
+
align-content: center;
|
|
16316
|
+
padding: 9.5px 16px;
|
|
16317
|
+
font-size: 16px;
|
|
16318
|
+
}
|
|
16319
|
+
|
|
16320
|
+
.psui-el-button.big.left i {
|
|
16321
|
+
font-size: 24px;
|
|
16322
|
+
margin-right: 8px;
|
|
16323
|
+
}
|
|
16324
|
+
|
|
16325
|
+
.psui-el-button.big.right i {
|
|
16326
|
+
font-size: 24px;
|
|
16327
|
+
margin-left: 8px;
|
|
16328
|
+
}
|
|
16329
|
+
|
|
16330
|
+
.psui-el-button.medium {
|
|
16331
|
+
display: flex;
|
|
16332
|
+
align-items: center;
|
|
16333
|
+
align-content: center;
|
|
16334
|
+
padding: 7px 16px;
|
|
16335
|
+
font-size: 14px;
|
|
16336
|
+
}
|
|
16337
|
+
|
|
16338
|
+
.psui-el-button.medium.left i {
|
|
16339
|
+
font-size: 18px;
|
|
16340
|
+
margin-right: 4px;
|
|
16341
|
+
}
|
|
16342
|
+
|
|
16343
|
+
.psui-el-button.medium.right i {
|
|
16344
|
+
font-size: 18px;
|
|
16345
|
+
margin-left: 4px;
|
|
16346
|
+
}
|
|
16347
|
+
|
|
16348
|
+
.psui-el-button.small {
|
|
16349
|
+
display: flex;
|
|
16350
|
+
align-items: center;
|
|
16351
|
+
align-content: center;
|
|
16352
|
+
padding: 4px 8px;
|
|
16353
|
+
font-size: 14px;
|
|
16354
|
+
}
|
|
16355
|
+
|
|
16356
|
+
.psui-el-button.small.active {
|
|
16357
|
+
--bg-opacity: 1;
|
|
16358
|
+
background-color: #E0EFF6;
|
|
16359
|
+
background-color: rgba(224, 239, 246, var(--bg-opacity));
|
|
16360
|
+
--text-opacity: 1;
|
|
16361
|
+
color: #318FAC;
|
|
16362
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16363
|
+
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
|
|
16364
|
+
}
|
|
16365
|
+
|
|
16366
|
+
.psui-el-button.small.hover.layout-onlytext {
|
|
16367
|
+
--text-opacity: 1 !important;
|
|
16368
|
+
color: #318FAC !important;
|
|
16369
|
+
color: rgba(49, 143, 172, var(--text-opacity)) !important;
|
|
16370
|
+
--bg-opacity: 1 !important;
|
|
16371
|
+
background-color: #E0EFF6 !important;
|
|
16372
|
+
background-color: rgba(224, 239, 246, var(--bg-opacity)) !important;
|
|
16373
|
+
}
|
|
16374
|
+
|
|
16375
|
+
.psui-el-button.small.left i {
|
|
16376
|
+
font-size: 18px;
|
|
16377
|
+
margin-right: 4px;
|
|
16043
16378
|
}
|
|
16044
16379
|
|
|
16045
|
-
.psui-el-
|
|
16046
|
-
|
|
16047
|
-
|
|
16048
|
-
color: rgba(162, 172, 183, var(--text-opacity))
|
|
16380
|
+
.psui-el-button.small.right i {
|
|
16381
|
+
font-size: 18px;
|
|
16382
|
+
margin-left: 4px;
|
|
16049
16383
|
}
|
|
16050
16384
|
|
|
16051
|
-
|
|
16385
|
+
.psui-el-button.layout-solid {
|
|
16386
|
+
--bg-opacity: 1;
|
|
16387
|
+
background-color: #318FAC;
|
|
16388
|
+
background-color: rgba(49, 143, 172, var(--bg-opacity));
|
|
16389
|
+
color: #ffffff;
|
|
16390
|
+
}
|
|
16052
16391
|
|
|
16053
|
-
.psui-el-
|
|
16054
|
-
|
|
16055
|
-
|
|
16056
|
-
|
|
16392
|
+
.psui-el-button.layout-solid.hover {
|
|
16393
|
+
--bg-opacity: 1;
|
|
16394
|
+
background-color: #64B5CE;
|
|
16395
|
+
background-color: rgba(100, 181, 206, var(--bg-opacity));
|
|
16396
|
+
color: #ffffff;
|
|
16057
16397
|
}
|
|
16058
16398
|
|
|
16059
|
-
|
|
16060
|
-
|
|
16061
|
-
|
|
16399
|
+
.psui-el-button.layout-solid.active {
|
|
16400
|
+
--bg-opacity: 1;
|
|
16401
|
+
background-color: #64B5CE;
|
|
16402
|
+
background-color: rgba(100, 181, 206, var(--bg-opacity));
|
|
16403
|
+
color: #ffffff;
|
|
16404
|
+
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
|
|
16405
|
+
}
|
|
16062
16406
|
|
|
16063
|
-
|
|
16064
|
-
|
|
16065
|
-
|
|
16407
|
+
.psui-el-button.layout-solid.disabled {
|
|
16408
|
+
--text-opacity: 1;
|
|
16409
|
+
color: #A2ACB7;
|
|
16410
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
16411
|
+
--bg-opacity: 1;
|
|
16412
|
+
background-color: #E6ECF2;
|
|
16413
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
16414
|
+
cursor: default
|
|
16415
|
+
}
|
|
16416
|
+
|
|
16417
|
+
.psui-el-button.layout-outline {
|
|
16418
|
+
--text-opacity: 1;
|
|
16419
|
+
color: #318FAC;
|
|
16420
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16421
|
+
border-width: 1px;
|
|
16422
|
+
--border-opacity: 1;
|
|
16423
|
+
border-color: #64B5CE;
|
|
16424
|
+
border-color: rgba(100, 181, 206, var(--border-opacity));
|
|
16425
|
+
background: transparent;
|
|
16426
|
+
}
|
|
16427
|
+
|
|
16428
|
+
.psui-el-button.layout-outline.hover,
|
|
16429
|
+
.psui-el-button.layout-outline.active {
|
|
16430
|
+
border-width: 1px;
|
|
16431
|
+
--border-opacity: 1;
|
|
16432
|
+
border-color: #318FAC;
|
|
16433
|
+
border-color: rgba(49, 143, 172, var(--border-opacity))
|
|
16434
|
+
}
|
|
16435
|
+
|
|
16436
|
+
.psui-el-button.layout-outline.disabled {
|
|
16437
|
+
--text-opacity: 1;
|
|
16438
|
+
color: #A2ACB7;
|
|
16439
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
16440
|
+
--border-opacity: 1;
|
|
16441
|
+
border-color: #D6DDE5;
|
|
16442
|
+
border-color: rgba(214, 221, 229, var(--border-opacity));
|
|
16443
|
+
cursor: default;
|
|
16444
|
+
}
|
|
16445
|
+
|
|
16446
|
+
.psui-el-button.layout-ghost {
|
|
16447
|
+
--bg-opacity: 1;
|
|
16448
|
+
background-color: #E0EFF6;
|
|
16449
|
+
background-color: rgba(224, 239, 246, var(--bg-opacity));
|
|
16450
|
+
--text-opacity: 1;
|
|
16451
|
+
color: #318FAC;
|
|
16452
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16453
|
+
}
|
|
16454
|
+
|
|
16455
|
+
.psui-el-button.layout-ghost.hover,
|
|
16456
|
+
.psui-el-button.layout-ghost.active {
|
|
16457
|
+
--bg-opacity: 1;
|
|
16458
|
+
background-color: #ECF7FB;
|
|
16459
|
+
background-color: rgba(236, 247, 251, var(--bg-opacity))
|
|
16460
|
+
}
|
|
16461
|
+
|
|
16462
|
+
.psui-el-button.layout-ghost.disabled {
|
|
16463
|
+
--text-opacity: 1;
|
|
16464
|
+
color: #A2ACB7;
|
|
16465
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
16466
|
+
--bg-opacity: 1;
|
|
16467
|
+
background-color: #E6ECF2;
|
|
16468
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
16469
|
+
cursor: default
|
|
16470
|
+
}
|
|
16471
|
+
|
|
16472
|
+
.psui-el-button.layout-onlytext {
|
|
16473
|
+
background-color: #ffffff;
|
|
16474
|
+
--text-opacity: 1;
|
|
16475
|
+
color: #318FAC;
|
|
16476
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16477
|
+
}
|
|
16478
|
+
|
|
16479
|
+
.psui-el-button.layout-onlytext.disabled {
|
|
16480
|
+
--text-opacity: 1;
|
|
16481
|
+
color: #A2ACB7;
|
|
16482
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
16483
|
+
cursor: default
|
|
16484
|
+
}
|
|
16485
|
+
|
|
16486
|
+
.psui-el-button.layout-onlytext.hover {
|
|
16487
|
+
--text-opacity: 1;
|
|
16488
|
+
color: #64B5CE;
|
|
16489
|
+
color: rgba(100, 181, 206, var(--text-opacity))
|
|
16490
|
+
}
|
|
16491
|
+
|
|
16492
|
+
.transition-default {
|
|
16493
|
+
transition: cubic-bezier(.17,.67,.83,.67) 250ms;
|
|
16066
16494
|
}
|
|
16067
16495
|
|
|
16068
16496
|
@media (min-width: 640px){
|
|
@@ -16822,6 +17250,10 @@ html {
|
|
|
16822
17250
|
border-color: rgba(146, 120, 201, var(--divide-opacity));
|
|
16823
17251
|
}
|
|
16824
17252
|
|
|
17253
|
+
.sm\:psui-divide-transparent > :not(template) ~ :not(template){
|
|
17254
|
+
border-color: transparent;
|
|
17255
|
+
}
|
|
17256
|
+
|
|
16825
17257
|
.sm\:psui-divide-solid > :not(template) ~ :not(template){
|
|
16826
17258
|
border-style: solid;
|
|
16827
17259
|
}
|
|
@@ -17163,6 +17595,10 @@ html {
|
|
|
17163
17595
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
17164
17596
|
}
|
|
17165
17597
|
|
|
17598
|
+
.sm\:psui-bg-transparent{
|
|
17599
|
+
background-color: transparent;
|
|
17600
|
+
}
|
|
17601
|
+
|
|
17166
17602
|
.sm\:hover\:psui-bg-white:hover{
|
|
17167
17603
|
background-color: #ffffff !important;
|
|
17168
17604
|
}
|
|
@@ -17371,6 +17807,10 @@ html {
|
|
|
17371
17807
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
17372
17808
|
}
|
|
17373
17809
|
|
|
17810
|
+
.sm\:hover\:psui-bg-transparent:hover{
|
|
17811
|
+
background-color: transparent;
|
|
17812
|
+
}
|
|
17813
|
+
|
|
17374
17814
|
.sm\:active\:psui-bg-white:active{
|
|
17375
17815
|
background-color: #ffffff !important;
|
|
17376
17816
|
}
|
|
@@ -17579,6 +18019,10 @@ html {
|
|
|
17579
18019
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
17580
18020
|
}
|
|
17581
18021
|
|
|
18022
|
+
.sm\:active\:psui-bg-transparent:active{
|
|
18023
|
+
background-color: transparent;
|
|
18024
|
+
}
|
|
18025
|
+
|
|
17582
18026
|
.sm\:focus\:psui-bg-white:focus{
|
|
17583
18027
|
background-color: #ffffff !important;
|
|
17584
18028
|
}
|
|
@@ -17787,6 +18231,10 @@ html {
|
|
|
17787
18231
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
17788
18232
|
}
|
|
17789
18233
|
|
|
18234
|
+
.sm\:focus\:psui-bg-transparent:focus{
|
|
18235
|
+
background-color: transparent;
|
|
18236
|
+
}
|
|
18237
|
+
|
|
17790
18238
|
.psui-group:hover .sm\:group-hover\:psui-bg-white{
|
|
17791
18239
|
background-color: #ffffff !important;
|
|
17792
18240
|
}
|
|
@@ -17995,6 +18443,10 @@ html {
|
|
|
17995
18443
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
17996
18444
|
}
|
|
17997
18445
|
|
|
18446
|
+
.psui-group:hover .sm\:group-hover\:psui-bg-transparent{
|
|
18447
|
+
background-color: transparent;
|
|
18448
|
+
}
|
|
18449
|
+
|
|
17998
18450
|
.sm\:even\:psui-bg-white:nth-child(even){
|
|
17999
18451
|
background-color: #ffffff !important;
|
|
18000
18452
|
}
|
|
@@ -18203,6 +18655,10 @@ html {
|
|
|
18203
18655
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
18204
18656
|
}
|
|
18205
18657
|
|
|
18658
|
+
.sm\:even\:psui-bg-transparent:nth-child(even){
|
|
18659
|
+
background-color: transparent;
|
|
18660
|
+
}
|
|
18661
|
+
|
|
18206
18662
|
.sm\:first\:psui-bg-white:first-child{
|
|
18207
18663
|
background-color: #ffffff !important;
|
|
18208
18664
|
}
|
|
@@ -18411,6 +18867,10 @@ html {
|
|
|
18411
18867
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
18412
18868
|
}
|
|
18413
18869
|
|
|
18870
|
+
.sm\:first\:psui-bg-transparent:first-child{
|
|
18871
|
+
background-color: transparent;
|
|
18872
|
+
}
|
|
18873
|
+
|
|
18414
18874
|
.sm\:disabled\:psui-bg-white:disabled{
|
|
18415
18875
|
background-color: #ffffff !important;
|
|
18416
18876
|
}
|
|
@@ -18619,6 +19079,10 @@ html {
|
|
|
18619
19079
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
18620
19080
|
}
|
|
18621
19081
|
|
|
19082
|
+
.sm\:disabled\:psui-bg-transparent:disabled{
|
|
19083
|
+
background-color: transparent;
|
|
19084
|
+
}
|
|
19085
|
+
|
|
18622
19086
|
.sm\:psui-bg-none{
|
|
18623
19087
|
background-image: none;
|
|
18624
19088
|
}
|
|
@@ -18830,6 +19294,11 @@ html {
|
|
|
18830
19294
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
18831
19295
|
}
|
|
18832
19296
|
|
|
19297
|
+
.sm\:psui-from-transparent{
|
|
19298
|
+
--gradient-from-color: transparent;
|
|
19299
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
19300
|
+
}
|
|
19301
|
+
|
|
18833
19302
|
.sm\:psui-via-white{
|
|
18834
19303
|
--gradient-via-color: #ffffff !important;
|
|
18835
19304
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -19005,6 +19474,11 @@ html {
|
|
|
19005
19474
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
19006
19475
|
}
|
|
19007
19476
|
|
|
19477
|
+
.sm\:psui-via-transparent{
|
|
19478
|
+
--gradient-via-color: transparent;
|
|
19479
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
19480
|
+
}
|
|
19481
|
+
|
|
19008
19482
|
.sm\:psui-to-white{
|
|
19009
19483
|
--gradient-to-color: #ffffff !important;
|
|
19010
19484
|
}
|
|
@@ -19145,6 +19619,10 @@ html {
|
|
|
19145
19619
|
--gradient-to-color: #9278C9;
|
|
19146
19620
|
}
|
|
19147
19621
|
|
|
19622
|
+
.sm\:psui-to-transparent{
|
|
19623
|
+
--gradient-to-color: transparent;
|
|
19624
|
+
}
|
|
19625
|
+
|
|
19148
19626
|
.sm\:hover\:psui-from-white:hover{
|
|
19149
19627
|
--gradient-from-color: #ffffff !important;
|
|
19150
19628
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -19320,6 +19798,11 @@ html {
|
|
|
19320
19798
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
19321
19799
|
}
|
|
19322
19800
|
|
|
19801
|
+
.sm\:hover\:psui-from-transparent:hover{
|
|
19802
|
+
--gradient-from-color: transparent;
|
|
19803
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
19804
|
+
}
|
|
19805
|
+
|
|
19323
19806
|
.sm\:hover\:psui-via-white:hover{
|
|
19324
19807
|
--gradient-via-color: #ffffff !important;
|
|
19325
19808
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -19495,6 +19978,11 @@ html {
|
|
|
19495
19978
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
19496
19979
|
}
|
|
19497
19980
|
|
|
19981
|
+
.sm\:hover\:psui-via-transparent:hover{
|
|
19982
|
+
--gradient-via-color: transparent;
|
|
19983
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
19984
|
+
}
|
|
19985
|
+
|
|
19498
19986
|
.sm\:hover\:psui-to-white:hover{
|
|
19499
19987
|
--gradient-to-color: #ffffff !important;
|
|
19500
19988
|
}
|
|
@@ -19635,6 +20123,10 @@ html {
|
|
|
19635
20123
|
--gradient-to-color: #9278C9;
|
|
19636
20124
|
}
|
|
19637
20125
|
|
|
20126
|
+
.sm\:hover\:psui-to-transparent:hover{
|
|
20127
|
+
--gradient-to-color: transparent;
|
|
20128
|
+
}
|
|
20129
|
+
|
|
19638
20130
|
.sm\:focus\:psui-from-white:focus{
|
|
19639
20131
|
--gradient-from-color: #ffffff !important;
|
|
19640
20132
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -19810,6 +20302,11 @@ html {
|
|
|
19810
20302
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
19811
20303
|
}
|
|
19812
20304
|
|
|
20305
|
+
.sm\:focus\:psui-from-transparent:focus{
|
|
20306
|
+
--gradient-from-color: transparent;
|
|
20307
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
20308
|
+
}
|
|
20309
|
+
|
|
19813
20310
|
.sm\:focus\:psui-via-white:focus{
|
|
19814
20311
|
--gradient-via-color: #ffffff !important;
|
|
19815
20312
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -19985,6 +20482,11 @@ html {
|
|
|
19985
20482
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
19986
20483
|
}
|
|
19987
20484
|
|
|
20485
|
+
.sm\:focus\:psui-via-transparent:focus{
|
|
20486
|
+
--gradient-via-color: transparent;
|
|
20487
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
20488
|
+
}
|
|
20489
|
+
|
|
19988
20490
|
.sm\:focus\:psui-to-white:focus{
|
|
19989
20491
|
--gradient-to-color: #ffffff !important;
|
|
19990
20492
|
}
|
|
@@ -20125,6 +20627,10 @@ html {
|
|
|
20125
20627
|
--gradient-to-color: #9278C9;
|
|
20126
20628
|
}
|
|
20127
20629
|
|
|
20630
|
+
.sm\:focus\:psui-to-transparent:focus{
|
|
20631
|
+
--gradient-to-color: transparent;
|
|
20632
|
+
}
|
|
20633
|
+
|
|
20128
20634
|
.sm\:psui-bg-opacity-0{
|
|
20129
20635
|
--bg-opacity: 0;
|
|
20130
20636
|
}
|
|
@@ -23924,6 +24430,18 @@ html {
|
|
|
23924
24430
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
23925
24431
|
}
|
|
23926
24432
|
|
|
24433
|
+
.sm\:psui-placeholder-transparent::-moz-placeholder{
|
|
24434
|
+
color: transparent;
|
|
24435
|
+
}
|
|
24436
|
+
|
|
24437
|
+
.sm\:psui-placeholder-transparent:-ms-input-placeholder{
|
|
24438
|
+
color: transparent;
|
|
24439
|
+
}
|
|
24440
|
+
|
|
24441
|
+
.sm\:psui-placeholder-transparent::placeholder{
|
|
24442
|
+
color: transparent;
|
|
24443
|
+
}
|
|
24444
|
+
|
|
23927
24445
|
.sm\:focus\:psui-placeholder-white:focus::-moz-placeholder{
|
|
23928
24446
|
color: #ffffff !important;
|
|
23929
24447
|
}
|
|
@@ -24548,6 +25066,18 @@ html {
|
|
|
24548
25066
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
24549
25067
|
}
|
|
24550
25068
|
|
|
25069
|
+
.sm\:focus\:psui-placeholder-transparent:focus::-moz-placeholder{
|
|
25070
|
+
color: transparent;
|
|
25071
|
+
}
|
|
25072
|
+
|
|
25073
|
+
.sm\:focus\:psui-placeholder-transparent:focus:-ms-input-placeholder{
|
|
25074
|
+
color: transparent;
|
|
25075
|
+
}
|
|
25076
|
+
|
|
25077
|
+
.sm\:focus\:psui-placeholder-transparent:focus::placeholder{
|
|
25078
|
+
color: transparent;
|
|
25079
|
+
}
|
|
25080
|
+
|
|
24551
25081
|
.sm\:psui-placeholder-opacity-0::-moz-placeholder{
|
|
24552
25082
|
--placeholder-opacity: 0;
|
|
24553
25083
|
}
|
|
@@ -25031,6 +25561,10 @@ html {
|
|
|
25031
25561
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
25032
25562
|
}
|
|
25033
25563
|
|
|
25564
|
+
.sm\:psui-text-transparent{
|
|
25565
|
+
color: transparent;
|
|
25566
|
+
}
|
|
25567
|
+
|
|
25034
25568
|
.sm\:hover\:psui-text-white:hover{
|
|
25035
25569
|
color: #ffffff !important;
|
|
25036
25570
|
}
|
|
@@ -25239,6 +25773,10 @@ html {
|
|
|
25239
25773
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
25240
25774
|
}
|
|
25241
25775
|
|
|
25776
|
+
.sm\:hover\:psui-text-transparent:hover{
|
|
25777
|
+
color: transparent;
|
|
25778
|
+
}
|
|
25779
|
+
|
|
25242
25780
|
.sm\:active\:psui-text-white:active{
|
|
25243
25781
|
color: #ffffff !important;
|
|
25244
25782
|
}
|
|
@@ -25447,6 +25985,10 @@ html {
|
|
|
25447
25985
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
25448
25986
|
}
|
|
25449
25987
|
|
|
25988
|
+
.sm\:active\:psui-text-transparent:active{
|
|
25989
|
+
color: transparent;
|
|
25990
|
+
}
|
|
25991
|
+
|
|
25450
25992
|
.sm\:focus\:psui-text-white:focus{
|
|
25451
25993
|
color: #ffffff !important;
|
|
25452
25994
|
}
|
|
@@ -25655,6 +26197,10 @@ html {
|
|
|
25655
26197
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
25656
26198
|
}
|
|
25657
26199
|
|
|
26200
|
+
.sm\:focus\:psui-text-transparent:focus{
|
|
26201
|
+
color: transparent;
|
|
26202
|
+
}
|
|
26203
|
+
|
|
25658
26204
|
.psui-group:hover .sm\:group-hover\:psui-text-white{
|
|
25659
26205
|
color: #ffffff !important;
|
|
25660
26206
|
}
|
|
@@ -25863,6 +26409,10 @@ html {
|
|
|
25863
26409
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
25864
26410
|
}
|
|
25865
26411
|
|
|
26412
|
+
.psui-group:hover .sm\:group-hover\:psui-text-transparent{
|
|
26413
|
+
color: transparent;
|
|
26414
|
+
}
|
|
26415
|
+
|
|
25866
26416
|
.sm\:first\:psui-text-white:first-child{
|
|
25867
26417
|
color: #ffffff !important;
|
|
25868
26418
|
}
|
|
@@ -26071,6 +26621,10 @@ html {
|
|
|
26071
26621
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
26072
26622
|
}
|
|
26073
26623
|
|
|
26624
|
+
.sm\:first\:psui-text-transparent:first-child{
|
|
26625
|
+
color: transparent;
|
|
26626
|
+
}
|
|
26627
|
+
|
|
26074
26628
|
.sm\:disabled\:psui-text-white:disabled{
|
|
26075
26629
|
color: #ffffff !important;
|
|
26076
26630
|
}
|
|
@@ -26279,6 +26833,10 @@ html {
|
|
|
26279
26833
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
26280
26834
|
}
|
|
26281
26835
|
|
|
26836
|
+
.sm\:disabled\:psui-text-transparent:disabled{
|
|
26837
|
+
color: transparent;
|
|
26838
|
+
}
|
|
26839
|
+
|
|
26282
26840
|
.sm\:psui-text-opacity-0{
|
|
26283
26841
|
--text-opacity: 0;
|
|
26284
26842
|
}
|
|
@@ -30492,6 +31050,10 @@ html {
|
|
|
30492
31050
|
border-color: rgba(146, 120, 201, var(--divide-opacity));
|
|
30493
31051
|
}
|
|
30494
31052
|
|
|
31053
|
+
.md\:psui-divide-transparent > :not(template) ~ :not(template){
|
|
31054
|
+
border-color: transparent;
|
|
31055
|
+
}
|
|
31056
|
+
|
|
30495
31057
|
.md\:psui-divide-solid > :not(template) ~ :not(template){
|
|
30496
31058
|
border-style: solid;
|
|
30497
31059
|
}
|
|
@@ -30833,6 +31395,10 @@ html {
|
|
|
30833
31395
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
30834
31396
|
}
|
|
30835
31397
|
|
|
31398
|
+
.md\:psui-bg-transparent{
|
|
31399
|
+
background-color: transparent;
|
|
31400
|
+
}
|
|
31401
|
+
|
|
30836
31402
|
.md\:hover\:psui-bg-white:hover{
|
|
30837
31403
|
background-color: #ffffff !important;
|
|
30838
31404
|
}
|
|
@@ -31041,6 +31607,10 @@ html {
|
|
|
31041
31607
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
31042
31608
|
}
|
|
31043
31609
|
|
|
31610
|
+
.md\:hover\:psui-bg-transparent:hover{
|
|
31611
|
+
background-color: transparent;
|
|
31612
|
+
}
|
|
31613
|
+
|
|
31044
31614
|
.md\:active\:psui-bg-white:active{
|
|
31045
31615
|
background-color: #ffffff !important;
|
|
31046
31616
|
}
|
|
@@ -31249,6 +31819,10 @@ html {
|
|
|
31249
31819
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
31250
31820
|
}
|
|
31251
31821
|
|
|
31822
|
+
.md\:active\:psui-bg-transparent:active{
|
|
31823
|
+
background-color: transparent;
|
|
31824
|
+
}
|
|
31825
|
+
|
|
31252
31826
|
.md\:focus\:psui-bg-white:focus{
|
|
31253
31827
|
background-color: #ffffff !important;
|
|
31254
31828
|
}
|
|
@@ -31457,6 +32031,10 @@ html {
|
|
|
31457
32031
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
31458
32032
|
}
|
|
31459
32033
|
|
|
32034
|
+
.md\:focus\:psui-bg-transparent:focus{
|
|
32035
|
+
background-color: transparent;
|
|
32036
|
+
}
|
|
32037
|
+
|
|
31460
32038
|
.psui-group:hover .md\:group-hover\:psui-bg-white{
|
|
31461
32039
|
background-color: #ffffff !important;
|
|
31462
32040
|
}
|
|
@@ -31665,6 +32243,10 @@ html {
|
|
|
31665
32243
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
31666
32244
|
}
|
|
31667
32245
|
|
|
32246
|
+
.psui-group:hover .md\:group-hover\:psui-bg-transparent{
|
|
32247
|
+
background-color: transparent;
|
|
32248
|
+
}
|
|
32249
|
+
|
|
31668
32250
|
.md\:even\:psui-bg-white:nth-child(even){
|
|
31669
32251
|
background-color: #ffffff !important;
|
|
31670
32252
|
}
|
|
@@ -31873,6 +32455,10 @@ html {
|
|
|
31873
32455
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
31874
32456
|
}
|
|
31875
32457
|
|
|
32458
|
+
.md\:even\:psui-bg-transparent:nth-child(even){
|
|
32459
|
+
background-color: transparent;
|
|
32460
|
+
}
|
|
32461
|
+
|
|
31876
32462
|
.md\:first\:psui-bg-white:first-child{
|
|
31877
32463
|
background-color: #ffffff !important;
|
|
31878
32464
|
}
|
|
@@ -32081,6 +32667,10 @@ html {
|
|
|
32081
32667
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
32082
32668
|
}
|
|
32083
32669
|
|
|
32670
|
+
.md\:first\:psui-bg-transparent:first-child{
|
|
32671
|
+
background-color: transparent;
|
|
32672
|
+
}
|
|
32673
|
+
|
|
32084
32674
|
.md\:disabled\:psui-bg-white:disabled{
|
|
32085
32675
|
background-color: #ffffff !important;
|
|
32086
32676
|
}
|
|
@@ -32289,6 +32879,10 @@ html {
|
|
|
32289
32879
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
32290
32880
|
}
|
|
32291
32881
|
|
|
32882
|
+
.md\:disabled\:psui-bg-transparent:disabled{
|
|
32883
|
+
background-color: transparent;
|
|
32884
|
+
}
|
|
32885
|
+
|
|
32292
32886
|
.md\:psui-bg-none{
|
|
32293
32887
|
background-image: none;
|
|
32294
32888
|
}
|
|
@@ -32500,6 +33094,11 @@ html {
|
|
|
32500
33094
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
32501
33095
|
}
|
|
32502
33096
|
|
|
33097
|
+
.md\:psui-from-transparent{
|
|
33098
|
+
--gradient-from-color: transparent;
|
|
33099
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
33100
|
+
}
|
|
33101
|
+
|
|
32503
33102
|
.md\:psui-via-white{
|
|
32504
33103
|
--gradient-via-color: #ffffff !important;
|
|
32505
33104
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -32675,6 +33274,11 @@ html {
|
|
|
32675
33274
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
32676
33275
|
}
|
|
32677
33276
|
|
|
33277
|
+
.md\:psui-via-transparent{
|
|
33278
|
+
--gradient-via-color: transparent;
|
|
33279
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
33280
|
+
}
|
|
33281
|
+
|
|
32678
33282
|
.md\:psui-to-white{
|
|
32679
33283
|
--gradient-to-color: #ffffff !important;
|
|
32680
33284
|
}
|
|
@@ -32815,6 +33419,10 @@ html {
|
|
|
32815
33419
|
--gradient-to-color: #9278C9;
|
|
32816
33420
|
}
|
|
32817
33421
|
|
|
33422
|
+
.md\:psui-to-transparent{
|
|
33423
|
+
--gradient-to-color: transparent;
|
|
33424
|
+
}
|
|
33425
|
+
|
|
32818
33426
|
.md\:hover\:psui-from-white:hover{
|
|
32819
33427
|
--gradient-from-color: #ffffff !important;
|
|
32820
33428
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -32990,6 +33598,11 @@ html {
|
|
|
32990
33598
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
32991
33599
|
}
|
|
32992
33600
|
|
|
33601
|
+
.md\:hover\:psui-from-transparent:hover{
|
|
33602
|
+
--gradient-from-color: transparent;
|
|
33603
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
33604
|
+
}
|
|
33605
|
+
|
|
32993
33606
|
.md\:hover\:psui-via-white:hover{
|
|
32994
33607
|
--gradient-via-color: #ffffff !important;
|
|
32995
33608
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -33165,6 +33778,11 @@ html {
|
|
|
33165
33778
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
33166
33779
|
}
|
|
33167
33780
|
|
|
33781
|
+
.md\:hover\:psui-via-transparent:hover{
|
|
33782
|
+
--gradient-via-color: transparent;
|
|
33783
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
33784
|
+
}
|
|
33785
|
+
|
|
33168
33786
|
.md\:hover\:psui-to-white:hover{
|
|
33169
33787
|
--gradient-to-color: #ffffff !important;
|
|
33170
33788
|
}
|
|
@@ -33305,6 +33923,10 @@ html {
|
|
|
33305
33923
|
--gradient-to-color: #9278C9;
|
|
33306
33924
|
}
|
|
33307
33925
|
|
|
33926
|
+
.md\:hover\:psui-to-transparent:hover{
|
|
33927
|
+
--gradient-to-color: transparent;
|
|
33928
|
+
}
|
|
33929
|
+
|
|
33308
33930
|
.md\:focus\:psui-from-white:focus{
|
|
33309
33931
|
--gradient-from-color: #ffffff !important;
|
|
33310
33932
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -33480,6 +34102,11 @@ html {
|
|
|
33480
34102
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
33481
34103
|
}
|
|
33482
34104
|
|
|
34105
|
+
.md\:focus\:psui-from-transparent:focus{
|
|
34106
|
+
--gradient-from-color: transparent;
|
|
34107
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
34108
|
+
}
|
|
34109
|
+
|
|
33483
34110
|
.md\:focus\:psui-via-white:focus{
|
|
33484
34111
|
--gradient-via-color: #ffffff !important;
|
|
33485
34112
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -33655,6 +34282,11 @@ html {
|
|
|
33655
34282
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
33656
34283
|
}
|
|
33657
34284
|
|
|
34285
|
+
.md\:focus\:psui-via-transparent:focus{
|
|
34286
|
+
--gradient-via-color: transparent;
|
|
34287
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
34288
|
+
}
|
|
34289
|
+
|
|
33658
34290
|
.md\:focus\:psui-to-white:focus{
|
|
33659
34291
|
--gradient-to-color: #ffffff !important;
|
|
33660
34292
|
}
|
|
@@ -33795,6 +34427,10 @@ html {
|
|
|
33795
34427
|
--gradient-to-color: #9278C9;
|
|
33796
34428
|
}
|
|
33797
34429
|
|
|
34430
|
+
.md\:focus\:psui-to-transparent:focus{
|
|
34431
|
+
--gradient-to-color: transparent;
|
|
34432
|
+
}
|
|
34433
|
+
|
|
33798
34434
|
.md\:psui-bg-opacity-0{
|
|
33799
34435
|
--bg-opacity: 0;
|
|
33800
34436
|
}
|
|
@@ -37594,6 +38230,18 @@ html {
|
|
|
37594
38230
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
37595
38231
|
}
|
|
37596
38232
|
|
|
38233
|
+
.md\:psui-placeholder-transparent::-moz-placeholder{
|
|
38234
|
+
color: transparent;
|
|
38235
|
+
}
|
|
38236
|
+
|
|
38237
|
+
.md\:psui-placeholder-transparent:-ms-input-placeholder{
|
|
38238
|
+
color: transparent;
|
|
38239
|
+
}
|
|
38240
|
+
|
|
38241
|
+
.md\:psui-placeholder-transparent::placeholder{
|
|
38242
|
+
color: transparent;
|
|
38243
|
+
}
|
|
38244
|
+
|
|
37597
38245
|
.md\:focus\:psui-placeholder-white:focus::-moz-placeholder{
|
|
37598
38246
|
color: #ffffff !important;
|
|
37599
38247
|
}
|
|
@@ -38218,6 +38866,18 @@ html {
|
|
|
38218
38866
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
38219
38867
|
}
|
|
38220
38868
|
|
|
38869
|
+
.md\:focus\:psui-placeholder-transparent:focus::-moz-placeholder{
|
|
38870
|
+
color: transparent;
|
|
38871
|
+
}
|
|
38872
|
+
|
|
38873
|
+
.md\:focus\:psui-placeholder-transparent:focus:-ms-input-placeholder{
|
|
38874
|
+
color: transparent;
|
|
38875
|
+
}
|
|
38876
|
+
|
|
38877
|
+
.md\:focus\:psui-placeholder-transparent:focus::placeholder{
|
|
38878
|
+
color: transparent;
|
|
38879
|
+
}
|
|
38880
|
+
|
|
38221
38881
|
.md\:psui-placeholder-opacity-0::-moz-placeholder{
|
|
38222
38882
|
--placeholder-opacity: 0;
|
|
38223
38883
|
}
|
|
@@ -38701,6 +39361,10 @@ html {
|
|
|
38701
39361
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
38702
39362
|
}
|
|
38703
39363
|
|
|
39364
|
+
.md\:psui-text-transparent{
|
|
39365
|
+
color: transparent;
|
|
39366
|
+
}
|
|
39367
|
+
|
|
38704
39368
|
.md\:hover\:psui-text-white:hover{
|
|
38705
39369
|
color: #ffffff !important;
|
|
38706
39370
|
}
|
|
@@ -38909,6 +39573,10 @@ html {
|
|
|
38909
39573
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
38910
39574
|
}
|
|
38911
39575
|
|
|
39576
|
+
.md\:hover\:psui-text-transparent:hover{
|
|
39577
|
+
color: transparent;
|
|
39578
|
+
}
|
|
39579
|
+
|
|
38912
39580
|
.md\:active\:psui-text-white:active{
|
|
38913
39581
|
color: #ffffff !important;
|
|
38914
39582
|
}
|
|
@@ -39117,6 +39785,10 @@ html {
|
|
|
39117
39785
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
39118
39786
|
}
|
|
39119
39787
|
|
|
39788
|
+
.md\:active\:psui-text-transparent:active{
|
|
39789
|
+
color: transparent;
|
|
39790
|
+
}
|
|
39791
|
+
|
|
39120
39792
|
.md\:focus\:psui-text-white:focus{
|
|
39121
39793
|
color: #ffffff !important;
|
|
39122
39794
|
}
|
|
@@ -39325,6 +39997,10 @@ html {
|
|
|
39325
39997
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
39326
39998
|
}
|
|
39327
39999
|
|
|
40000
|
+
.md\:focus\:psui-text-transparent:focus{
|
|
40001
|
+
color: transparent;
|
|
40002
|
+
}
|
|
40003
|
+
|
|
39328
40004
|
.psui-group:hover .md\:group-hover\:psui-text-white{
|
|
39329
40005
|
color: #ffffff !important;
|
|
39330
40006
|
}
|
|
@@ -39533,6 +40209,10 @@ html {
|
|
|
39533
40209
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
39534
40210
|
}
|
|
39535
40211
|
|
|
40212
|
+
.psui-group:hover .md\:group-hover\:psui-text-transparent{
|
|
40213
|
+
color: transparent;
|
|
40214
|
+
}
|
|
40215
|
+
|
|
39536
40216
|
.md\:first\:psui-text-white:first-child{
|
|
39537
40217
|
color: #ffffff !important;
|
|
39538
40218
|
}
|
|
@@ -39741,6 +40421,10 @@ html {
|
|
|
39741
40421
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
39742
40422
|
}
|
|
39743
40423
|
|
|
40424
|
+
.md\:first\:psui-text-transparent:first-child{
|
|
40425
|
+
color: transparent;
|
|
40426
|
+
}
|
|
40427
|
+
|
|
39744
40428
|
.md\:disabled\:psui-text-white:disabled{
|
|
39745
40429
|
color: #ffffff !important;
|
|
39746
40430
|
}
|
|
@@ -39949,6 +40633,10 @@ html {
|
|
|
39949
40633
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
39950
40634
|
}
|
|
39951
40635
|
|
|
40636
|
+
.md\:disabled\:psui-text-transparent:disabled{
|
|
40637
|
+
color: transparent;
|
|
40638
|
+
}
|
|
40639
|
+
|
|
39952
40640
|
.md\:psui-text-opacity-0{
|
|
39953
40641
|
--text-opacity: 0;
|
|
39954
40642
|
}
|
|
@@ -44162,6 +44850,10 @@ html {
|
|
|
44162
44850
|
border-color: rgba(146, 120, 201, var(--divide-opacity));
|
|
44163
44851
|
}
|
|
44164
44852
|
|
|
44853
|
+
.lg\:psui-divide-transparent > :not(template) ~ :not(template){
|
|
44854
|
+
border-color: transparent;
|
|
44855
|
+
}
|
|
44856
|
+
|
|
44165
44857
|
.lg\:psui-divide-solid > :not(template) ~ :not(template){
|
|
44166
44858
|
border-style: solid;
|
|
44167
44859
|
}
|
|
@@ -44503,6 +45195,10 @@ html {
|
|
|
44503
45195
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
44504
45196
|
}
|
|
44505
45197
|
|
|
45198
|
+
.lg\:psui-bg-transparent{
|
|
45199
|
+
background-color: transparent;
|
|
45200
|
+
}
|
|
45201
|
+
|
|
44506
45202
|
.lg\:hover\:psui-bg-white:hover{
|
|
44507
45203
|
background-color: #ffffff !important;
|
|
44508
45204
|
}
|
|
@@ -44711,6 +45407,10 @@ html {
|
|
|
44711
45407
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
44712
45408
|
}
|
|
44713
45409
|
|
|
45410
|
+
.lg\:hover\:psui-bg-transparent:hover{
|
|
45411
|
+
background-color: transparent;
|
|
45412
|
+
}
|
|
45413
|
+
|
|
44714
45414
|
.lg\:active\:psui-bg-white:active{
|
|
44715
45415
|
background-color: #ffffff !important;
|
|
44716
45416
|
}
|
|
@@ -44919,6 +45619,10 @@ html {
|
|
|
44919
45619
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
44920
45620
|
}
|
|
44921
45621
|
|
|
45622
|
+
.lg\:active\:psui-bg-transparent:active{
|
|
45623
|
+
background-color: transparent;
|
|
45624
|
+
}
|
|
45625
|
+
|
|
44922
45626
|
.lg\:focus\:psui-bg-white:focus{
|
|
44923
45627
|
background-color: #ffffff !important;
|
|
44924
45628
|
}
|
|
@@ -45127,6 +45831,10 @@ html {
|
|
|
45127
45831
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
45128
45832
|
}
|
|
45129
45833
|
|
|
45834
|
+
.lg\:focus\:psui-bg-transparent:focus{
|
|
45835
|
+
background-color: transparent;
|
|
45836
|
+
}
|
|
45837
|
+
|
|
45130
45838
|
.psui-group:hover .lg\:group-hover\:psui-bg-white{
|
|
45131
45839
|
background-color: #ffffff !important;
|
|
45132
45840
|
}
|
|
@@ -45335,6 +46043,10 @@ html {
|
|
|
45335
46043
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
45336
46044
|
}
|
|
45337
46045
|
|
|
46046
|
+
.psui-group:hover .lg\:group-hover\:psui-bg-transparent{
|
|
46047
|
+
background-color: transparent;
|
|
46048
|
+
}
|
|
46049
|
+
|
|
45338
46050
|
.lg\:even\:psui-bg-white:nth-child(even){
|
|
45339
46051
|
background-color: #ffffff !important;
|
|
45340
46052
|
}
|
|
@@ -45543,6 +46255,10 @@ html {
|
|
|
45543
46255
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
45544
46256
|
}
|
|
45545
46257
|
|
|
46258
|
+
.lg\:even\:psui-bg-transparent:nth-child(even){
|
|
46259
|
+
background-color: transparent;
|
|
46260
|
+
}
|
|
46261
|
+
|
|
45546
46262
|
.lg\:first\:psui-bg-white:first-child{
|
|
45547
46263
|
background-color: #ffffff !important;
|
|
45548
46264
|
}
|
|
@@ -45751,6 +46467,10 @@ html {
|
|
|
45751
46467
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
45752
46468
|
}
|
|
45753
46469
|
|
|
46470
|
+
.lg\:first\:psui-bg-transparent:first-child{
|
|
46471
|
+
background-color: transparent;
|
|
46472
|
+
}
|
|
46473
|
+
|
|
45754
46474
|
.lg\:disabled\:psui-bg-white:disabled{
|
|
45755
46475
|
background-color: #ffffff !important;
|
|
45756
46476
|
}
|
|
@@ -45959,6 +46679,10 @@ html {
|
|
|
45959
46679
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
45960
46680
|
}
|
|
45961
46681
|
|
|
46682
|
+
.lg\:disabled\:psui-bg-transparent:disabled{
|
|
46683
|
+
background-color: transparent;
|
|
46684
|
+
}
|
|
46685
|
+
|
|
45962
46686
|
.lg\:psui-bg-none{
|
|
45963
46687
|
background-image: none;
|
|
45964
46688
|
}
|
|
@@ -46170,6 +46894,11 @@ html {
|
|
|
46170
46894
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
46171
46895
|
}
|
|
46172
46896
|
|
|
46897
|
+
.lg\:psui-from-transparent{
|
|
46898
|
+
--gradient-from-color: transparent;
|
|
46899
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
46900
|
+
}
|
|
46901
|
+
|
|
46173
46902
|
.lg\:psui-via-white{
|
|
46174
46903
|
--gradient-via-color: #ffffff !important;
|
|
46175
46904
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -46345,6 +47074,11 @@ html {
|
|
|
46345
47074
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
46346
47075
|
}
|
|
46347
47076
|
|
|
47077
|
+
.lg\:psui-via-transparent{
|
|
47078
|
+
--gradient-via-color: transparent;
|
|
47079
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
47080
|
+
}
|
|
47081
|
+
|
|
46348
47082
|
.lg\:psui-to-white{
|
|
46349
47083
|
--gradient-to-color: #ffffff !important;
|
|
46350
47084
|
}
|
|
@@ -46485,6 +47219,10 @@ html {
|
|
|
46485
47219
|
--gradient-to-color: #9278C9;
|
|
46486
47220
|
}
|
|
46487
47221
|
|
|
47222
|
+
.lg\:psui-to-transparent{
|
|
47223
|
+
--gradient-to-color: transparent;
|
|
47224
|
+
}
|
|
47225
|
+
|
|
46488
47226
|
.lg\:hover\:psui-from-white:hover{
|
|
46489
47227
|
--gradient-from-color: #ffffff !important;
|
|
46490
47228
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -46660,6 +47398,11 @@ html {
|
|
|
46660
47398
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
46661
47399
|
}
|
|
46662
47400
|
|
|
47401
|
+
.lg\:hover\:psui-from-transparent:hover{
|
|
47402
|
+
--gradient-from-color: transparent;
|
|
47403
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
47404
|
+
}
|
|
47405
|
+
|
|
46663
47406
|
.lg\:hover\:psui-via-white:hover{
|
|
46664
47407
|
--gradient-via-color: #ffffff !important;
|
|
46665
47408
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -46835,6 +47578,11 @@ html {
|
|
|
46835
47578
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
46836
47579
|
}
|
|
46837
47580
|
|
|
47581
|
+
.lg\:hover\:psui-via-transparent:hover{
|
|
47582
|
+
--gradient-via-color: transparent;
|
|
47583
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
47584
|
+
}
|
|
47585
|
+
|
|
46838
47586
|
.lg\:hover\:psui-to-white:hover{
|
|
46839
47587
|
--gradient-to-color: #ffffff !important;
|
|
46840
47588
|
}
|
|
@@ -46975,6 +47723,10 @@ html {
|
|
|
46975
47723
|
--gradient-to-color: #9278C9;
|
|
46976
47724
|
}
|
|
46977
47725
|
|
|
47726
|
+
.lg\:hover\:psui-to-transparent:hover{
|
|
47727
|
+
--gradient-to-color: transparent;
|
|
47728
|
+
}
|
|
47729
|
+
|
|
46978
47730
|
.lg\:focus\:psui-from-white:focus{
|
|
46979
47731
|
--gradient-from-color: #ffffff !important;
|
|
46980
47732
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -47150,6 +47902,11 @@ html {
|
|
|
47150
47902
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
47151
47903
|
}
|
|
47152
47904
|
|
|
47905
|
+
.lg\:focus\:psui-from-transparent:focus{
|
|
47906
|
+
--gradient-from-color: transparent;
|
|
47907
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
47908
|
+
}
|
|
47909
|
+
|
|
47153
47910
|
.lg\:focus\:psui-via-white:focus{
|
|
47154
47911
|
--gradient-via-color: #ffffff !important;
|
|
47155
47912
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -47325,6 +48082,11 @@ html {
|
|
|
47325
48082
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
47326
48083
|
}
|
|
47327
48084
|
|
|
48085
|
+
.lg\:focus\:psui-via-transparent:focus{
|
|
48086
|
+
--gradient-via-color: transparent;
|
|
48087
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
48088
|
+
}
|
|
48089
|
+
|
|
47328
48090
|
.lg\:focus\:psui-to-white:focus{
|
|
47329
48091
|
--gradient-to-color: #ffffff !important;
|
|
47330
48092
|
}
|
|
@@ -47465,6 +48227,10 @@ html {
|
|
|
47465
48227
|
--gradient-to-color: #9278C9;
|
|
47466
48228
|
}
|
|
47467
48229
|
|
|
48230
|
+
.lg\:focus\:psui-to-transparent:focus{
|
|
48231
|
+
--gradient-to-color: transparent;
|
|
48232
|
+
}
|
|
48233
|
+
|
|
47468
48234
|
.lg\:psui-bg-opacity-0{
|
|
47469
48235
|
--bg-opacity: 0;
|
|
47470
48236
|
}
|
|
@@ -51264,6 +52030,18 @@ html {
|
|
|
51264
52030
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
51265
52031
|
}
|
|
51266
52032
|
|
|
52033
|
+
.lg\:psui-placeholder-transparent::-moz-placeholder{
|
|
52034
|
+
color: transparent;
|
|
52035
|
+
}
|
|
52036
|
+
|
|
52037
|
+
.lg\:psui-placeholder-transparent:-ms-input-placeholder{
|
|
52038
|
+
color: transparent;
|
|
52039
|
+
}
|
|
52040
|
+
|
|
52041
|
+
.lg\:psui-placeholder-transparent::placeholder{
|
|
52042
|
+
color: transparent;
|
|
52043
|
+
}
|
|
52044
|
+
|
|
51267
52045
|
.lg\:focus\:psui-placeholder-white:focus::-moz-placeholder{
|
|
51268
52046
|
color: #ffffff !important;
|
|
51269
52047
|
}
|
|
@@ -51888,6 +52666,18 @@ html {
|
|
|
51888
52666
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
51889
52667
|
}
|
|
51890
52668
|
|
|
52669
|
+
.lg\:focus\:psui-placeholder-transparent:focus::-moz-placeholder{
|
|
52670
|
+
color: transparent;
|
|
52671
|
+
}
|
|
52672
|
+
|
|
52673
|
+
.lg\:focus\:psui-placeholder-transparent:focus:-ms-input-placeholder{
|
|
52674
|
+
color: transparent;
|
|
52675
|
+
}
|
|
52676
|
+
|
|
52677
|
+
.lg\:focus\:psui-placeholder-transparent:focus::placeholder{
|
|
52678
|
+
color: transparent;
|
|
52679
|
+
}
|
|
52680
|
+
|
|
51891
52681
|
.lg\:psui-placeholder-opacity-0::-moz-placeholder{
|
|
51892
52682
|
--placeholder-opacity: 0;
|
|
51893
52683
|
}
|
|
@@ -52371,6 +53161,10 @@ html {
|
|
|
52371
53161
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
52372
53162
|
}
|
|
52373
53163
|
|
|
53164
|
+
.lg\:psui-text-transparent{
|
|
53165
|
+
color: transparent;
|
|
53166
|
+
}
|
|
53167
|
+
|
|
52374
53168
|
.lg\:hover\:psui-text-white:hover{
|
|
52375
53169
|
color: #ffffff !important;
|
|
52376
53170
|
}
|
|
@@ -52579,6 +53373,10 @@ html {
|
|
|
52579
53373
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
52580
53374
|
}
|
|
52581
53375
|
|
|
53376
|
+
.lg\:hover\:psui-text-transparent:hover{
|
|
53377
|
+
color: transparent;
|
|
53378
|
+
}
|
|
53379
|
+
|
|
52582
53380
|
.lg\:active\:psui-text-white:active{
|
|
52583
53381
|
color: #ffffff !important;
|
|
52584
53382
|
}
|
|
@@ -52787,6 +53585,10 @@ html {
|
|
|
52787
53585
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
52788
53586
|
}
|
|
52789
53587
|
|
|
53588
|
+
.lg\:active\:psui-text-transparent:active{
|
|
53589
|
+
color: transparent;
|
|
53590
|
+
}
|
|
53591
|
+
|
|
52790
53592
|
.lg\:focus\:psui-text-white:focus{
|
|
52791
53593
|
color: #ffffff !important;
|
|
52792
53594
|
}
|
|
@@ -52995,6 +53797,10 @@ html {
|
|
|
52995
53797
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
52996
53798
|
}
|
|
52997
53799
|
|
|
53800
|
+
.lg\:focus\:psui-text-transparent:focus{
|
|
53801
|
+
color: transparent;
|
|
53802
|
+
}
|
|
53803
|
+
|
|
52998
53804
|
.psui-group:hover .lg\:group-hover\:psui-text-white{
|
|
52999
53805
|
color: #ffffff !important;
|
|
53000
53806
|
}
|
|
@@ -53203,6 +54009,10 @@ html {
|
|
|
53203
54009
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
53204
54010
|
}
|
|
53205
54011
|
|
|
54012
|
+
.psui-group:hover .lg\:group-hover\:psui-text-transparent{
|
|
54013
|
+
color: transparent;
|
|
54014
|
+
}
|
|
54015
|
+
|
|
53206
54016
|
.lg\:first\:psui-text-white:first-child{
|
|
53207
54017
|
color: #ffffff !important;
|
|
53208
54018
|
}
|
|
@@ -53411,6 +54221,10 @@ html {
|
|
|
53411
54221
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
53412
54222
|
}
|
|
53413
54223
|
|
|
54224
|
+
.lg\:first\:psui-text-transparent:first-child{
|
|
54225
|
+
color: transparent;
|
|
54226
|
+
}
|
|
54227
|
+
|
|
53414
54228
|
.lg\:disabled\:psui-text-white:disabled{
|
|
53415
54229
|
color: #ffffff !important;
|
|
53416
54230
|
}
|
|
@@ -53619,6 +54433,10 @@ html {
|
|
|
53619
54433
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
53620
54434
|
}
|
|
53621
54435
|
|
|
54436
|
+
.lg\:disabled\:psui-text-transparent:disabled{
|
|
54437
|
+
color: transparent;
|
|
54438
|
+
}
|
|
54439
|
+
|
|
53622
54440
|
.lg\:psui-text-opacity-0{
|
|
53623
54441
|
--text-opacity: 0;
|
|
53624
54442
|
}
|
|
@@ -57832,6 +58650,10 @@ html {
|
|
|
57832
58650
|
border-color: rgba(146, 120, 201, var(--divide-opacity));
|
|
57833
58651
|
}
|
|
57834
58652
|
|
|
58653
|
+
.xl\:psui-divide-transparent > :not(template) ~ :not(template){
|
|
58654
|
+
border-color: transparent;
|
|
58655
|
+
}
|
|
58656
|
+
|
|
57835
58657
|
.xl\:psui-divide-solid > :not(template) ~ :not(template){
|
|
57836
58658
|
border-style: solid;
|
|
57837
58659
|
}
|
|
@@ -58173,6 +58995,10 @@ html {
|
|
|
58173
58995
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
58174
58996
|
}
|
|
58175
58997
|
|
|
58998
|
+
.xl\:psui-bg-transparent{
|
|
58999
|
+
background-color: transparent;
|
|
59000
|
+
}
|
|
59001
|
+
|
|
58176
59002
|
.xl\:hover\:psui-bg-white:hover{
|
|
58177
59003
|
background-color: #ffffff !important;
|
|
58178
59004
|
}
|
|
@@ -58381,6 +59207,10 @@ html {
|
|
|
58381
59207
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
58382
59208
|
}
|
|
58383
59209
|
|
|
59210
|
+
.xl\:hover\:psui-bg-transparent:hover{
|
|
59211
|
+
background-color: transparent;
|
|
59212
|
+
}
|
|
59213
|
+
|
|
58384
59214
|
.xl\:active\:psui-bg-white:active{
|
|
58385
59215
|
background-color: #ffffff !important;
|
|
58386
59216
|
}
|
|
@@ -58589,6 +59419,10 @@ html {
|
|
|
58589
59419
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
58590
59420
|
}
|
|
58591
59421
|
|
|
59422
|
+
.xl\:active\:psui-bg-transparent:active{
|
|
59423
|
+
background-color: transparent;
|
|
59424
|
+
}
|
|
59425
|
+
|
|
58592
59426
|
.xl\:focus\:psui-bg-white:focus{
|
|
58593
59427
|
background-color: #ffffff !important;
|
|
58594
59428
|
}
|
|
@@ -58797,6 +59631,10 @@ html {
|
|
|
58797
59631
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
58798
59632
|
}
|
|
58799
59633
|
|
|
59634
|
+
.xl\:focus\:psui-bg-transparent:focus{
|
|
59635
|
+
background-color: transparent;
|
|
59636
|
+
}
|
|
59637
|
+
|
|
58800
59638
|
.psui-group:hover .xl\:group-hover\:psui-bg-white{
|
|
58801
59639
|
background-color: #ffffff !important;
|
|
58802
59640
|
}
|
|
@@ -59005,6 +59843,10 @@ html {
|
|
|
59005
59843
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
59006
59844
|
}
|
|
59007
59845
|
|
|
59846
|
+
.psui-group:hover .xl\:group-hover\:psui-bg-transparent{
|
|
59847
|
+
background-color: transparent;
|
|
59848
|
+
}
|
|
59849
|
+
|
|
59008
59850
|
.xl\:even\:psui-bg-white:nth-child(even){
|
|
59009
59851
|
background-color: #ffffff !important;
|
|
59010
59852
|
}
|
|
@@ -59213,6 +60055,10 @@ html {
|
|
|
59213
60055
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
59214
60056
|
}
|
|
59215
60057
|
|
|
60058
|
+
.xl\:even\:psui-bg-transparent:nth-child(even){
|
|
60059
|
+
background-color: transparent;
|
|
60060
|
+
}
|
|
60061
|
+
|
|
59216
60062
|
.xl\:first\:psui-bg-white:first-child{
|
|
59217
60063
|
background-color: #ffffff !important;
|
|
59218
60064
|
}
|
|
@@ -59421,6 +60267,10 @@ html {
|
|
|
59421
60267
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
59422
60268
|
}
|
|
59423
60269
|
|
|
60270
|
+
.xl\:first\:psui-bg-transparent:first-child{
|
|
60271
|
+
background-color: transparent;
|
|
60272
|
+
}
|
|
60273
|
+
|
|
59424
60274
|
.xl\:disabled\:psui-bg-white:disabled{
|
|
59425
60275
|
background-color: #ffffff !important;
|
|
59426
60276
|
}
|
|
@@ -59629,6 +60479,10 @@ html {
|
|
|
59629
60479
|
background-color: rgba(146, 120, 201, var(--bg-opacity));
|
|
59630
60480
|
}
|
|
59631
60481
|
|
|
60482
|
+
.xl\:disabled\:psui-bg-transparent:disabled{
|
|
60483
|
+
background-color: transparent;
|
|
60484
|
+
}
|
|
60485
|
+
|
|
59632
60486
|
.xl\:psui-bg-none{
|
|
59633
60487
|
background-image: none;
|
|
59634
60488
|
}
|
|
@@ -59840,6 +60694,11 @@ html {
|
|
|
59840
60694
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
59841
60695
|
}
|
|
59842
60696
|
|
|
60697
|
+
.xl\:psui-from-transparent{
|
|
60698
|
+
--gradient-from-color: transparent;
|
|
60699
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
60700
|
+
}
|
|
60701
|
+
|
|
59843
60702
|
.xl\:psui-via-white{
|
|
59844
60703
|
--gradient-via-color: #ffffff !important;
|
|
59845
60704
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -60015,6 +60874,11 @@ html {
|
|
|
60015
60874
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
60016
60875
|
}
|
|
60017
60876
|
|
|
60877
|
+
.xl\:psui-via-transparent{
|
|
60878
|
+
--gradient-via-color: transparent;
|
|
60879
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
60880
|
+
}
|
|
60881
|
+
|
|
60018
60882
|
.xl\:psui-to-white{
|
|
60019
60883
|
--gradient-to-color: #ffffff !important;
|
|
60020
60884
|
}
|
|
@@ -60155,6 +61019,10 @@ html {
|
|
|
60155
61019
|
--gradient-to-color: #9278C9;
|
|
60156
61020
|
}
|
|
60157
61021
|
|
|
61022
|
+
.xl\:psui-to-transparent{
|
|
61023
|
+
--gradient-to-color: transparent;
|
|
61024
|
+
}
|
|
61025
|
+
|
|
60158
61026
|
.xl\:hover\:psui-from-white:hover{
|
|
60159
61027
|
--gradient-from-color: #ffffff !important;
|
|
60160
61028
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -60330,6 +61198,11 @@ html {
|
|
|
60330
61198
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
60331
61199
|
}
|
|
60332
61200
|
|
|
61201
|
+
.xl\:hover\:psui-from-transparent:hover{
|
|
61202
|
+
--gradient-from-color: transparent;
|
|
61203
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
61204
|
+
}
|
|
61205
|
+
|
|
60333
61206
|
.xl\:hover\:psui-via-white:hover{
|
|
60334
61207
|
--gradient-via-color: #ffffff !important;
|
|
60335
61208
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -60505,6 +61378,11 @@ html {
|
|
|
60505
61378
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
60506
61379
|
}
|
|
60507
61380
|
|
|
61381
|
+
.xl\:hover\:psui-via-transparent:hover{
|
|
61382
|
+
--gradient-via-color: transparent;
|
|
61383
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
61384
|
+
}
|
|
61385
|
+
|
|
60508
61386
|
.xl\:hover\:psui-to-white:hover{
|
|
60509
61387
|
--gradient-to-color: #ffffff !important;
|
|
60510
61388
|
}
|
|
@@ -60645,6 +61523,10 @@ html {
|
|
|
60645
61523
|
--gradient-to-color: #9278C9;
|
|
60646
61524
|
}
|
|
60647
61525
|
|
|
61526
|
+
.xl\:hover\:psui-to-transparent:hover{
|
|
61527
|
+
--gradient-to-color: transparent;
|
|
61528
|
+
}
|
|
61529
|
+
|
|
60648
61530
|
.xl\:focus\:psui-from-white:focus{
|
|
60649
61531
|
--gradient-from-color: #ffffff !important;
|
|
60650
61532
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -60820,6 +61702,11 @@ html {
|
|
|
60820
61702
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
60821
61703
|
}
|
|
60822
61704
|
|
|
61705
|
+
.xl\:focus\:psui-from-transparent:focus{
|
|
61706
|
+
--gradient-from-color: transparent;
|
|
61707
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
61708
|
+
}
|
|
61709
|
+
|
|
60823
61710
|
.xl\:focus\:psui-via-white:focus{
|
|
60824
61711
|
--gradient-via-color: #ffffff !important;
|
|
60825
61712
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
|
|
@@ -60995,6 +61882,11 @@ html {
|
|
|
60995
61882
|
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(146, 120, 201, 0));
|
|
60996
61883
|
}
|
|
60997
61884
|
|
|
61885
|
+
.xl\:focus\:psui-via-transparent:focus{
|
|
61886
|
+
--gradient-via-color: transparent;
|
|
61887
|
+
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
|
|
61888
|
+
}
|
|
61889
|
+
|
|
60998
61890
|
.xl\:focus\:psui-to-white:focus{
|
|
60999
61891
|
--gradient-to-color: #ffffff !important;
|
|
61000
61892
|
}
|
|
@@ -61135,6 +62027,10 @@ html {
|
|
|
61135
62027
|
--gradient-to-color: #9278C9;
|
|
61136
62028
|
}
|
|
61137
62029
|
|
|
62030
|
+
.xl\:focus\:psui-to-transparent:focus{
|
|
62031
|
+
--gradient-to-color: transparent;
|
|
62032
|
+
}
|
|
62033
|
+
|
|
61138
62034
|
.xl\:psui-bg-opacity-0{
|
|
61139
62035
|
--bg-opacity: 0;
|
|
61140
62036
|
}
|
|
@@ -64934,6 +65830,18 @@ html {
|
|
|
64934
65830
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
64935
65831
|
}
|
|
64936
65832
|
|
|
65833
|
+
.xl\:psui-placeholder-transparent::-moz-placeholder{
|
|
65834
|
+
color: transparent;
|
|
65835
|
+
}
|
|
65836
|
+
|
|
65837
|
+
.xl\:psui-placeholder-transparent:-ms-input-placeholder{
|
|
65838
|
+
color: transparent;
|
|
65839
|
+
}
|
|
65840
|
+
|
|
65841
|
+
.xl\:psui-placeholder-transparent::placeholder{
|
|
65842
|
+
color: transparent;
|
|
65843
|
+
}
|
|
65844
|
+
|
|
64937
65845
|
.xl\:focus\:psui-placeholder-white:focus::-moz-placeholder{
|
|
64938
65846
|
color: #ffffff !important;
|
|
64939
65847
|
}
|
|
@@ -65558,6 +66466,18 @@ html {
|
|
|
65558
66466
|
color: rgba(146, 120, 201, var(--placeholder-opacity));
|
|
65559
66467
|
}
|
|
65560
66468
|
|
|
66469
|
+
.xl\:focus\:psui-placeholder-transparent:focus::-moz-placeholder{
|
|
66470
|
+
color: transparent;
|
|
66471
|
+
}
|
|
66472
|
+
|
|
66473
|
+
.xl\:focus\:psui-placeholder-transparent:focus:-ms-input-placeholder{
|
|
66474
|
+
color: transparent;
|
|
66475
|
+
}
|
|
66476
|
+
|
|
66477
|
+
.xl\:focus\:psui-placeholder-transparent:focus::placeholder{
|
|
66478
|
+
color: transparent;
|
|
66479
|
+
}
|
|
66480
|
+
|
|
65561
66481
|
.xl\:psui-placeholder-opacity-0::-moz-placeholder{
|
|
65562
66482
|
--placeholder-opacity: 0;
|
|
65563
66483
|
}
|
|
@@ -66041,6 +66961,10 @@ html {
|
|
|
66041
66961
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
66042
66962
|
}
|
|
66043
66963
|
|
|
66964
|
+
.xl\:psui-text-transparent{
|
|
66965
|
+
color: transparent;
|
|
66966
|
+
}
|
|
66967
|
+
|
|
66044
66968
|
.xl\:hover\:psui-text-white:hover{
|
|
66045
66969
|
color: #ffffff !important;
|
|
66046
66970
|
}
|
|
@@ -66249,6 +67173,10 @@ html {
|
|
|
66249
67173
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
66250
67174
|
}
|
|
66251
67175
|
|
|
67176
|
+
.xl\:hover\:psui-text-transparent:hover{
|
|
67177
|
+
color: transparent;
|
|
67178
|
+
}
|
|
67179
|
+
|
|
66252
67180
|
.xl\:active\:psui-text-white:active{
|
|
66253
67181
|
color: #ffffff !important;
|
|
66254
67182
|
}
|
|
@@ -66457,6 +67385,10 @@ html {
|
|
|
66457
67385
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
66458
67386
|
}
|
|
66459
67387
|
|
|
67388
|
+
.xl\:active\:psui-text-transparent:active{
|
|
67389
|
+
color: transparent;
|
|
67390
|
+
}
|
|
67391
|
+
|
|
66460
67392
|
.xl\:focus\:psui-text-white:focus{
|
|
66461
67393
|
color: #ffffff !important;
|
|
66462
67394
|
}
|
|
@@ -66665,6 +67597,10 @@ html {
|
|
|
66665
67597
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
66666
67598
|
}
|
|
66667
67599
|
|
|
67600
|
+
.xl\:focus\:psui-text-transparent:focus{
|
|
67601
|
+
color: transparent;
|
|
67602
|
+
}
|
|
67603
|
+
|
|
66668
67604
|
.psui-group:hover .xl\:group-hover\:psui-text-white{
|
|
66669
67605
|
color: #ffffff !important;
|
|
66670
67606
|
}
|
|
@@ -66873,6 +67809,10 @@ html {
|
|
|
66873
67809
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
66874
67810
|
}
|
|
66875
67811
|
|
|
67812
|
+
.psui-group:hover .xl\:group-hover\:psui-text-transparent{
|
|
67813
|
+
color: transparent;
|
|
67814
|
+
}
|
|
67815
|
+
|
|
66876
67816
|
.xl\:first\:psui-text-white:first-child{
|
|
66877
67817
|
color: #ffffff !important;
|
|
66878
67818
|
}
|
|
@@ -67081,6 +68021,10 @@ html {
|
|
|
67081
68021
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
67082
68022
|
}
|
|
67083
68023
|
|
|
68024
|
+
.xl\:first\:psui-text-transparent:first-child{
|
|
68025
|
+
color: transparent;
|
|
68026
|
+
}
|
|
68027
|
+
|
|
67084
68028
|
.xl\:disabled\:psui-text-white:disabled{
|
|
67085
68029
|
color: #ffffff !important;
|
|
67086
68030
|
}
|
|
@@ -67289,6 +68233,10 @@ html {
|
|
|
67289
68233
|
color: rgba(146, 120, 201, var(--text-opacity));
|
|
67290
68234
|
}
|
|
67291
68235
|
|
|
68236
|
+
.xl\:disabled\:psui-text-transparent:disabled{
|
|
68237
|
+
color: transparent;
|
|
68238
|
+
}
|
|
68239
|
+
|
|
67292
68240
|
.xl\:psui-text-opacity-0{
|
|
67293
68241
|
--text-opacity: 0;
|
|
67294
68242
|
}
|
|
@@ -70743,4 +71691,4 @@ html {
|
|
|
70743
71691
|
-webkit-animation: bounce 1s infinite;
|
|
70744
71692
|
animation: bounce 1s infinite;
|
|
70745
71693
|
}
|
|
70746
|
-
}
|
|
71694
|
+
}
|