@policystudio/policy-studio-ui-vue 1.0.30 → 1.0.33
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/.eslintrc.js +36 -35
- package/.storybook/preview.js +7 -1
- package/README.md +6 -2
- package/babel.config.js +1 -1
- package/dist/css/psui_styles.css +483 -143
- package/package.json +16 -5
- package/postcss.config.js +1 -1
- package/src/assets/images/multifamily-units.svg +10 -0
- package/src/assets/scss/base.scss +2 -0
- package/src/assets/scss/components/PsAccordion.scss +28 -11
- package/src/assets/scss/components/PsButton.scss +21 -4
- package/src/assets/scss/components/PsCardInfos.scss +1 -1
- package/src/assets/scss/components/PsCheckbox.scss +4 -5
- package/src/assets/scss/components/PsChips.scss +17 -12
- package/src/assets/scss/components/PsDataTable.scss +17 -0
- package/src/assets/scss/components/PsDialog.scss +5 -2
- package/src/assets/scss/components/PsDraggable.scss +64 -0
- package/src/assets/scss/components/PsDropdown.scss +9 -24
- package/src/assets/scss/components/PsDropdownList.scss +19 -0
- package/src/assets/scss/components/PsInput.scss +8 -3
- package/src/assets/scss/components/PsInputSelect.scss +6 -3
- package/src/assets/scss/components/PsInputTextArea.scss +5 -2
- package/src/assets/scss/components/PsRadioButton.scss +5 -5
- package/src/assets/scss/components/PsSwitch.scss +4 -4
- package/src/assets/scss/components/PsTabHeader.scss +14 -0
- package/src/assets/scss/components/PsToast.scss +3 -3
- package/src/assets/scss/components/PsToggle.scss +6 -2
- package/src/assets/scss/components/PsTooltip.scss +50 -18
- package/src/components/accordion/PsAccordion.vue +7 -23
- package/src/components/accordion/PsAccordionItem.vue +42 -26
- package/src/components/badges-and-tags/PsCardInfos.vue +12 -0
- package/src/components/badges-and-tags/PsChartLegend.vue +13 -0
- package/src/components/badges-and-tags/PsClimateZoneBadge.vue +7 -0
- package/src/components/badges-and-tags/PsCostEffectBar.vue +6 -0
- package/src/components/badges-and-tags/PsHighlightRippleDot.vue +3 -1
- package/src/components/badges-and-tags/PsMiniTag.vue +6 -0
- package/src/components/badges-and-tags/PsProgressBar.vue +17 -9
- package/src/components/buttons/PsButton.vue +22 -1
- package/src/components/chips/PsChips.vue +33 -12
- package/src/components/controls/PsCheckbox.vue +32 -16
- package/src/components/controls/PsDraggable.vue +39 -150
- package/src/components/controls/PsInlineSelector.vue +30 -0
- package/src/components/controls/PsRadioButton.vue +28 -15
- package/src/components/controls/PsSwitch.vue +17 -11
- package/src/components/controls/PsToggle.vue +33 -12
- package/src/components/datatable/PsDataTable.vue +21 -1
- package/src/components/datatable/PsDataTableItem.vue +1 -1
- package/src/components/forms/PsDropdown.vue +73 -101
- package/src/components/forms/PsDropdownList.vue +82 -0
- package/src/components/forms/PsInput.vue +28 -1
- package/src/components/forms/PsInputSelect.vue +21 -0
- package/src/components/forms/PsInputTextArea.vue +54 -41
- package/src/components/notifications/PsDialog.vue +15 -0
- package/src/components/notifications/PsToast.vue +12 -0
- package/src/components/playground/PsScrollBar.vue +248 -0
- package/src/components/tabs/PsTabHeader.vue +31 -5
- package/src/components/tooltip/PsDialogTooltip.vue +107 -24
- package/src/components/tooltip/PsRichTooltip.vue +12 -9
- package/src/components/tooltip/PsTooltip.vue +27 -11
- package/src/components/ui/PsIcon.vue +30 -0
- package/src/index.js +30 -2
- package/src/stories/Accordion.stories.js +12 -48
- package/src/stories/Button.stories.js +30 -7
- package/src/stories/Chips.stories.js +11 -24
- package/src/stories/Dropdown.stories.js +81 -14
- package/src/stories/Icon.stories.js +21 -0
- package/src/stories/InlineSelector.stories.js +1 -1
- package/src/stories/Playground.stories.js +16 -0
- package/src/stories/Switch.stories.js +8 -2
- package/src/stories/Toast.stories.js +16 -16
- package/src/stories/Tooltip.stories.js +6 -6
- package/src/stories/Typography.stories.mdx +22 -18
- package/src/util/GeneralFunctions.js +8 -0
- package/src/util/imageLoader.js +1 -1
- package/tailwind.config.js +7 -3
- package/vetur/attributes.json +1376 -0
- package/vetur/tags.json +632 -0
- package/src/components/forms/PsDropdownCopy.vue +0 -212
package/dist/css/psui_styles.css
CHANGED
|
@@ -7371,6 +7371,16 @@ video {
|
|
|
7371
7371
|
cursor: not-allowed;
|
|
7372
7372
|
}
|
|
7373
7373
|
|
|
7374
|
+
.psui-cursor-grab{
|
|
7375
|
+
cursor: -webkit-grab;
|
|
7376
|
+
cursor: grab;
|
|
7377
|
+
}
|
|
7378
|
+
|
|
7379
|
+
.psui-cursor-grabbing{
|
|
7380
|
+
cursor: -webkit-grabbing;
|
|
7381
|
+
cursor: grabbing;
|
|
7382
|
+
}
|
|
7383
|
+
|
|
7374
7384
|
.psui-block{
|
|
7375
7385
|
display: block;
|
|
7376
7386
|
}
|
|
@@ -8024,17 +8034,17 @@ video {
|
|
|
8024
8034
|
|
|
8025
8035
|
.psui-text-p{
|
|
8026
8036
|
font-size: 16px;
|
|
8027
|
-
line-height:
|
|
8037
|
+
line-height: 130%;
|
|
8028
8038
|
}
|
|
8029
8039
|
|
|
8030
8040
|
.psui-text-h1{
|
|
8031
8041
|
font-size: 28px;
|
|
8032
|
-
line-height:
|
|
8042
|
+
line-height: 130%;
|
|
8033
8043
|
}
|
|
8034
8044
|
|
|
8035
8045
|
.psui-text-h2{
|
|
8036
8046
|
font-size: 24px;
|
|
8037
|
-
line-height:
|
|
8047
|
+
line-height: 130%;
|
|
8038
8048
|
}
|
|
8039
8049
|
|
|
8040
8050
|
.psui-text-h3{
|
|
@@ -17171,6 +17181,143 @@ html {
|
|
|
17171
17181
|
-webkit-font-smoothing: antialiased;
|
|
17172
17182
|
}
|
|
17173
17183
|
|
|
17184
|
+
.psui-el-draggable {
|
|
17185
|
+
width: 100%;
|
|
17186
|
+
display: flex;
|
|
17187
|
+
flex-wrap: wrap;
|
|
17188
|
+
justify-content: flex-start;
|
|
17189
|
+
grid-gap: 0.5rem;
|
|
17190
|
+
gap: 0.5rem;
|
|
17191
|
+
}
|
|
17192
|
+
|
|
17193
|
+
.psui-el-draggable .psui-el-draggable-wrapper {
|
|
17194
|
+
width: 100%;
|
|
17195
|
+
border-radius: 0.5rem;
|
|
17196
|
+
--bg-opacity: 1;
|
|
17197
|
+
background-color: #E6ECF2;
|
|
17198
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
17199
|
+
padding: 0.5rem;
|
|
17200
|
+
display: flex;
|
|
17201
|
+
align-items: center;
|
|
17202
|
+
flex-direction: column;
|
|
17203
|
+
padding: 8px 8px 0px 8px;
|
|
17204
|
+
}
|
|
17205
|
+
|
|
17206
|
+
.psui-el-draggable .psui-el-draggable-title {
|
|
17207
|
+
width: 100%;
|
|
17208
|
+
display: flex;
|
|
17209
|
+
border-radius: 0.125rem;
|
|
17210
|
+
align-items: center;
|
|
17211
|
+
cursor: -webkit-grab;
|
|
17212
|
+
cursor: grab;
|
|
17213
|
+
vertical-align: middle;
|
|
17214
|
+
}
|
|
17215
|
+
|
|
17216
|
+
.psui-el-draggable .psui-el-draggable-title:active {
|
|
17217
|
+
cursor: -webkit-grabbing;
|
|
17218
|
+
cursor: grabbing;
|
|
17219
|
+
}
|
|
17220
|
+
|
|
17221
|
+
.psui-el-draggable .psui-el-draggable-title{
|
|
17222
|
+
padding: 6px 16px;
|
|
17223
|
+
}
|
|
17224
|
+
|
|
17225
|
+
.psui-el-draggable .psui-el-draggable-title h2 {
|
|
17226
|
+
width: 100%;
|
|
17227
|
+
--text-opacity: 1;
|
|
17228
|
+
color: #28323B;
|
|
17229
|
+
color: rgba(40, 50, 59, var(--text-opacity));
|
|
17230
|
+
font-weight: 700;
|
|
17231
|
+
text-transform: uppercase;
|
|
17232
|
+
font-size: 12px;
|
|
17233
|
+
}
|
|
17234
|
+
|
|
17235
|
+
.psui-el-draggable .psui-el-draggable-title i {
|
|
17236
|
+
font-family: 'Material Icons Round';
|
|
17237
|
+
font-weight: normal;
|
|
17238
|
+
font-style: normal;
|
|
17239
|
+
font-size: 24px;
|
|
17240
|
+
line-height: 1;
|
|
17241
|
+
letter-spacing: normal;
|
|
17242
|
+
text-transform: none;
|
|
17243
|
+
display: inline-block;
|
|
17244
|
+
white-space: nowrap;
|
|
17245
|
+
word-wrap: normal;
|
|
17246
|
+
direction: ltr;
|
|
17247
|
+
-webkit-font-feature-settings: 'liga';
|
|
17248
|
+
-webkit-font-smoothing: antialiased;
|
|
17249
|
+
--text-opacity: 1;
|
|
17250
|
+
color: #A2ACB7;
|
|
17251
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
17252
|
+
font-size: 18px;
|
|
17253
|
+
}
|
|
17254
|
+
|
|
17255
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper {
|
|
17256
|
+
width: 100%;
|
|
17257
|
+
display: flex;
|
|
17258
|
+
flex-wrap: wrap;
|
|
17259
|
+
}
|
|
17260
|
+
|
|
17261
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper li {
|
|
17262
|
+
width: 100%;
|
|
17263
|
+
margin-bottom: 0.5rem;
|
|
17264
|
+
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.03), 0px 1px 2px rgba(0, 0, 0, 0.1);
|
|
17265
|
+
background-color: #ffffff;
|
|
17266
|
+
border-radius: 0.25rem;
|
|
17267
|
+
display: flex;
|
|
17268
|
+
align-items: center;
|
|
17269
|
+
padding: 7px 16px;
|
|
17270
|
+
}
|
|
17271
|
+
|
|
17272
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper li:hover {
|
|
17273
|
+
--text-opacity: 1;
|
|
17274
|
+
color: #798490;
|
|
17275
|
+
color: rgba(121, 132, 144, var(--text-opacity));
|
|
17276
|
+
cursor: -webkit-grab;
|
|
17277
|
+
cursor: grab
|
|
17278
|
+
}
|
|
17279
|
+
|
|
17280
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper li:active {
|
|
17281
|
+
cursor: -webkit-grabbing;
|
|
17282
|
+
cursor: grabbing
|
|
17283
|
+
}
|
|
17284
|
+
|
|
17285
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper .psui-el-draggable-item-wrapper {
|
|
17286
|
+
-webkit-user-select: none;
|
|
17287
|
+
-moz-user-select: none;
|
|
17288
|
+
-ms-user-select: none;
|
|
17289
|
+
user-select: none;
|
|
17290
|
+
width: 100%;
|
|
17291
|
+
display: flex;
|
|
17292
|
+
align-items: center
|
|
17293
|
+
}
|
|
17294
|
+
|
|
17295
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper .psui-el-draggable-item-icon {
|
|
17296
|
+
display: flex;
|
|
17297
|
+
justify-content: flex-end;
|
|
17298
|
+
margin-left: auto;
|
|
17299
|
+
}
|
|
17300
|
+
|
|
17301
|
+
.psui-el-draggable .psui-el-draggable-list-items-wrapper .psui-el-draggable-item-icon i {
|
|
17302
|
+
font-family: 'Material Icons Round';
|
|
17303
|
+
font-weight: normal;
|
|
17304
|
+
font-style: normal;
|
|
17305
|
+
font-size: 24px;
|
|
17306
|
+
line-height: 1;
|
|
17307
|
+
letter-spacing: normal;
|
|
17308
|
+
text-transform: none;
|
|
17309
|
+
display: inline-block;
|
|
17310
|
+
white-space: nowrap;
|
|
17311
|
+
word-wrap: normal;
|
|
17312
|
+
direction: ltr;
|
|
17313
|
+
-webkit-font-feature-settings: 'liga';
|
|
17314
|
+
-webkit-font-smoothing: antialiased;
|
|
17315
|
+
--text-opacity: 1;
|
|
17316
|
+
color: #D6DDE5;
|
|
17317
|
+
color: rgba(214, 221, 229, var(--text-opacity));
|
|
17318
|
+
font-size: 18px;
|
|
17319
|
+
}
|
|
17320
|
+
|
|
17174
17321
|
.psui-el-input-select {
|
|
17175
17322
|
width: 100%;
|
|
17176
17323
|
display: flex;
|
|
@@ -17180,6 +17327,7 @@ html {
|
|
|
17180
17327
|
color: #A2ACB7;
|
|
17181
17328
|
color: rgba(162, 172, 183, var(--text-opacity));
|
|
17182
17329
|
box-sizing: border-box;
|
|
17330
|
+
transition: ease 130ms;
|
|
17183
17331
|
}
|
|
17184
17332
|
|
|
17185
17333
|
.psui-el-input-select.disabled {
|
|
@@ -17229,7 +17377,7 @@ html {
|
|
|
17229
17377
|
content: 'arrow_drop_down';
|
|
17230
17378
|
font-family: 'Material Icons Round';
|
|
17231
17379
|
font-size: 24px;
|
|
17232
|
-
top:
|
|
17380
|
+
top: 38px;
|
|
17233
17381
|
right: 15px;
|
|
17234
17382
|
z-index: -20;
|
|
17235
17383
|
}
|
|
@@ -17277,12 +17425,12 @@ html {
|
|
|
17277
17425
|
--text-opacity: 1;
|
|
17278
17426
|
color: #28323B;
|
|
17279
17427
|
color: rgba(40, 50, 59, var(--text-opacity));
|
|
17280
|
-
font-size: 16px;
|
|
17281
|
-
line-height: 130%;
|
|
17282
17428
|
align-items: center;
|
|
17283
17429
|
width: 100%;
|
|
17284
17430
|
font-weight: 700;
|
|
17285
|
-
pointer-events: none
|
|
17431
|
+
pointer-events: none;
|
|
17432
|
+
font-size: 16px;
|
|
17433
|
+
line-height: 32px;
|
|
17286
17434
|
}
|
|
17287
17435
|
|
|
17288
17436
|
.psui-el-input-select .psui-el-input-helper {
|
|
@@ -17290,7 +17438,7 @@ html {
|
|
|
17290
17438
|
color: #798490;
|
|
17291
17439
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
17292
17440
|
font-size: 12px;
|
|
17293
|
-
line-height:
|
|
17441
|
+
line-height: 24px;
|
|
17294
17442
|
}
|
|
17295
17443
|
|
|
17296
17444
|
.psui-el-input-select.layout-mini select {
|
|
@@ -17388,6 +17536,7 @@ html {
|
|
|
17388
17536
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper {
|
|
17389
17537
|
display: flex;
|
|
17390
17538
|
flex-direction: column;
|
|
17539
|
+
transition: ease 130ms;
|
|
17391
17540
|
}
|
|
17392
17541
|
|
|
17393
17542
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper label {
|
|
@@ -17398,7 +17547,9 @@ html {
|
|
|
17398
17547
|
font-size: 16px;
|
|
17399
17548
|
line-height: 130%;
|
|
17400
17549
|
padding-top: 0.25rem;
|
|
17401
|
-
padding-bottom: 0.25rem
|
|
17550
|
+
padding-bottom: 0.25rem;
|
|
17551
|
+
font-size: 16px;
|
|
17552
|
+
line-height: 32px;
|
|
17402
17553
|
}
|
|
17403
17554
|
|
|
17404
17555
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea {
|
|
@@ -17452,7 +17603,7 @@ html {
|
|
|
17452
17603
|
display: flex;
|
|
17453
17604
|
font-weight: 400;
|
|
17454
17605
|
font-size: 12px;
|
|
17455
|
-
line-height:
|
|
17606
|
+
line-height: 24px;
|
|
17456
17607
|
padding: 5px 0px;
|
|
17457
17608
|
}
|
|
17458
17609
|
|
|
@@ -17462,24 +17613,22 @@ html {
|
|
|
17462
17613
|
|
|
17463
17614
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog {
|
|
17464
17615
|
position: fixed;
|
|
17465
|
-
display: none;
|
|
17466
17616
|
opacity: 0;
|
|
17467
17617
|
transition-property: opacity;
|
|
17468
|
-
transition-duration:
|
|
17618
|
+
transition-duration: 300ms;
|
|
17469
17619
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
17620
|
+
transition-delay: 0.4s;
|
|
17470
17621
|
}
|
|
17471
17622
|
|
|
17472
17623
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content {
|
|
17473
17624
|
display: flex;
|
|
17474
17625
|
flex-direction: column;
|
|
17475
|
-
border-radius: 0.375rem;
|
|
17476
|
-
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
17477
|
-
z-index: 20;
|
|
17478
17626
|
--bg-opacity: 1;
|
|
17479
17627
|
background-color: #798490;
|
|
17480
17628
|
background-color: rgba(121, 132, 144, var(--bg-opacity));
|
|
17481
17629
|
color: #ffffff;
|
|
17482
|
-
padding: 5px 8px;
|
|
17630
|
+
padding: 5px 8px 4px 8px;
|
|
17631
|
+
border-radius: 4px;
|
|
17483
17632
|
}
|
|
17484
17633
|
|
|
17485
17634
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content h2 {
|
|
@@ -17499,9 +17648,10 @@ html {
|
|
|
17499
17648
|
--text-opacity: 1;
|
|
17500
17649
|
color: #28323B;
|
|
17501
17650
|
color: rgba(40, 50, 59, var(--text-opacity));
|
|
17502
|
-
|
|
17651
|
+
box-shadow: none;
|
|
17503
17652
|
font-size: 12px;
|
|
17504
17653
|
line-height: 120%;
|
|
17654
|
+
padding: 10px 16px 12px 16px;
|
|
17505
17655
|
}
|
|
17506
17656
|
|
|
17507
17657
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-gray .psui-el-tooltip-content-wrapper {
|
|
@@ -17514,9 +17664,10 @@ html {
|
|
|
17514
17664
|
background-color: #00465F;
|
|
17515
17665
|
background-color: rgba(0, 70, 95, var(--bg-opacity));
|
|
17516
17666
|
color: #ffffff;
|
|
17517
|
-
|
|
17667
|
+
box-shadow: none;
|
|
17518
17668
|
font-size: 12px;
|
|
17519
17669
|
line-height: 120%;
|
|
17670
|
+
padding: 10px 16px 12px 16px;
|
|
17520
17671
|
}
|
|
17521
17672
|
|
|
17522
17673
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-blue .psui-el-tooltip-content-wrapper {
|
|
@@ -17531,9 +17682,10 @@ html {
|
|
|
17531
17682
|
--text-opacity: 1;
|
|
17532
17683
|
color: #AA3937;
|
|
17533
17684
|
color: rgba(170, 57, 55, var(--text-opacity));
|
|
17534
|
-
|
|
17685
|
+
box-shadow: none;
|
|
17535
17686
|
font-size: 12px;
|
|
17536
17687
|
line-height: 120%;
|
|
17688
|
+
padding: 10px 16px 12px 16px;
|
|
17537
17689
|
}
|
|
17538
17690
|
|
|
17539
17691
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-red .psui-el-tooltip-content-wrapper {
|
|
@@ -17548,9 +17700,9 @@ html {
|
|
|
17548
17700
|
padding-left: 1.5rem;
|
|
17549
17701
|
padding-right: 1.5rem;
|
|
17550
17702
|
display: flex;
|
|
17551
|
-
grid-gap: 0.75rem;
|
|
17552
|
-
gap: 0.75rem;
|
|
17553
17703
|
flex-direction: column;
|
|
17704
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.15);
|
|
17705
|
+
gap: 8.8px;
|
|
17554
17706
|
}
|
|
17555
17707
|
|
|
17556
17708
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-white h2 {
|
|
@@ -17566,13 +17718,12 @@ html {
|
|
|
17566
17718
|
--text-opacity: 1;
|
|
17567
17719
|
color: #798490;
|
|
17568
17720
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
17569
|
-
font-size: 14px;
|
|
17570
|
-
line-height: 130%;
|
|
17571
17721
|
font-weight: 400;
|
|
17572
17722
|
display: flex;
|
|
17573
17723
|
flex-direction: column;
|
|
17574
|
-
|
|
17575
|
-
|
|
17724
|
+
gap: 13.6px;
|
|
17725
|
+
font-size: 14px;
|
|
17726
|
+
line-height: 120%;
|
|
17576
17727
|
}
|
|
17577
17728
|
|
|
17578
17729
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-white .psui-el-tooltip-content-wrapper button {
|
|
@@ -17583,12 +17734,17 @@ html {
|
|
|
17583
17734
|
--text-opacity: 1;
|
|
17584
17735
|
color: #318FAC;
|
|
17585
17736
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
17737
|
+
font-weight: 700;
|
|
17586
17738
|
padding: 7px 16px;
|
|
17587
17739
|
width: -webkit-fit-content;
|
|
17588
17740
|
width: -moz-fit-content;
|
|
17589
17741
|
width: fit-content;
|
|
17590
17742
|
}
|
|
17591
17743
|
|
|
17744
|
+
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-white .psui-el-tooltip-content-wrapper button:focus {
|
|
17745
|
+
outline: none;
|
|
17746
|
+
}
|
|
17747
|
+
|
|
17592
17748
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark {
|
|
17593
17749
|
--bg-opacity: 1;
|
|
17594
17750
|
background-color: #00465F;
|
|
@@ -17598,9 +17754,9 @@ html {
|
|
|
17598
17754
|
padding-left: 1.5rem;
|
|
17599
17755
|
padding-right: 1.5rem;
|
|
17600
17756
|
display: flex;
|
|
17601
|
-
grid-gap: 0.75rem;
|
|
17602
|
-
gap: 0.75rem;
|
|
17603
17757
|
flex-direction: column;
|
|
17758
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.15);
|
|
17759
|
+
gap: 8.8px;
|
|
17604
17760
|
}
|
|
17605
17761
|
|
|
17606
17762
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark h2 {
|
|
@@ -17612,13 +17768,12 @@ html {
|
|
|
17612
17768
|
|
|
17613
17769
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark .psui-el-tooltip-content-wrapper {
|
|
17614
17770
|
color: #ffffff;
|
|
17615
|
-
font-size: 14px;
|
|
17616
|
-
line-height: 130%;
|
|
17617
17771
|
font-weight: 400;
|
|
17618
17772
|
display: flex;
|
|
17619
17773
|
flex-direction: column;
|
|
17620
|
-
|
|
17621
|
-
|
|
17774
|
+
gap: 13.6px;
|
|
17775
|
+
font-size: 14px;
|
|
17776
|
+
line-height: 120%;
|
|
17622
17777
|
}
|
|
17623
17778
|
|
|
17624
17779
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark .psui-el-tooltip-content-wrapper button {
|
|
@@ -17627,12 +17782,17 @@ html {
|
|
|
17627
17782
|
background-color: #318FAC;
|
|
17628
17783
|
background-color: rgba(49, 143, 172, var(--bg-opacity));
|
|
17629
17784
|
color: #ffffff;
|
|
17785
|
+
font-weight: 700;
|
|
17630
17786
|
padding: 7px 16px;
|
|
17631
17787
|
width: -webkit-fit-content;
|
|
17632
17788
|
width: -moz-fit-content;
|
|
17633
17789
|
width: fit-content;
|
|
17634
17790
|
}
|
|
17635
17791
|
|
|
17792
|
+
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark .psui-el-tooltip-content-wrapper button:focus {
|
|
17793
|
+
outline: none;
|
|
17794
|
+
}
|
|
17795
|
+
|
|
17636
17796
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color {
|
|
17637
17797
|
--bg-opacity: 1;
|
|
17638
17798
|
background-color: #64B5CE;
|
|
@@ -17642,9 +17802,9 @@ html {
|
|
|
17642
17802
|
padding-left: 1.5rem;
|
|
17643
17803
|
padding-right: 1.5rem;
|
|
17644
17804
|
display: flex;
|
|
17645
|
-
grid-gap: 0.75rem;
|
|
17646
|
-
gap: 0.75rem;
|
|
17647
17805
|
flex-direction: column;
|
|
17806
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.15);
|
|
17807
|
+
gap: 8.8px;
|
|
17648
17808
|
}
|
|
17649
17809
|
|
|
17650
17810
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color h2 {
|
|
@@ -17656,13 +17816,12 @@ html {
|
|
|
17656
17816
|
|
|
17657
17817
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper {
|
|
17658
17818
|
color: #ffffff;
|
|
17659
|
-
font-size: 14px;
|
|
17660
|
-
line-height: 130%;
|
|
17661
17819
|
font-weight: 400;
|
|
17662
17820
|
display: flex;
|
|
17663
17821
|
flex-direction: column;
|
|
17664
|
-
|
|
17665
|
-
|
|
17822
|
+
gap: 13.6px;
|
|
17823
|
+
font-size: 14px;
|
|
17824
|
+
line-height: 120%;
|
|
17666
17825
|
}
|
|
17667
17826
|
|
|
17668
17827
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper button {
|
|
@@ -17671,12 +17830,17 @@ html {
|
|
|
17671
17830
|
background-color: #318FAC;
|
|
17672
17831
|
background-color: rgba(49, 143, 172, var(--bg-opacity));
|
|
17673
17832
|
color: #ffffff;
|
|
17833
|
+
font-weight: 700;
|
|
17674
17834
|
padding: 7px 16px;
|
|
17675
17835
|
width: -webkit-fit-content;
|
|
17676
17836
|
width: -moz-fit-content;
|
|
17677
17837
|
width: fit-content;
|
|
17678
17838
|
}
|
|
17679
17839
|
|
|
17840
|
+
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper button:focus {
|
|
17841
|
+
outline: none;
|
|
17842
|
+
}
|
|
17843
|
+
|
|
17680
17844
|
.psui-el-inline-selector {
|
|
17681
17845
|
width: auto;
|
|
17682
17846
|
max-width: 100%;
|
|
@@ -17928,6 +18092,7 @@ html {
|
|
|
17928
18092
|
padding-right: 1rem;
|
|
17929
18093
|
border-radius: 0.375rem;
|
|
17930
18094
|
font-weight: 700;
|
|
18095
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
17931
18096
|
}
|
|
17932
18097
|
|
|
17933
18098
|
.psui-el-toast .psui-el-toast-icon {
|
|
@@ -17943,7 +18108,9 @@ html {
|
|
|
17943
18108
|
.psui-el-toast .psui-el-toast-actions {
|
|
17944
18109
|
display: flex;
|
|
17945
18110
|
grid-gap: 1rem;
|
|
17946
|
-
gap: 1rem
|
|
18111
|
+
gap: 1rem;
|
|
18112
|
+
font-size: 12px;
|
|
18113
|
+
line-height: 130%;
|
|
17947
18114
|
}
|
|
17948
18115
|
|
|
17949
18116
|
.psui-el-toast.fill-intense.layout-info {
|
|
@@ -17976,7 +18143,7 @@ html {
|
|
|
17976
18143
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
17977
18144
|
--bg-opacity: 1;
|
|
17978
18145
|
background-color: #E0EFF6;
|
|
17979
|
-
background-color: rgba(224, 239, 246, var(--bg-opacity))
|
|
18146
|
+
background-color: rgba(224, 239, 246, var(--bg-opacity));
|
|
17980
18147
|
}
|
|
17981
18148
|
|
|
17982
18149
|
.psui-el-toast.fill-soft.layout-success {
|
|
@@ -18018,29 +18185,48 @@ html {
|
|
|
18018
18185
|
line-height: 130%
|
|
18019
18186
|
}
|
|
18020
18187
|
|
|
18021
|
-
.psui-el-dropdown-menu {
|
|
18022
|
-
|
|
18023
|
-
|
|
18024
|
-
|
|
18025
|
-
|
|
18026
|
-
padding: 0px 20px;
|
|
18027
|
-
width: 230px;
|
|
18188
|
+
.psui-el-dropdown-menu-list {
|
|
18189
|
+
width: 100%;
|
|
18190
|
+
font-weight: 700;
|
|
18191
|
+
margin-top: 0.75rem;
|
|
18192
|
+
margin-bottom: 0.75rem;
|
|
18028
18193
|
}
|
|
18029
18194
|
|
|
18030
|
-
.psui-el-dropdown-menu
|
|
18031
|
-
|
|
18032
|
-
--bg-opacity: 1;
|
|
18033
|
-
background-color: #ECF7FB;
|
|
18034
|
-
background-color: rgba(236, 247, 251, var(--bg-opacity));
|
|
18195
|
+
.psui-el-dropdown-menu-list li {
|
|
18196
|
+
width: 100%;
|
|
18035
18197
|
--text-opacity: 1;
|
|
18036
|
-
color: #
|
|
18037
|
-
color: rgba(
|
|
18198
|
+
color: #515E6A;
|
|
18199
|
+
color: rgba(81, 94, 106, var(--text-opacity));
|
|
18200
|
+
font-size: 14px;
|
|
18201
|
+
line-height: 130%;
|
|
18202
|
+
list-style-type: none;
|
|
18203
|
+
display: flex;
|
|
18204
|
+
flex-direction: column;
|
|
18205
|
+
cursor: pointer;
|
|
18206
|
+
padding: 7px 20px;
|
|
18207
|
+
font-weight: 700;
|
|
18038
18208
|
}
|
|
18039
18209
|
|
|
18040
|
-
.psui-el-dropdown-menu
|
|
18041
|
-
|
|
18210
|
+
.psui-el-dropdown-menu-list li:hover {
|
|
18211
|
+
--text-opacity: 1;
|
|
18212
|
+
color: #318FAC;
|
|
18213
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
18214
|
+
--bg-opacity: 1;
|
|
18215
|
+
background-color: #ECF7FB;
|
|
18216
|
+
background-color: rgba(236, 247, 251, var(--bg-opacity));
|
|
18217
|
+
}
|
|
18218
|
+
|
|
18219
|
+
.psui-el-dropdown-menu-list li span {
|
|
18220
|
+
width: 100%;
|
|
18221
|
+
}
|
|
18222
|
+
|
|
18223
|
+
.psui-el-dropdown-menu {
|
|
18224
|
+
position: relative;
|
|
18225
|
+
display: inline-block;
|
|
18226
|
+
text-align: left;
|
|
18227
|
+
}
|
|
18042
18228
|
|
|
18043
|
-
.psui-el-dropdown-menu
|
|
18229
|
+
.psui-el-dropdown-menu button {
|
|
18044
18230
|
display: inline-flex;
|
|
18045
18231
|
justify-content: center;
|
|
18046
18232
|
align-items: center;
|
|
@@ -18054,37 +18240,30 @@ html {
|
|
|
18054
18240
|
font-size: 0.875rem;
|
|
18055
18241
|
}
|
|
18056
18242
|
|
|
18057
|
-
.psui-el-dropdown-menu
|
|
18243
|
+
.psui-el-dropdown-menu button:focus {
|
|
18058
18244
|
outline: none;
|
|
18059
18245
|
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
|
|
18060
18246
|
}
|
|
18061
18247
|
|
|
18062
|
-
.psui-el-dropdown-menu-dialog {
|
|
18248
|
+
.psui-el-dropdown-menu-dialog-wrapper {
|
|
18063
18249
|
display: none;
|
|
18064
18250
|
transform-origin: top right;
|
|
18251
|
+
background-color: #ffffff;
|
|
18065
18252
|
position: fixed;
|
|
18066
|
-
margin-top: 0.5rem;
|
|
18067
18253
|
width: auto;
|
|
18068
|
-
border-radius: 0.
|
|
18069
|
-
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.15);
|
|
18254
|
+
border-radius: 0.375rem;
|
|
18070
18255
|
z-index: 50;
|
|
18071
18256
|
opacity: 0;
|
|
18072
|
-
|
|
18257
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
18258
|
+
transition-property: all;
|
|
18259
|
+
transition-duration: 100ms;
|
|
18260
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
18073
18261
|
}
|
|
18074
18262
|
|
|
18075
|
-
.psui-el-dropdown-menu-dialog-
|
|
18263
|
+
.psui-el-dropdown-menu-dialog-wrapper-dialog {
|
|
18076
18264
|
width: 100%;
|
|
18077
18265
|
}
|
|
18078
18266
|
|
|
18079
|
-
.psui-el-dropdown-menu-dialog-category-divider h2 {
|
|
18080
|
-
--text-opacity: 1;
|
|
18081
|
-
color: #E6ECF2;
|
|
18082
|
-
color: rgba(230, 236, 242, var(--text-opacity));
|
|
18083
|
-
font-weight: 700;
|
|
18084
|
-
white-space: nowrap;
|
|
18085
|
-
margin-bottom: 1rem;
|
|
18086
|
-
}
|
|
18087
|
-
|
|
18088
18267
|
.psui-el-simple-progress-bar {
|
|
18089
18268
|
position: relative;
|
|
18090
18269
|
height: 0.5rem;
|
|
@@ -18148,7 +18327,7 @@ html {
|
|
|
18148
18327
|
border-radius: 9999px;
|
|
18149
18328
|
transition-property: all;
|
|
18150
18329
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
18151
|
-
transition-duration:
|
|
18330
|
+
transition-duration: 300ms;
|
|
18152
18331
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
18153
18332
|
box-shadow: 0 0 98px 6px rgba(0, 0, 0, 0.2);
|
|
18154
18333
|
left: 2px;
|
|
@@ -18170,7 +18349,7 @@ html {
|
|
|
18170
18349
|
border-radius: 9999px;
|
|
18171
18350
|
transition-property: all;
|
|
18172
18351
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
18173
|
-
transition-duration:
|
|
18352
|
+
transition-duration: 300ms;
|
|
18174
18353
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
18175
18354
|
box-shadow: 0 0 98px 6px rgba(0, 0, 0, 0.2);
|
|
18176
18355
|
left: 16px;
|
|
@@ -18214,7 +18393,7 @@ html {
|
|
|
18214
18393
|
border-radius: 9999px;
|
|
18215
18394
|
transition-property: all;
|
|
18216
18395
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
18217
|
-
transition-duration:
|
|
18396
|
+
transition-duration: 300ms;
|
|
18218
18397
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
18219
18398
|
left: 2px;
|
|
18220
18399
|
top: 2px;
|
|
@@ -18235,7 +18414,7 @@ html {
|
|
|
18235
18414
|
border-radius: 9999px;
|
|
18236
18415
|
transition-property: all;
|
|
18237
18416
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
18238
|
-
transition-duration:
|
|
18417
|
+
transition-duration: 300ms;
|
|
18239
18418
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 5px 6px rgba(0, 0, 0, 0.1);
|
|
18240
18419
|
left: 24px;
|
|
18241
18420
|
top:2px;
|
|
@@ -18247,6 +18426,10 @@ html {
|
|
|
18247
18426
|
--text-opacity: 1;
|
|
18248
18427
|
color: #798490;
|
|
18249
18428
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
18429
|
+
display: flex;
|
|
18430
|
+
--bg-opacity: 1;
|
|
18431
|
+
background-color: #F3F6F9;
|
|
18432
|
+
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
18250
18433
|
}
|
|
18251
18434
|
|
|
18252
18435
|
.psui-el-radio.disabled .psui-el-checkmark {
|
|
@@ -18284,8 +18467,9 @@ html {
|
|
|
18284
18467
|
}
|
|
18285
18468
|
|
|
18286
18469
|
.psui-el-radio.size-small .psui-el-checkmark {
|
|
18287
|
-
display: block;
|
|
18288
18470
|
cursor: pointer;
|
|
18471
|
+
display: flex;
|
|
18472
|
+
align-items: center;
|
|
18289
18473
|
height: 18px;
|
|
18290
18474
|
}
|
|
18291
18475
|
|
|
@@ -18298,7 +18482,6 @@ html {
|
|
|
18298
18482
|
--text-opacity: 1;
|
|
18299
18483
|
color: #A2ACB7;
|
|
18300
18484
|
color: rgba(162, 172, 183, var(--text-opacity));
|
|
18301
|
-
vertical-align: text-bottom;
|
|
18302
18485
|
font-family: 'Material Icons Round';
|
|
18303
18486
|
font-size: 18px;
|
|
18304
18487
|
}
|
|
@@ -18325,8 +18508,9 @@ html {
|
|
|
18325
18508
|
}
|
|
18326
18509
|
|
|
18327
18510
|
.psui-el-radio.size-big .psui-el-checkmark {
|
|
18328
|
-
display: block;
|
|
18329
18511
|
cursor: pointer;
|
|
18512
|
+
display: flex;
|
|
18513
|
+
align-items: center;
|
|
18330
18514
|
height: 24px;
|
|
18331
18515
|
}
|
|
18332
18516
|
|
|
@@ -18339,7 +18523,6 @@ html {
|
|
|
18339
18523
|
--text-opacity: 1;
|
|
18340
18524
|
color: #A2ACB7;
|
|
18341
18525
|
color: rgba(162, 172, 183, var(--text-opacity));
|
|
18342
|
-
vertical-align: text-bottom;
|
|
18343
18526
|
font-family: 'Material Icons Round';
|
|
18344
18527
|
font-size: 24px;
|
|
18345
18528
|
}
|
|
@@ -18420,9 +18603,9 @@ html {
|
|
|
18420
18603
|
align-items: flex-start;
|
|
18421
18604
|
padding-right: 0.75rem;
|
|
18422
18605
|
padding-left: 0.5rem;
|
|
18423
|
-
padding-top: 0.5rem;
|
|
18424
|
-
padding-bottom: 0.5rem;
|
|
18425
18606
|
border-radius: 0.375rem;
|
|
18607
|
+
padding-top: 8.8px;
|
|
18608
|
+
padding-bottom: 8.8px;
|
|
18426
18609
|
}
|
|
18427
18610
|
|
|
18428
18611
|
.psui-el-dialog-wrapper {
|
|
@@ -18452,10 +18635,9 @@ html {
|
|
|
18452
18635
|
}
|
|
18453
18636
|
|
|
18454
18637
|
.psui-el-dialog.layout-vertical {
|
|
18455
|
-
padding-right: 0.5rem;
|
|
18456
|
-
padding-left: 0.5rem;
|
|
18457
18638
|
display: flex;
|
|
18458
18639
|
align-items: flex-start;
|
|
18640
|
+
padding: 9.6px 9.6px 11.2px 9.6px;
|
|
18459
18641
|
}
|
|
18460
18642
|
|
|
18461
18643
|
.psui-el-dialog.layout-vertical .psui-el-dialog-wrapper {
|
|
@@ -18541,6 +18723,9 @@ html {
|
|
|
18541
18723
|
--text-opacity: 1;
|
|
18542
18724
|
color: #798490;
|
|
18543
18725
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
18726
|
+
--bg-opacity: 1;
|
|
18727
|
+
background-color: #F3F6F9;
|
|
18728
|
+
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
18544
18729
|
}
|
|
18545
18730
|
|
|
18546
18731
|
.psui-el-checkbox.disabled .psui-el-checkmark {
|
|
@@ -18586,8 +18771,9 @@ html {
|
|
|
18586
18771
|
}
|
|
18587
18772
|
|
|
18588
18773
|
.psui-el-checkbox.size-small .psui-el-checkmark {
|
|
18589
|
-
display:
|
|
18774
|
+
display: flex;
|
|
18590
18775
|
cursor: pointer;
|
|
18776
|
+
align-items: center;
|
|
18591
18777
|
height: 18px;
|
|
18592
18778
|
}
|
|
18593
18779
|
|
|
@@ -18600,7 +18786,6 @@ html {
|
|
|
18600
18786
|
--text-opacity: 1;
|
|
18601
18787
|
color: #A2ACB7;
|
|
18602
18788
|
color: rgba(162, 172, 183, var(--text-opacity));
|
|
18603
|
-
vertical-align: text-bottom;
|
|
18604
18789
|
font-family:'Material Icons Round';
|
|
18605
18790
|
font-size: 18px;
|
|
18606
18791
|
}
|
|
@@ -18637,12 +18822,11 @@ html {
|
|
|
18637
18822
|
.psui-el-checkbox.size-big .psui-el-checkmark {
|
|
18638
18823
|
display: flex;
|
|
18639
18824
|
cursor: pointer;
|
|
18640
|
-
align-
|
|
18825
|
+
align-items: center;
|
|
18641
18826
|
height: 24px;
|
|
18642
18827
|
}
|
|
18643
18828
|
|
|
18644
18829
|
.psui-el-checkbox.size-big .psui-el-checkmark span {
|
|
18645
|
-
margin-top: 1px;
|
|
18646
18830
|
margin-left: 8px;
|
|
18647
18831
|
}
|
|
18648
18832
|
|
|
@@ -18713,6 +18897,19 @@ html {
|
|
|
18713
18897
|
border-bottom: 0;
|
|
18714
18898
|
}
|
|
18715
18899
|
|
|
18900
|
+
.psui-el-table-rich thead th {
|
|
18901
|
+
padding: 15px 16px;
|
|
18902
|
+
}
|
|
18903
|
+
|
|
18904
|
+
.psui-el-table-rich tbody th,
|
|
18905
|
+
.psui-el-table-rich tbody td,
|
|
18906
|
+
.psui-el-table-rich tbody tr {
|
|
18907
|
+
padding: 7px 16px;
|
|
18908
|
+
--text-opacity: 1;
|
|
18909
|
+
color: #28323B;
|
|
18910
|
+
color: rgba(40, 50, 59, var(--text-opacity));
|
|
18911
|
+
}
|
|
18912
|
+
|
|
18716
18913
|
.psui-el-highlight-ripple-icon {
|
|
18717
18914
|
position: static;
|
|
18718
18915
|
box-sizing: border-box;
|
|
@@ -18887,7 +19084,7 @@ html {
|
|
|
18887
19084
|
|
|
18888
19085
|
.psui-el-chart-legend-total {
|
|
18889
19086
|
font-size: 16px;
|
|
18890
|
-
line-height:
|
|
19087
|
+
line-height: 130%;
|
|
18891
19088
|
--text-opacity: 1;
|
|
18892
19089
|
color: #28323B;
|
|
18893
19090
|
color: rgba(40, 50, 59, var(--text-opacity));
|
|
@@ -18930,10 +19127,10 @@ html {
|
|
|
18930
19127
|
.psui-el-card-infos-content {
|
|
18931
19128
|
width: 100%;
|
|
18932
19129
|
display: flex;
|
|
18933
|
-
justify-content:
|
|
19130
|
+
justify-content: flex-end;
|
|
18934
19131
|
align-items: center;
|
|
18935
19132
|
font-size: 16px;
|
|
18936
|
-
line-height:
|
|
19133
|
+
line-height: 130%;
|
|
18937
19134
|
}
|
|
18938
19135
|
|
|
18939
19136
|
.psui-el-card-infos-icon {
|
|
@@ -18956,7 +19153,9 @@ html {
|
|
|
18956
19153
|
display: flex;
|
|
18957
19154
|
align-content: center;
|
|
18958
19155
|
border-radius: 0.375rem;
|
|
18959
|
-
transition:
|
|
19156
|
+
transition-property: all;
|
|
19157
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
19158
|
+
transition-duration: 130ms;
|
|
18960
19159
|
}
|
|
18961
19160
|
|
|
18962
19161
|
.psui-el-button span {
|
|
@@ -19004,7 +19203,7 @@ html {
|
|
|
19004
19203
|
display: flex;
|
|
19005
19204
|
align-items: center;
|
|
19006
19205
|
align-content: center;
|
|
19007
|
-
padding: 7px
|
|
19206
|
+
padding: 7px 13px;
|
|
19008
19207
|
font-size: 14px;
|
|
19009
19208
|
}
|
|
19010
19209
|
|
|
@@ -19129,9 +19328,14 @@ html {
|
|
|
19129
19328
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19130
19329
|
}
|
|
19131
19330
|
|
|
19132
|
-
.psui-el-button.layout-ghost.hover
|
|
19133
|
-
|
|
19134
|
-
|
|
19331
|
+
.psui-el-button.layout-ghost.hover {
|
|
19332
|
+
--bg-opacity: 1;
|
|
19333
|
+
background-color: #ECF7FB;
|
|
19334
|
+
background-color: rgba(236, 247, 251, var(--bg-opacity))
|
|
19335
|
+
}
|
|
19336
|
+
|
|
19337
|
+
.psui-el-button.layout-ghost:active:not(.disabled) {
|
|
19338
|
+
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05)
|
|
19135
19339
|
}
|
|
19136
19340
|
|
|
19137
19341
|
.psui-el-button.layout-ghost.disabled {
|
|
@@ -19164,6 +19368,35 @@ html {
|
|
|
19164
19368
|
color: rgba(100, 181, 206, var(--text-opacity))
|
|
19165
19369
|
}
|
|
19166
19370
|
|
|
19371
|
+
.psui-el-button.layout-caution {
|
|
19372
|
+
--bg-opacity: 1;
|
|
19373
|
+
background-color: #FCEBEB;
|
|
19374
|
+
background-color: rgba(252, 235, 235, var(--bg-opacity));
|
|
19375
|
+
--text-opacity: 1;
|
|
19376
|
+
color: #D65C5A;
|
|
19377
|
+
color: rgba(214, 92, 90, var(--text-opacity));
|
|
19378
|
+
}
|
|
19379
|
+
|
|
19380
|
+
.psui-el-button.layout-caution.hover,
|
|
19381
|
+
.psui-el-button.layout-caution:active:not(.disabled) {
|
|
19382
|
+
--bg-opacity: 1;
|
|
19383
|
+
background-color: #FCEBEB;
|
|
19384
|
+
background-color: rgba(252, 235, 235, var(--bg-opacity));
|
|
19385
|
+
--text-opacity: 1;
|
|
19386
|
+
color: #AA3937;
|
|
19387
|
+
color: rgba(170, 57, 55, var(--text-opacity));
|
|
19388
|
+
}
|
|
19389
|
+
|
|
19390
|
+
.psui-el-button.layout-caution.disabled {
|
|
19391
|
+
--text-opacity: 1;
|
|
19392
|
+
color: #A2ACB7;
|
|
19393
|
+
color: rgba(162, 172, 183, var(--text-opacity));
|
|
19394
|
+
--bg-opacity: 1;
|
|
19395
|
+
background-color: #E6ECF2;
|
|
19396
|
+
background-color: rgba(230, 236, 242, var(--bg-opacity));
|
|
19397
|
+
cursor: default
|
|
19398
|
+
}
|
|
19399
|
+
|
|
19167
19400
|
.psui-el-chips {
|
|
19168
19401
|
display: inline-flex;
|
|
19169
19402
|
position: relative;
|
|
@@ -19220,7 +19453,9 @@ html {
|
|
|
19220
19453
|
--text-opacity: 1;
|
|
19221
19454
|
color: #798490;
|
|
19222
19455
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
19223
|
-
|
|
19456
|
+
--bg-opacity: 1;
|
|
19457
|
+
background-color: #F3F6F9;
|
|
19458
|
+
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
19224
19459
|
transition-property: all;
|
|
19225
19460
|
cursor: pointer;
|
|
19226
19461
|
border-radius: 0.25rem;
|
|
@@ -19244,6 +19479,9 @@ html {
|
|
|
19244
19479
|
--text-opacity: 1;
|
|
19245
19480
|
color: #318FAC;
|
|
19246
19481
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19482
|
+
--bg-opacity: 1;
|
|
19483
|
+
background-color: #F3F6F9;
|
|
19484
|
+
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
19247
19485
|
}
|
|
19248
19486
|
|
|
19249
19487
|
.psui-el-chips.type-checkbox label:hover:before, .psui-el-chips.type-radio label:hover:before {
|
|
@@ -19275,9 +19513,6 @@ html {
|
|
|
19275
19513
|
--text-opacity: 1;
|
|
19276
19514
|
color: #515E6A;
|
|
19277
19515
|
color: rgba(81, 94, 106, var(--text-opacity));
|
|
19278
|
-
--bg-opacity: 1;
|
|
19279
|
-
background-color: #F3F6F9;
|
|
19280
|
-
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
19281
19516
|
transition-property: all;
|
|
19282
19517
|
cursor: pointer;
|
|
19283
19518
|
border-radius: 0.25rem;
|
|
@@ -19287,6 +19522,7 @@ html {
|
|
|
19287
19522
|
padding-right: 0.75rem;
|
|
19288
19523
|
font-size: 14px;
|
|
19289
19524
|
line-height: 130%;
|
|
19525
|
+
background-color: #F6F7F8;
|
|
19290
19526
|
}
|
|
19291
19527
|
|
|
19292
19528
|
.psui-el-chips.type-button label:hover {
|
|
@@ -19361,11 +19597,12 @@ html {
|
|
|
19361
19597
|
padding-right: 0.5rem;
|
|
19362
19598
|
}
|
|
19363
19599
|
|
|
19364
|
-
.psui-el-chips.type-button.layout-rich label:hover
|
|
19365
|
-
|
|
19366
|
-
|
|
19367
|
-
|
|
19368
|
-
|
|
19600
|
+
.psui-el-chips.type-button.layout-rich label:hover,
|
|
19601
|
+
.psui-el-chips.type-button.layout-rich label:hover .psui-el-chips-close {
|
|
19602
|
+
--text-opacity: 1;
|
|
19603
|
+
color: #798490;
|
|
19604
|
+
color: rgba(121, 132, 144, var(--text-opacity));
|
|
19605
|
+
}
|
|
19369
19606
|
|
|
19370
19607
|
.psui-el-chips.type-button.layout-rich label:hover .psui-el-chips-icon-prepend {
|
|
19371
19608
|
--bg-opacity: 1;
|
|
@@ -19378,11 +19615,17 @@ html {
|
|
|
19378
19615
|
--bg-opacity: 1;
|
|
19379
19616
|
background-color: #E0EFF6;
|
|
19380
19617
|
background-color: rgba(224, 239, 246, var(--bg-opacity));
|
|
19381
|
-
--text-opacity: 1;
|
|
19382
|
-
color: #318FAC;
|
|
19383
|
-
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19384
19618
|
}
|
|
19385
19619
|
|
|
19620
|
+
.psui-el-chips.type-button.layout-rich label:focus,
|
|
19621
|
+
.psui-el-chips.type-button.layout-rich label:focus .psui-el-chips-close,
|
|
19622
|
+
.psui-el-chips.type-button.layout-rich label:active,
|
|
19623
|
+
.psui-el-chips.type-button.layout-rich label:active .psui-el-chips-close {
|
|
19624
|
+
--text-opacity: 1;
|
|
19625
|
+
color: #318FAC;
|
|
19626
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19627
|
+
}
|
|
19628
|
+
|
|
19386
19629
|
.psui-el-chips.type-button.layout-rich label:focus .psui-el-chips-icon-prepend, .psui-el-chips.type-button.layout-rich label:active .psui-el-chips-icon-prepend {
|
|
19387
19630
|
--bg-opacity: 1;
|
|
19388
19631
|
background-color: #318FAC;
|
|
@@ -19400,6 +19643,11 @@ html {
|
|
|
19400
19643
|
border-radius: 9999px;
|
|
19401
19644
|
color: #ffffff;
|
|
19402
19645
|
margin-right: 0.5rem;
|
|
19646
|
+
width: 1.5rem;
|
|
19647
|
+
height: 1.5rem;
|
|
19648
|
+
display: flex;
|
|
19649
|
+
align-items: center;
|
|
19650
|
+
justify-content: center;
|
|
19403
19651
|
}
|
|
19404
19652
|
|
|
19405
19653
|
.psui-el-chips.type-button.layout-rich .psui-el-chips-close {
|
|
@@ -19409,28 +19657,23 @@ html {
|
|
|
19409
19657
|
display: flex;
|
|
19410
19658
|
align-items: center;
|
|
19411
19659
|
justify-content: center;
|
|
19660
|
+
margin-left: 0.5rem;
|
|
19412
19661
|
}
|
|
19413
19662
|
|
|
19414
|
-
.psui-el-chips.type-button.layout-rich .psui-el-chips-close span {
|
|
19415
|
-
margin-left: 0.5rem;
|
|
19416
|
-
}
|
|
19417
|
-
|
|
19418
19663
|
.psui-el-toggle {
|
|
19419
19664
|
display: flex;
|
|
19420
|
-
border-radius: 0.125rem;
|
|
19421
19665
|
--bg-opacity: 1;
|
|
19422
19666
|
background-color: #F3F6F9;
|
|
19423
19667
|
background-color: rgba(243, 246, 249, var(--bg-opacity));
|
|
19424
|
-
|
|
19425
|
-
-moz-column-gap: 1px;
|
|
19426
|
-
column-gap: 1px;
|
|
19668
|
+
align-items: center;
|
|
19427
19669
|
padding: 2px;
|
|
19670
|
+
gap: 2px;
|
|
19671
|
+
border-radius: 4px;
|
|
19428
19672
|
}
|
|
19429
19673
|
|
|
19430
19674
|
.psui-el-toggle button {
|
|
19431
19675
|
transition: cubic-bezier(.17,.67,.83,.67) 250ms;
|
|
19432
19676
|
display: inline-flex;
|
|
19433
|
-
border-radius: 0.125rem;
|
|
19434
19677
|
font-size: 14px;
|
|
19435
19678
|
line-height: 130%;
|
|
19436
19679
|
--bg-opacity: 1;
|
|
@@ -19439,8 +19682,11 @@ html {
|
|
|
19439
19682
|
--text-opacity: 1;
|
|
19440
19683
|
color: #318FAC;
|
|
19441
19684
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19442
|
-
|
|
19443
|
-
|
|
19685
|
+
outline: 2px solid transparent;
|
|
19686
|
+
outline-offset: 2px;
|
|
19687
|
+
vertical-align: middle;
|
|
19688
|
+
border-radius: 4px;
|
|
19689
|
+
padding:1px 8px;
|
|
19444
19690
|
}
|
|
19445
19691
|
|
|
19446
19692
|
.psui-el-toggle button.status-active {
|
|
@@ -19476,6 +19722,10 @@ html {
|
|
|
19476
19722
|
cursor: not-allowed
|
|
19477
19723
|
}
|
|
19478
19724
|
|
|
19725
|
+
.psui-el-tab-header button:focus {
|
|
19726
|
+
outline: none;
|
|
19727
|
+
}
|
|
19728
|
+
|
|
19479
19729
|
.psui-el-tab-header.status-disabled .psui-el-input-wrapper {
|
|
19480
19730
|
--bg-opacity: 1;
|
|
19481
19731
|
background-color: #E6ECF2;
|
|
@@ -19499,6 +19749,7 @@ html {
|
|
|
19499
19749
|
color: #515E6A;
|
|
19500
19750
|
color: rgba(81, 94, 106, var(--text-opacity));
|
|
19501
19751
|
padding: 6px 12px;
|
|
19752
|
+
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
19502
19753
|
}
|
|
19503
19754
|
|
|
19504
19755
|
.psui-el-tab-header.layout-standard button:not(:last-child) {
|
|
@@ -19519,6 +19770,7 @@ html {
|
|
|
19519
19770
|
--text-opacity: 1;
|
|
19520
19771
|
color: #318FAC;
|
|
19521
19772
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19773
|
+
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
19522
19774
|
}
|
|
19523
19775
|
|
|
19524
19776
|
.psui-el-tab-header.layout-standard button.status-active {
|
|
@@ -19553,6 +19805,12 @@ html {
|
|
|
19553
19805
|
padding: 11.5px 0;
|
|
19554
19806
|
}
|
|
19555
19807
|
|
|
19808
|
+
.psui-el-tab-header.layout-underline button:hover {
|
|
19809
|
+
--text-opacity: 1;
|
|
19810
|
+
color: #318FAC;
|
|
19811
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19812
|
+
}
|
|
19813
|
+
|
|
19556
19814
|
.psui-el-tab-header.layout-underline button:not(:last-child) {
|
|
19557
19815
|
margin-right: 20px;
|
|
19558
19816
|
}
|
|
@@ -19586,6 +19844,12 @@ html {
|
|
|
19586
19844
|
padding: 9px 12px;
|
|
19587
19845
|
}
|
|
19588
19846
|
|
|
19847
|
+
.psui-el-tab-header.layout-folder button:hover {
|
|
19848
|
+
--text-opacity: 1;
|
|
19849
|
+
color: #318FAC;
|
|
19850
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19851
|
+
}
|
|
19852
|
+
|
|
19589
19853
|
.psui-el-tab-header.layout-folder button:not(:last-child) {
|
|
19590
19854
|
margin-right: 4px;
|
|
19591
19855
|
}
|
|
@@ -19627,18 +19891,28 @@ html {
|
|
|
19627
19891
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19628
19892
|
}
|
|
19629
19893
|
|
|
19630
|
-
.psui-el-accordion-item-content {
|
|
19631
|
-
padding-bottom: 24px;
|
|
19632
|
-
}
|
|
19633
|
-
|
|
19634
19894
|
.psui-el-accordion-item-icon {
|
|
19895
|
+
font-family: 'Material Icons Round';
|
|
19896
|
+
font-weight: normal;
|
|
19897
|
+
font-style: normal;
|
|
19898
|
+
font-size: 24px;
|
|
19899
|
+
line-height: 1;
|
|
19900
|
+
letter-spacing: normal;
|
|
19901
|
+
text-transform: none;
|
|
19902
|
+
display: inline-block;
|
|
19903
|
+
white-space: nowrap;
|
|
19904
|
+
word-wrap: normal;
|
|
19905
|
+
direction: ltr;
|
|
19906
|
+
-webkit-font-feature-settings: 'liga';
|
|
19907
|
+
-webkit-font-smoothing: antialiased;
|
|
19635
19908
|
font-size: 20px;
|
|
19636
19909
|
width: 20px;
|
|
19910
|
+
transition: transform 0.4s ease-in-out;
|
|
19637
19911
|
}
|
|
19638
19912
|
|
|
19639
19913
|
.psui-el-accordion.layout-big .psui-el-accordion-item-header, .psui-el-accordion.layout-big .psui-el-accordion-item-content {
|
|
19640
|
-
padding-left:
|
|
19641
|
-
padding-right:
|
|
19914
|
+
padding-left: 1rem;
|
|
19915
|
+
padding-right: 1rem;
|
|
19642
19916
|
}
|
|
19643
19917
|
|
|
19644
19918
|
.psui-el-accordion.layout-big .psui-el-accordion-item-title {
|
|
@@ -19662,9 +19936,13 @@ html {
|
|
|
19662
19936
|
.psui-el-accordion.layout-medium .psui-el-accordion-item-icon {
|
|
19663
19937
|
--text-opacity: 1;
|
|
19664
19938
|
color: #515E6A;
|
|
19665
|
-
color: rgba(81, 94, 106, var(--text-opacity))
|
|
19939
|
+
color: rgba(81, 94, 106, var(--text-opacity));
|
|
19666
19940
|
}
|
|
19667
19941
|
|
|
19942
|
+
.psui-el-accordion.layout-medium .psui-el-accordion-item.status-opened .psui-el-accordion-item-icon {
|
|
19943
|
+
transform: rotate(180deg);
|
|
19944
|
+
}
|
|
19945
|
+
|
|
19668
19946
|
.psui-el-accordion .psui-el-accordion-item.status-opened .psui-el-accordion-item-header, .psui-el-accordion .psui-el-accordion-item-header:hover {
|
|
19669
19947
|
--text-opacity: 1;
|
|
19670
19948
|
color: #318FAC;
|
|
@@ -19677,6 +19955,27 @@ html {
|
|
|
19677
19955
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
19678
19956
|
}
|
|
19679
19957
|
|
|
19958
|
+
.psui-el-accordion .psui-el-accordion-item-content {
|
|
19959
|
+
list-style-type: none;
|
|
19960
|
+
--text-opacity: 1;
|
|
19961
|
+
color: #515E6A;
|
|
19962
|
+
color: rgba(81, 94, 106, var(--text-opacity));
|
|
19963
|
+
margin-bottom: 1.25rem;
|
|
19964
|
+
}
|
|
19965
|
+
|
|
19966
|
+
.psui-el-accordion .accordion-fade-enter-active,
|
|
19967
|
+
.psui-el-accordion .accordion-fade-leave-active {
|
|
19968
|
+
will-change: height, margin-bottom;
|
|
19969
|
+
transition: height 0.4s ease, margin-bottom 0.4s ease-in-out;
|
|
19970
|
+
overflow: hidden;
|
|
19971
|
+
}
|
|
19972
|
+
|
|
19973
|
+
.psui-el-accordion .accordion-fade-enter,
|
|
19974
|
+
.psui-el-accordion .accordion-fade-leave-to {
|
|
19975
|
+
height: 0 !important;
|
|
19976
|
+
margin-bottom: 0 !important;
|
|
19977
|
+
}
|
|
19978
|
+
|
|
19680
19979
|
.psui-el-input {
|
|
19681
19980
|
/* Layout Default */
|
|
19682
19981
|
/* ----------------------------------------- Layout Default */
|
|
@@ -19701,9 +20000,9 @@ html {
|
|
|
19701
20000
|
--text-opacity: 1;
|
|
19702
20001
|
color: #798490;
|
|
19703
20002
|
color: rgba(121, 132, 144, var(--text-opacity));
|
|
20003
|
+
margin-top: 0.25rem;
|
|
19704
20004
|
font-size: 12px;
|
|
19705
|
-
line-height:
|
|
19706
|
-
margin-top: 0.25rem
|
|
20005
|
+
line-height: 24px;
|
|
19707
20006
|
}
|
|
19708
20007
|
|
|
19709
20008
|
.psui-el-input-wrapper {
|
|
@@ -19716,14 +20015,15 @@ html {
|
|
|
19716
20015
|
border-radius: 0.375rem;
|
|
19717
20016
|
background-color: #ffffff;
|
|
19718
20017
|
display: flex;
|
|
19719
|
-
transition:
|
|
20018
|
+
transition: ease 130ms;
|
|
19720
20019
|
}
|
|
19721
20020
|
|
|
19722
20021
|
.psui-el-input label {
|
|
19723
20022
|
font-weight: 700;
|
|
19724
20023
|
--text-opacity: 1;
|
|
19725
20024
|
color: #28323B;
|
|
19726
|
-
color: rgba(40, 50, 59, var(--text-opacity))
|
|
20025
|
+
color: rgba(40, 50, 59, var(--text-opacity));
|
|
20026
|
+
line-height: 32px;
|
|
19727
20027
|
}
|
|
19728
20028
|
|
|
19729
20029
|
.psui-el-input input {
|
|
@@ -19775,7 +20075,7 @@ html {
|
|
|
19775
20075
|
|
|
19776
20076
|
.psui-el-input.layout-default input {
|
|
19777
20077
|
font-size: 16px;
|
|
19778
|
-
line-height:
|
|
20078
|
+
line-height: 130%;
|
|
19779
20079
|
padding: 11.5px 16px;
|
|
19780
20080
|
}
|
|
19781
20081
|
|
|
@@ -24631,6 +24931,16 @@ html {
|
|
|
24631
24931
|
cursor: not-allowed;
|
|
24632
24932
|
}
|
|
24633
24933
|
|
|
24934
|
+
.sm\:psui-cursor-grab{
|
|
24935
|
+
cursor: -webkit-grab;
|
|
24936
|
+
cursor: grab;
|
|
24937
|
+
}
|
|
24938
|
+
|
|
24939
|
+
.sm\:psui-cursor-grabbing{
|
|
24940
|
+
cursor: -webkit-grabbing;
|
|
24941
|
+
cursor: grabbing;
|
|
24942
|
+
}
|
|
24943
|
+
|
|
24634
24944
|
.sm\:psui-block{
|
|
24635
24945
|
display: block;
|
|
24636
24946
|
}
|
|
@@ -25284,17 +25594,17 @@ html {
|
|
|
25284
25594
|
|
|
25285
25595
|
.sm\:psui-text-p{
|
|
25286
25596
|
font-size: 16px;
|
|
25287
|
-
line-height:
|
|
25597
|
+
line-height: 130%;
|
|
25288
25598
|
}
|
|
25289
25599
|
|
|
25290
25600
|
.sm\:psui-text-h1{
|
|
25291
25601
|
font-size: 28px;
|
|
25292
|
-
line-height:
|
|
25602
|
+
line-height: 130%;
|
|
25293
25603
|
}
|
|
25294
25604
|
|
|
25295
25605
|
.sm\:psui-text-h2{
|
|
25296
25606
|
font-size: 24px;
|
|
25297
|
-
line-height:
|
|
25607
|
+
line-height: 130%;
|
|
25298
25608
|
}
|
|
25299
25609
|
|
|
25300
25610
|
.sm\:psui-text-h3{
|
|
@@ -39041,6 +39351,16 @@ html {
|
|
|
39041
39351
|
cursor: not-allowed;
|
|
39042
39352
|
}
|
|
39043
39353
|
|
|
39354
|
+
.md\:psui-cursor-grab{
|
|
39355
|
+
cursor: -webkit-grab;
|
|
39356
|
+
cursor: grab;
|
|
39357
|
+
}
|
|
39358
|
+
|
|
39359
|
+
.md\:psui-cursor-grabbing{
|
|
39360
|
+
cursor: -webkit-grabbing;
|
|
39361
|
+
cursor: grabbing;
|
|
39362
|
+
}
|
|
39363
|
+
|
|
39044
39364
|
.md\:psui-block{
|
|
39045
39365
|
display: block;
|
|
39046
39366
|
}
|
|
@@ -39694,17 +40014,17 @@ html {
|
|
|
39694
40014
|
|
|
39695
40015
|
.md\:psui-text-p{
|
|
39696
40016
|
font-size: 16px;
|
|
39697
|
-
line-height:
|
|
40017
|
+
line-height: 130%;
|
|
39698
40018
|
}
|
|
39699
40019
|
|
|
39700
40020
|
.md\:psui-text-h1{
|
|
39701
40021
|
font-size: 28px;
|
|
39702
|
-
line-height:
|
|
40022
|
+
line-height: 130%;
|
|
39703
40023
|
}
|
|
39704
40024
|
|
|
39705
40025
|
.md\:psui-text-h2{
|
|
39706
40026
|
font-size: 24px;
|
|
39707
|
-
line-height:
|
|
40027
|
+
line-height: 130%;
|
|
39708
40028
|
}
|
|
39709
40029
|
|
|
39710
40030
|
.md\:psui-text-h3{
|
|
@@ -53451,6 +53771,16 @@ html {
|
|
|
53451
53771
|
cursor: not-allowed;
|
|
53452
53772
|
}
|
|
53453
53773
|
|
|
53774
|
+
.lg\:psui-cursor-grab{
|
|
53775
|
+
cursor: -webkit-grab;
|
|
53776
|
+
cursor: grab;
|
|
53777
|
+
}
|
|
53778
|
+
|
|
53779
|
+
.lg\:psui-cursor-grabbing{
|
|
53780
|
+
cursor: -webkit-grabbing;
|
|
53781
|
+
cursor: grabbing;
|
|
53782
|
+
}
|
|
53783
|
+
|
|
53454
53784
|
.lg\:psui-block{
|
|
53455
53785
|
display: block;
|
|
53456
53786
|
}
|
|
@@ -54104,17 +54434,17 @@ html {
|
|
|
54104
54434
|
|
|
54105
54435
|
.lg\:psui-text-p{
|
|
54106
54436
|
font-size: 16px;
|
|
54107
|
-
line-height:
|
|
54437
|
+
line-height: 130%;
|
|
54108
54438
|
}
|
|
54109
54439
|
|
|
54110
54440
|
.lg\:psui-text-h1{
|
|
54111
54441
|
font-size: 28px;
|
|
54112
|
-
line-height:
|
|
54442
|
+
line-height: 130%;
|
|
54113
54443
|
}
|
|
54114
54444
|
|
|
54115
54445
|
.lg\:psui-text-h2{
|
|
54116
54446
|
font-size: 24px;
|
|
54117
|
-
line-height:
|
|
54447
|
+
line-height: 130%;
|
|
54118
54448
|
}
|
|
54119
54449
|
|
|
54120
54450
|
.lg\:psui-text-h3{
|
|
@@ -67861,6 +68191,16 @@ html {
|
|
|
67861
68191
|
cursor: not-allowed;
|
|
67862
68192
|
}
|
|
67863
68193
|
|
|
68194
|
+
.xl\:psui-cursor-grab{
|
|
68195
|
+
cursor: -webkit-grab;
|
|
68196
|
+
cursor: grab;
|
|
68197
|
+
}
|
|
68198
|
+
|
|
68199
|
+
.xl\:psui-cursor-grabbing{
|
|
68200
|
+
cursor: -webkit-grabbing;
|
|
68201
|
+
cursor: grabbing;
|
|
68202
|
+
}
|
|
68203
|
+
|
|
67864
68204
|
.xl\:psui-block{
|
|
67865
68205
|
display: block;
|
|
67866
68206
|
}
|
|
@@ -68514,17 +68854,17 @@ html {
|
|
|
68514
68854
|
|
|
68515
68855
|
.xl\:psui-text-p{
|
|
68516
68856
|
font-size: 16px;
|
|
68517
|
-
line-height:
|
|
68857
|
+
line-height: 130%;
|
|
68518
68858
|
}
|
|
68519
68859
|
|
|
68520
68860
|
.xl\:psui-text-h1{
|
|
68521
68861
|
font-size: 28px;
|
|
68522
|
-
line-height:
|
|
68862
|
+
line-height: 130%;
|
|
68523
68863
|
}
|
|
68524
68864
|
|
|
68525
68865
|
.xl\:psui-text-h2{
|
|
68526
68866
|
font-size: 24px;
|
|
68527
|
-
line-height:
|
|
68867
|
+
line-height: 130%;
|
|
68528
68868
|
}
|
|
68529
68869
|
|
|
68530
68870
|
.xl\:psui-text-h3{
|