@policystudio/policy-studio-ui-vue 1.2.0-access.2 → 1.2.0-access.21
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_output.css +585 -325
- package/doc/src/stories/Button.stories.ts +95 -73
- package/doc/src/stories/DropdownList.stories.ts +2 -2
- package/doc/src/stories/Typography.mdx +14 -14
- package/package.json +1 -1
- package/src/assets/scss/components/PsAccordion.scss +19 -28
- package/src/assets/scss/components/PsButton.scss +128 -91
- package/src/assets/scss/components/PsCardInfos.scss +1 -1
- package/src/assets/scss/components/PsChartLegend.scss +2 -2
- package/src/assets/scss/components/PsCheckbox.scss +2 -2
- package/src/assets/scss/components/PsChips.scss +1 -1
- package/src/assets/scss/components/PsCollapse.scss +1 -1
- package/src/assets/scss/components/PsDataTable.scss +1 -1
- package/src/assets/scss/components/PsDateCardInfo.scss +7 -4
- package/src/assets/scss/components/PsDialog.scss +2 -2
- package/src/assets/scss/components/PsDraggable.scss +1 -1
- package/src/assets/scss/components/PsDropdownList.scss +2 -2
- package/src/assets/scss/components/PsInlineSelector.scss +3 -3
- package/src/assets/scss/components/PsInput.scss +2 -2
- package/src/assets/scss/components/PsInputSelect.scss +2 -2
- package/src/assets/scss/components/PsInputTextArea.scss +3 -3
- package/src/assets/scss/components/PsMiniTag.scss +25 -30
- package/src/assets/scss/components/PsRadioButton.scss +2 -2
- package/src/assets/scss/components/PsSlider.scss +1 -1
- package/src/assets/scss/components/PsTabHeader.scss +134 -134
- package/src/assets/scss/components/PsTableResults.scss +12 -12
- package/src/assets/scss/components/PsTestimonialCard.scss +3 -3
- package/src/assets/scss/components/PsToast.scss +1 -1
- package/src/assets/scss/components/PsToggle.scss +1 -1
- package/src/assets/scss/components/_PsTableResults.scss +3 -3
- package/src/components/badges-and-tags/PsDateCardInfo.vue +16 -5
- package/src/components/badges-and-tags/PsMiniTag.vue +5 -5
- package/src/components/buttons/PsButton.vue +111 -20
- package/src/components/navigations/PsBreadcrumb.vue +1 -1
- package/src/components/table-results/PsTableResults.vue +2 -2
- package/src/components/ui/PsIcon.vue +10 -5
- package/tailwind.config.js +70 -87
|
@@ -618,7 +618,7 @@ video {
|
|
|
618
618
|
}
|
|
619
619
|
.psui-el-chips .psui-el-chips-wrapper {
|
|
620
620
|
font-size: 14px;
|
|
621
|
-
line-height:
|
|
621
|
+
line-height: 20px;
|
|
622
622
|
}
|
|
623
623
|
.psui-el-chips .psui-el-chips-wrapper {
|
|
624
624
|
--tw-text-opacity: 1;
|
|
@@ -638,7 +638,7 @@ video {
|
|
|
638
638
|
}
|
|
639
639
|
.psui-el-chips .psui-el-chips-wrapper:focus, .psui-el-chips .psui-el-chips-wrapper:active {
|
|
640
640
|
--tw-border-opacity: 1;
|
|
641
|
-
border-color: rgb(
|
|
641
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
642
642
|
}
|
|
643
643
|
.psui-el-chips .psui-el-chips-wrapper:focus, .psui-el-chips .psui-el-chips-wrapper:active {
|
|
644
644
|
--tw-bg-opacity: 1;
|
|
@@ -653,7 +653,7 @@ video {
|
|
|
653
653
|
}
|
|
654
654
|
.psui-el-chips .psui-el-chips-wrapper.checked {
|
|
655
655
|
--tw-border-opacity: 1;
|
|
656
|
-
border-color: rgb(
|
|
656
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
657
657
|
}
|
|
658
658
|
.psui-el-chips .psui-el-chips-wrapper.checked {
|
|
659
659
|
--tw-bg-opacity: 1;
|
|
@@ -731,7 +731,7 @@ video {
|
|
|
731
731
|
}
|
|
732
732
|
.psui-el-chips.type-checkbox input:checked + .psui-el-chips-wrapper:before, .psui-el-chips.type-radio input:checked + .psui-el-chips-wrapper:before {
|
|
733
733
|
--tw-text-opacity: 1;
|
|
734
|
-
color: rgb(
|
|
734
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
735
735
|
}
|
|
736
736
|
.psui-el-chips.type-checkbox input:checked + .psui-el-chips-wrapper:hover, .psui-el-chips.type-radio input:checked + .psui-el-chips-wrapper:hover {
|
|
737
737
|
--tw-text-opacity: 1;
|
|
@@ -801,7 +801,7 @@ video {
|
|
|
801
801
|
}
|
|
802
802
|
.psui-el-chips.type-button.layout-with-icon .psui-el-chips-wrapper:hover {
|
|
803
803
|
--tw-text-opacity: 1;
|
|
804
|
-
color: rgb(
|
|
804
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
805
805
|
}
|
|
806
806
|
.psui-el-chips.type-button.layout-with-icon .psui-el-chips-icon {
|
|
807
807
|
margin-right: 0.5rem;
|
|
@@ -869,11 +869,11 @@ video {
|
|
|
869
869
|
.psui-el-chips.type-button.layout-rich .psui-el-chips-wrapper:focus .psui-el-chips-close, .psui-el-chips.type-button.layout-rich .psui-el-chips-wrapper:active,
|
|
870
870
|
.psui-el-chips.type-button.layout-rich .psui-el-chips-wrapper:active .psui-el-chips-close {
|
|
871
871
|
--tw-text-opacity: 1;
|
|
872
|
-
color: rgb(
|
|
872
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
873
873
|
}
|
|
874
874
|
.psui-el-chips.type-button.layout-rich .psui-el-chips-wrapper:focus .psui-el-chips-icon-prepend, .psui-el-chips.type-button.layout-rich .psui-el-chips-wrapper:active .psui-el-chips-icon-prepend {
|
|
875
875
|
--tw-bg-opacity: 1;
|
|
876
|
-
background-color: rgb(
|
|
876
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
877
877
|
}
|
|
878
878
|
.psui-el-chips.type-button.layout-rich .psui-el-chips-icon {
|
|
879
879
|
font-size: 16px;
|
|
@@ -939,11 +939,11 @@ video {
|
|
|
939
939
|
}
|
|
940
940
|
.psui-el-toggle button {
|
|
941
941
|
font-size: 14px;
|
|
942
|
-
line-height:
|
|
942
|
+
line-height: 20px;
|
|
943
943
|
}
|
|
944
944
|
.psui-el-toggle button {
|
|
945
945
|
--tw-text-opacity: 1;
|
|
946
|
-
color: rgb(
|
|
946
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
947
947
|
}
|
|
948
948
|
.psui-el-toggle button {
|
|
949
949
|
outline: 2px solid transparent;
|
|
@@ -958,7 +958,7 @@ video {
|
|
|
958
958
|
}
|
|
959
959
|
.psui-el-toggle button.status-active {
|
|
960
960
|
--tw-bg-opacity: 1;
|
|
961
|
-
background-color: rgb(
|
|
961
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
962
962
|
}
|
|
963
963
|
.psui-el-toggle button.status-active {
|
|
964
964
|
font-weight: 700;
|
|
@@ -978,6 +978,15 @@ video {
|
|
|
978
978
|
|
|
979
979
|
.psui-el-tab-header {
|
|
980
980
|
display: flex;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.psui-el-tab-header > :not([hidden]) ~ :not([hidden]) {
|
|
984
|
+
--tw-space-x-reverse: 0;
|
|
985
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
986
|
+
margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.psui-el-tab-header {
|
|
981
990
|
/* Layout Policy Design */
|
|
982
991
|
/* ----------------------------------------- */
|
|
983
992
|
/* Layout Standard */
|
|
@@ -992,7 +1001,7 @@ video {
|
|
|
992
1001
|
}
|
|
993
1002
|
.psui-el-tab-header button {
|
|
994
1003
|
font-size: 14px;
|
|
995
|
-
line-height:
|
|
1004
|
+
line-height: 20px;
|
|
996
1005
|
}
|
|
997
1006
|
.psui-el-tab-header button {
|
|
998
1007
|
transition: cubic-bezier(0.17, 0.67, 0.83, 0.67) 250ms;
|
|
@@ -1004,7 +1013,7 @@ video {
|
|
|
1004
1013
|
outline: none;
|
|
1005
1014
|
}
|
|
1006
1015
|
.psui-el-tab-header button:focus-visible {
|
|
1007
|
-
outline: 2px solid #
|
|
1016
|
+
outline: 2px solid #2563eb;
|
|
1008
1017
|
outline-offset: 2px;
|
|
1009
1018
|
border-radius: 6px;
|
|
1010
1019
|
}
|
|
@@ -1055,7 +1064,7 @@ video {
|
|
|
1055
1064
|
}
|
|
1056
1065
|
.psui-el-tab-header.layout-policy-design button:after {
|
|
1057
1066
|
--tw-bg-opacity: 1;
|
|
1058
|
-
background-color: rgb(
|
|
1067
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
1059
1068
|
}
|
|
1060
1069
|
.psui-el-tab-header.layout-policy-design button:after {
|
|
1061
1070
|
opacity: 0;
|
|
@@ -1071,14 +1080,14 @@ video {
|
|
|
1071
1080
|
}
|
|
1072
1081
|
.psui-el-tab-header.layout-policy-design button.status-active {
|
|
1073
1082
|
--tw-border-opacity: 1;
|
|
1074
|
-
border-color: rgb(
|
|
1083
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
1075
1084
|
}
|
|
1076
1085
|
.psui-el-tab-header.layout-policy-design button.status-active:after {
|
|
1077
1086
|
opacity: 1;
|
|
1078
1087
|
}
|
|
1079
1088
|
.psui-el-tab-header.layout-policy-design button.status-active > div {
|
|
1080
1089
|
--tw-text-opacity: 1;
|
|
1081
|
-
color: rgb(
|
|
1090
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1082
1091
|
}
|
|
1083
1092
|
.psui-el-tab-header.layout-policy-design button.status-active > span {
|
|
1084
1093
|
font-weight: 700;
|
|
@@ -1136,14 +1145,14 @@ video {
|
|
|
1136
1145
|
}
|
|
1137
1146
|
.psui-el-tab-header.layout-standard button:hover {
|
|
1138
1147
|
--tw-text-opacity: 1;
|
|
1139
|
-
color: rgb(
|
|
1148
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1140
1149
|
}
|
|
1141
1150
|
.psui-el-tab-header.layout-standard button:hover {
|
|
1142
1151
|
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
1143
1152
|
}
|
|
1144
1153
|
.psui-el-tab-header.layout-standard button.status-active {
|
|
1145
1154
|
--tw-bg-opacity: 1;
|
|
1146
|
-
background-color: rgb(
|
|
1155
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
1147
1156
|
}
|
|
1148
1157
|
.psui-el-tab-header.layout-standard button.status-active {
|
|
1149
1158
|
font-weight: 700;
|
|
@@ -1160,34 +1169,57 @@ video {
|
|
|
1160
1169
|
margin-right: 20px;
|
|
1161
1170
|
}
|
|
1162
1171
|
.psui-el-tab-header.layout-underline button {
|
|
1163
|
-
|
|
1172
|
+
position: relative;
|
|
1173
|
+
}
|
|
1174
|
+
.psui-el-tab-header.layout-underline button {
|
|
1175
|
+
font-weight: 600;
|
|
1164
1176
|
}
|
|
1165
1177
|
.psui-el-tab-header.layout-underline button {
|
|
1166
1178
|
--tw-text-opacity: 1;
|
|
1167
|
-
color: rgb(
|
|
1179
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
1168
1180
|
}
|
|
1169
1181
|
.psui-el-tab-header.layout-underline button {
|
|
1170
|
-
|
|
1171
|
-
padding: 11.5px 0;
|
|
1182
|
+
padding: 8px 0;
|
|
1172
1183
|
}
|
|
1173
1184
|
.psui-el-tab-header.layout-underline button:hover {
|
|
1174
1185
|
--tw-text-opacity: 1;
|
|
1175
|
-
color: rgb(
|
|
1186
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1176
1187
|
}
|
|
1177
1188
|
.psui-el-tab-header.layout-underline button:not(:last-child) {
|
|
1178
|
-
margin-right:
|
|
1189
|
+
margin-right: 8px;
|
|
1179
1190
|
}
|
|
1180
1191
|
.psui-el-tab-header.layout-underline button.status-enable:hover {
|
|
1181
1192
|
--tw-text-opacity: 1;
|
|
1182
|
-
color: rgb(
|
|
1193
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1183
1194
|
}
|
|
1184
|
-
.psui-el-tab-header.layout-underline button.status-active {
|
|
1185
|
-
|
|
1186
|
-
border-color: rgb(100, 181, 206, var(--tw-border-opacity, 1));
|
|
1195
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1196
|
+
position: absolute;
|
|
1187
1197
|
}
|
|
1188
|
-
.psui-el-tab-header.layout-underline button.status-active {
|
|
1189
|
-
|
|
1190
|
-
|
|
1198
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1199
|
+
bottom: 0px;
|
|
1200
|
+
}
|
|
1201
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1202
|
+
left: 0px;
|
|
1203
|
+
}
|
|
1204
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1205
|
+
height: 3px;
|
|
1206
|
+
}
|
|
1207
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1208
|
+
width: 100%;
|
|
1209
|
+
}
|
|
1210
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1211
|
+
border-top-left-radius: 20px;
|
|
1212
|
+
}
|
|
1213
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1214
|
+
border-top-right-radius: 20px;
|
|
1215
|
+
}
|
|
1216
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1217
|
+
--tw-bg-opacity: 1;
|
|
1218
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
1219
|
+
}
|
|
1220
|
+
.psui-el-tab-header.layout-underline button.status-active::after {
|
|
1221
|
+
--tw-content: "";
|
|
1222
|
+
content: var(--tw-content);
|
|
1191
1223
|
}
|
|
1192
1224
|
.psui-el-tab-header.layout-folder .psui-el-tooltip:not(:last-child) {
|
|
1193
1225
|
margin-right: 20px;
|
|
@@ -1209,7 +1241,7 @@ video {
|
|
|
1209
1241
|
}
|
|
1210
1242
|
.psui-el-tab-header.layout-folder button:hover {
|
|
1211
1243
|
--tw-text-opacity: 1;
|
|
1212
|
-
color: rgb(
|
|
1244
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1213
1245
|
}
|
|
1214
1246
|
.psui-el-tab-header.layout-folder button:not(:last-child) {
|
|
1215
1247
|
margin-right: 4px;
|
|
@@ -1227,7 +1259,7 @@ video {
|
|
|
1227
1259
|
}
|
|
1228
1260
|
.psui-el-tab-header.layout-folder button.status-active {
|
|
1229
1261
|
--tw-text-opacity: 1;
|
|
1230
|
-
color: rgb(
|
|
1262
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1231
1263
|
}
|
|
1232
1264
|
|
|
1233
1265
|
.psui-el-accordion-item {
|
|
@@ -1258,8 +1290,8 @@ video {
|
|
|
1258
1290
|
justify-content: space-between;
|
|
1259
1291
|
}
|
|
1260
1292
|
.psui-el-accordion-item-header {
|
|
1261
|
-
padding-top:
|
|
1262
|
-
padding-bottom:
|
|
1293
|
+
padding-top: 10px;
|
|
1294
|
+
padding-bottom: 10px;
|
|
1263
1295
|
}
|
|
1264
1296
|
.psui-el-accordion-item-header-wrapper {
|
|
1265
1297
|
display: flex;
|
|
@@ -1288,17 +1320,13 @@ video {
|
|
|
1288
1320
|
.psui-el-accordion-item-header-wrapper {
|
|
1289
1321
|
transition: cubic-bezier(0.17, 0.67, 0.83, 0.67) 250ms;
|
|
1290
1322
|
}
|
|
1291
|
-
.psui-el-accordion-item-header-wrapper:hover .psui-el-accordion-item-icon {
|
|
1292
|
-
--tw-text-opacity: 1 !important;
|
|
1293
|
-
color: rgb(49, 143, 172, var(--tw-text-opacity, 1)) !important;
|
|
1294
|
-
}
|
|
1295
|
-
.psui-el-accordion-item-header-wrapper:hover .psui-el-accordion-item-title {
|
|
1296
|
-
--tw-text-opacity: 1;
|
|
1297
|
-
color: rgb(49, 143, 172, var(--tw-text-opacity, 1));
|
|
1298
|
-
}
|
|
1299
1323
|
.psui-el-accordion-item-title {
|
|
1300
1324
|
margin-right: auto;
|
|
1301
1325
|
}
|
|
1326
|
+
.psui-el-accordion-item-icon {
|
|
1327
|
+
--tw-text-opacity: 1;
|
|
1328
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
1329
|
+
}
|
|
1302
1330
|
.psui-el-accordion-item-icon {
|
|
1303
1331
|
font-family: "Material Icons Round";
|
|
1304
1332
|
font-weight: normal;
|
|
@@ -1319,6 +1347,14 @@ video {
|
|
|
1319
1347
|
width: 20px;
|
|
1320
1348
|
transition: transform 0.4s ease-in-out;
|
|
1321
1349
|
}
|
|
1350
|
+
.psui-el-accordion-item:hover .psui-el-accordion-item-header-wrapper {
|
|
1351
|
+
--tw-text-opacity: 1;
|
|
1352
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1353
|
+
}
|
|
1354
|
+
.psui-el-accordion-item:not(:hover) .psui-el-accordion-item-header-wrapper .psui-el-accordion-item-title {
|
|
1355
|
+
--tw-text-opacity: 1;
|
|
1356
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
1357
|
+
}
|
|
1322
1358
|
.psui-el-accordion.layout-big .psui-el-accordion-item-header, .psui-el-accordion.layout-big .psui-el-accordion-item-content {
|
|
1323
1359
|
padding-left: 1rem;
|
|
1324
1360
|
}
|
|
@@ -1327,10 +1363,10 @@ video {
|
|
|
1327
1363
|
}
|
|
1328
1364
|
.psui-el-accordion.layout-big .psui-el-accordion-item-title {
|
|
1329
1365
|
font-size: 18px;
|
|
1330
|
-
line-height:
|
|
1366
|
+
line-height: 24px;
|
|
1331
1367
|
}
|
|
1332
1368
|
.psui-el-accordion.layout-big .psui-el-accordion-item-title {
|
|
1333
|
-
font-weight:
|
|
1369
|
+
font-weight: 600;
|
|
1334
1370
|
}
|
|
1335
1371
|
.psui-el-accordion.layout-big .psui-el-accordion-item-icon {
|
|
1336
1372
|
--tw-text-opacity: 1;
|
|
@@ -1338,10 +1374,10 @@ video {
|
|
|
1338
1374
|
}
|
|
1339
1375
|
.psui-el-accordion.layout-medium .psui-el-accordion-item-title {
|
|
1340
1376
|
font-size: 14px;
|
|
1341
|
-
line-height:
|
|
1377
|
+
line-height: 20px;
|
|
1342
1378
|
}
|
|
1343
1379
|
.psui-el-accordion.layout-medium .psui-el-accordion-item-title {
|
|
1344
|
-
font-weight:
|
|
1380
|
+
font-weight: 600;
|
|
1345
1381
|
}
|
|
1346
1382
|
.psui-el-accordion.layout-medium .psui-el-accordion-item-icon {
|
|
1347
1383
|
--tw-text-opacity: 1;
|
|
@@ -1350,14 +1386,6 @@ video {
|
|
|
1350
1386
|
.psui-el-accordion.layout-medium .psui-el-accordion-item.status-opened .psui-el-accordion-item-icon {
|
|
1351
1387
|
transform: rotate(180deg);
|
|
1352
1388
|
}
|
|
1353
|
-
.psui-el-accordion .psui-el-accordion-item.status-opened .psui-el-accordion-item-header .psui-el-accordion-item-header-wrapper .psui-el-accordion-item-icon {
|
|
1354
|
-
--tw-text-opacity: 1;
|
|
1355
|
-
color: rgb(49, 143, 172, var(--tw-text-opacity, 1));
|
|
1356
|
-
}
|
|
1357
|
-
.psui-el-accordion .psui-el-accordion-item.status-opened .psui-el-accordion-item-header .psui-el-accordion-item-header-wrapper .psui-el-accordion-item-title {
|
|
1358
|
-
--tw-text-opacity: 1;
|
|
1359
|
-
color: rgb(49, 143, 172, var(--tw-text-opacity, 1));
|
|
1360
|
-
}
|
|
1361
1389
|
.psui-el-accordion .psui-el-accordion-item-content {
|
|
1362
1390
|
margin-bottom: 1.25rem;
|
|
1363
1391
|
}
|
|
@@ -1472,11 +1500,11 @@ video {
|
|
|
1472
1500
|
}
|
|
1473
1501
|
.psui-el-input.status-error .psui-el-input-wrapper {
|
|
1474
1502
|
--tw-border-opacity: 1;
|
|
1475
|
-
border-color: rgb(
|
|
1503
|
+
border-color: rgb(205, 155, 155, var(--tw-border-opacity, 1));
|
|
1476
1504
|
}
|
|
1477
1505
|
.psui-el-input.status-error .psui-el-input-hint {
|
|
1478
1506
|
--tw-text-opacity: 1;
|
|
1479
|
-
color: rgb(
|
|
1507
|
+
color: rgb(205, 155, 155, var(--tw-text-opacity, 1));
|
|
1480
1508
|
}
|
|
1481
1509
|
.psui-el-input.status-disabled .psui-el-input-wrapper {
|
|
1482
1510
|
--tw-border-opacity: 1;
|
|
@@ -1500,37 +1528,37 @@ video {
|
|
|
1500
1528
|
}
|
|
1501
1529
|
.psui-el-input.layout-default input {
|
|
1502
1530
|
font-size: 16px;
|
|
1503
|
-
line-height:
|
|
1531
|
+
line-height: 24px;
|
|
1504
1532
|
}
|
|
1505
1533
|
.psui-el-input.layout-default input {
|
|
1506
1534
|
padding: 11.5px 16px;
|
|
1507
1535
|
}
|
|
1508
1536
|
.psui-el-input.layout-default.status-resting .psui-el-input-wrapper:hover {
|
|
1509
1537
|
--tw-border-opacity: 1;
|
|
1510
|
-
border-color: rgb(
|
|
1538
|
+
border-color: rgb(45, 165, 204, var(--tw-border-opacity, 1));
|
|
1511
1539
|
}
|
|
1512
1540
|
.psui-el-input.layout-default.status-active .psui-el-input-wrapper {
|
|
1513
1541
|
--tw-border-opacity: 1;
|
|
1514
|
-
border-color: rgb(
|
|
1542
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
1515
1543
|
}
|
|
1516
1544
|
.psui-el-input.layout-mini input {
|
|
1517
1545
|
font-size: 14px;
|
|
1518
|
-
line-height:
|
|
1546
|
+
line-height: 20px;
|
|
1519
1547
|
}
|
|
1520
1548
|
.psui-el-input.layout-mini input {
|
|
1521
1549
|
padding: 7px 8px;
|
|
1522
1550
|
}
|
|
1523
1551
|
.psui-el-input.layout-mini.status-resting .psui-el-input-wrapper:hover {
|
|
1524
1552
|
--tw-border-opacity: 1;
|
|
1525
|
-
border-color: rgb(
|
|
1553
|
+
border-color: rgb(155, 222, 181, var(--tw-border-opacity, 1));
|
|
1526
1554
|
}
|
|
1527
1555
|
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper {
|
|
1528
1556
|
--tw-border-opacity: 1;
|
|
1529
|
-
border-color: rgb(
|
|
1557
|
+
border-color: rgb(155, 222, 181, var(--tw-border-opacity, 1));
|
|
1530
1558
|
}
|
|
1531
1559
|
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper input {
|
|
1532
1560
|
--tw-text-opacity: 1;
|
|
1533
|
-
color: rgb(
|
|
1561
|
+
color: rgb(155, 222, 181, var(--tw-text-opacity, 1));
|
|
1534
1562
|
}
|
|
1535
1563
|
.psui-el-input.layout-mini.status-active .psui-el-input-wrapper input.focus {
|
|
1536
1564
|
--tw-text-opacity: 1;
|
|
@@ -1539,35 +1567,70 @@ video {
|
|
|
1539
1567
|
|
|
1540
1568
|
.psui-el-button {
|
|
1541
1569
|
display: flex;
|
|
1570
|
+
cursor: pointer;
|
|
1542
1571
|
align-content: center;
|
|
1543
1572
|
align-items: center;
|
|
1544
|
-
border-radius: 0.375rem;
|
|
1545
1573
|
font-weight: 700;
|
|
1574
|
+
text-decoration-line: none;
|
|
1546
1575
|
transition-property: all;
|
|
1547
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1548
1576
|
transition-duration: 130ms;
|
|
1577
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1578
|
+
/* Layout Solid (alias: Primary) */
|
|
1579
|
+
/* Layout Outline (alias: Secondary) */
|
|
1580
|
+
/* &.layout-ghost {
|
|
1581
|
+
@apply psui-bg-blue-20 psui-text-blue-60;
|
|
1582
|
+
|
|
1583
|
+
&.hover {
|
|
1584
|
+
@apply psui-bg-blue-10;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
&:active:not(.disabled) {
|
|
1588
|
+
@apply psui-shadow-[inset_0px_1px_2px_rgba(0,0,0,0.05)];
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
&.disabled {
|
|
1592
|
+
@apply psui-bg-gray-20 psui-text-gray-40 psui-cursor-default;
|
|
1593
|
+
}
|
|
1594
|
+
} */
|
|
1595
|
+
/* Layout OnlyText (alias: TextOnly) */
|
|
1596
|
+
/* Layout Caution (alias: Destructive) */
|
|
1549
1597
|
}
|
|
1550
1598
|
.psui-el-button span {
|
|
1551
1599
|
flex-shrink: 0;
|
|
1552
1600
|
}
|
|
1553
1601
|
.psui-el-button span {
|
|
1554
|
-
|
|
1602
|
+
text-align: right;
|
|
1555
1603
|
}
|
|
1556
1604
|
.psui-el-button span {
|
|
1557
|
-
line-height: 130%;
|
|
1558
1605
|
font-family: inherit;
|
|
1559
|
-
|
|
1606
|
+
}
|
|
1607
|
+
.psui-el-button span {
|
|
1608
|
+
font-weight: 600;
|
|
1609
|
+
}
|
|
1610
|
+
.psui-el-button span {
|
|
1611
|
+
line-height: 130%;
|
|
1560
1612
|
}
|
|
1561
1613
|
.psui-el-button:focus {
|
|
1562
|
-
outline:
|
|
1614
|
+
outline: 2px solid transparent;
|
|
1615
|
+
outline-offset: 2px;
|
|
1563
1616
|
}
|
|
1564
1617
|
.psui-el-button:focus-visible {
|
|
1565
|
-
outline: 2px solid #2563EB;
|
|
1566
|
-
outline-offset: 2px;
|
|
1567
1618
|
border-radius: 6px;
|
|
1568
1619
|
}
|
|
1569
|
-
.psui-el-button
|
|
1570
|
-
|
|
1620
|
+
.psui-el-button:focus-visible {
|
|
1621
|
+
outline-style: solid;
|
|
1622
|
+
}
|
|
1623
|
+
.psui-el-button:focus-visible {
|
|
1624
|
+
outline-width: 2px;
|
|
1625
|
+
}
|
|
1626
|
+
.psui-el-button:focus-visible {
|
|
1627
|
+
outline-offset: 2px;
|
|
1628
|
+
}
|
|
1629
|
+
.psui-el-button:focus-visible {
|
|
1630
|
+
outline-color: #2563EB;
|
|
1631
|
+
}
|
|
1632
|
+
.psui-el-button[href] {
|
|
1633
|
+
display: inline-flex;
|
|
1571
1634
|
}
|
|
1572
1635
|
.psui-el-button.size-big {
|
|
1573
1636
|
display: flex;
|
|
@@ -1579,21 +1642,41 @@ video {
|
|
|
1579
1642
|
align-items: center;
|
|
1580
1643
|
}
|
|
1581
1644
|
.psui-el-button.size-big {
|
|
1582
|
-
|
|
1645
|
+
justify-content: center;
|
|
1583
1646
|
}
|
|
1584
|
-
.psui-el-button.size-big
|
|
1585
|
-
|
|
1647
|
+
.psui-el-button.size-big {
|
|
1648
|
+
border-radius: 0.375rem;
|
|
1649
|
+
}
|
|
1650
|
+
.psui-el-button.size-big {
|
|
1651
|
+
padding-top: 9.5px;
|
|
1652
|
+
padding-bottom: 9.5px;
|
|
1586
1653
|
}
|
|
1587
|
-
.psui-el-button.size-big
|
|
1654
|
+
.psui-el-button.size-big {
|
|
1655
|
+
padding-left: 1rem;
|
|
1656
|
+
padding-right: 1rem;
|
|
1657
|
+
}
|
|
1658
|
+
.psui-el-button.size-big {
|
|
1659
|
+
font-size: 16px;
|
|
1660
|
+
}
|
|
1661
|
+
.psui-el-button.size-big.icon-left, .psui-el-button.size-big.icon-right, .psui-el-button.size-big.icon-both {
|
|
1662
|
+
padding-top: 0.5rem;
|
|
1663
|
+
padding-bottom: 0.5rem;
|
|
1664
|
+
}
|
|
1665
|
+
.psui-el-button.size-big.icon-left, .psui-el-button.size-big.icon-right, .psui-el-button.size-big.icon-both {
|
|
1666
|
+
padding-left: 1rem;
|
|
1667
|
+
padding-right: 1rem;
|
|
1668
|
+
}
|
|
1669
|
+
.psui-el-button.size-big .icon-left-side {
|
|
1670
|
+
margin-right: 0.5rem;
|
|
1671
|
+
}
|
|
1672
|
+
.psui-el-button.size-big .icon-left-side {
|
|
1588
1673
|
font-size: 24px;
|
|
1589
|
-
margin-right: 8px;
|
|
1590
1674
|
}
|
|
1591
|
-
.psui-el-button.size-big.icon-right {
|
|
1592
|
-
|
|
1675
|
+
.psui-el-button.size-big .icon-right-side {
|
|
1676
|
+
margin-left: 0.5rem;
|
|
1593
1677
|
}
|
|
1594
|
-
.psui-el-button.size-big.icon-right
|
|
1678
|
+
.psui-el-button.size-big .icon-right-side {
|
|
1595
1679
|
font-size: 24px;
|
|
1596
|
-
margin-left: 8px;
|
|
1597
1680
|
}
|
|
1598
1681
|
.psui-el-button.size-medium {
|
|
1599
1682
|
display: flex;
|
|
@@ -1605,16 +1688,33 @@ video {
|
|
|
1605
1688
|
align-items: center;
|
|
1606
1689
|
}
|
|
1607
1690
|
.psui-el-button.size-medium {
|
|
1608
|
-
|
|
1691
|
+
justify-content: center;
|
|
1692
|
+
}
|
|
1693
|
+
.psui-el-button.size-medium {
|
|
1694
|
+
border-radius: 0.375rem;
|
|
1695
|
+
}
|
|
1696
|
+
.psui-el-button.size-medium {
|
|
1697
|
+
padding-top: 0.375rem;
|
|
1698
|
+
padding-bottom: 0.375rem;
|
|
1699
|
+
}
|
|
1700
|
+
.psui-el-button.size-medium {
|
|
1701
|
+
padding-left: 0.75rem;
|
|
1702
|
+
padding-right: 0.75rem;
|
|
1703
|
+
}
|
|
1704
|
+
.psui-el-button.size-medium {
|
|
1609
1705
|
font-size: 14px;
|
|
1610
1706
|
}
|
|
1611
|
-
.psui-el-button.size-medium.icon-left
|
|
1707
|
+
.psui-el-button.size-medium .icon-left-side {
|
|
1708
|
+
margin-right: 0.25rem;
|
|
1709
|
+
}
|
|
1710
|
+
.psui-el-button.size-medium .icon-left-side {
|
|
1612
1711
|
font-size: 18px;
|
|
1613
|
-
margin-right: 4px;
|
|
1614
1712
|
}
|
|
1615
|
-
.psui-el-button.size-medium.icon-right
|
|
1713
|
+
.psui-el-button.size-medium .icon-right-side {
|
|
1714
|
+
margin-left: 0.25rem;
|
|
1715
|
+
}
|
|
1716
|
+
.psui-el-button.size-medium .icon-right-side {
|
|
1616
1717
|
font-size: 18px;
|
|
1617
|
-
margin-left: 4px;
|
|
1618
1718
|
}
|
|
1619
1719
|
.psui-el-button.size-small {
|
|
1620
1720
|
display: flex;
|
|
@@ -1639,168 +1739,254 @@ video {
|
|
|
1639
1739
|
.psui-el-button.size-small {
|
|
1640
1740
|
font-size: 14px;
|
|
1641
1741
|
}
|
|
1642
|
-
.psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
|
|
1742
|
+
.psui-el-button.size-small.layout-onlytext:active:not(.disabled), .psui-el-button.size-small.layout-textonly:active:not(.disabled) {
|
|
1643
1743
|
--tw-bg-opacity: 1;
|
|
1644
1744
|
background-color: rgb(224, 239, 246, var(--tw-bg-opacity, 1));
|
|
1645
1745
|
}
|
|
1646
|
-
.psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
|
|
1746
|
+
.psui-el-button.size-small.layout-onlytext:active:not(.disabled), .psui-el-button.size-small.layout-textonly:active:not(.disabled) {
|
|
1647
1747
|
--tw-text-opacity: 1;
|
|
1648
|
-
color: rgb(
|
|
1748
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1649
1749
|
}
|
|
1650
|
-
.psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
|
|
1651
|
-
|
|
1750
|
+
.psui-el-button.size-small.layout-onlytext:active:not(.disabled), .psui-el-button.size-small.layout-textonly:active:not(.disabled) {
|
|
1751
|
+
--tw-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
|
|
1752
|
+
--tw-shadow-colored: inset 0px 1px 2px var(--tw-shadow-color);
|
|
1753
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
|
|
1652
1754
|
}
|
|
1653
|
-
.psui-el-button.size-small.hover.layout-onlytext {
|
|
1755
|
+
.psui-el-button.size-small.hover.layout-onlytext, .psui-el-button.size-small.hover.layout-textonly {
|
|
1654
1756
|
--tw-bg-opacity: 1 !important;
|
|
1655
1757
|
background-color: rgb(224, 239, 246, var(--tw-bg-opacity, 1)) !important;
|
|
1656
1758
|
}
|
|
1657
|
-
.psui-el-button.size-small.hover.layout-onlytext {
|
|
1759
|
+
.psui-el-button.size-small.hover.layout-onlytext, .psui-el-button.size-small.hover.layout-textonly {
|
|
1658
1760
|
--tw-text-opacity: 1 !important;
|
|
1659
|
-
color: rgb(
|
|
1761
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1)) !important;
|
|
1660
1762
|
}
|
|
1661
|
-
.psui-el-button.size-small.icon-left
|
|
1763
|
+
.psui-el-button.size-small .icon-left-side {
|
|
1764
|
+
margin-right: 0.25rem;
|
|
1765
|
+
}
|
|
1766
|
+
.psui-el-button.size-small .icon-left-side {
|
|
1662
1767
|
font-size: 18px;
|
|
1663
|
-
margin-right: 4px;
|
|
1664
1768
|
}
|
|
1665
|
-
.psui-el-button.size-small.icon-right
|
|
1769
|
+
.psui-el-button.size-small .icon-right-side {
|
|
1770
|
+
margin-left: 0.25rem;
|
|
1771
|
+
}
|
|
1772
|
+
.psui-el-button.size-small .icon-right-side {
|
|
1666
1773
|
font-size: 18px;
|
|
1667
|
-
margin-left: 4px;
|
|
1668
1774
|
}
|
|
1669
|
-
.psui-el-button.
|
|
1775
|
+
.psui-el-button.size-compact {
|
|
1776
|
+
display: flex;
|
|
1777
|
+
}
|
|
1778
|
+
.psui-el-button.size-compact {
|
|
1779
|
+
align-items: center;
|
|
1780
|
+
}
|
|
1781
|
+
.psui-el-button.size-compact {
|
|
1782
|
+
justify-content: center;
|
|
1783
|
+
}
|
|
1784
|
+
.psui-el-button.size-compact {
|
|
1785
|
+
border-radius: 0.25rem;
|
|
1786
|
+
}
|
|
1787
|
+
.psui-el-button.size-compact {
|
|
1788
|
+
padding-top: 0.125rem;
|
|
1789
|
+
padding-bottom: 0.125rem;
|
|
1790
|
+
}
|
|
1791
|
+
.psui-el-button.size-compact {
|
|
1792
|
+
padding-left: 0.375rem;
|
|
1793
|
+
padding-right: 0.375rem;
|
|
1794
|
+
}
|
|
1795
|
+
.psui-el-button.size-compact {
|
|
1796
|
+
font-size: 14px;
|
|
1797
|
+
}
|
|
1798
|
+
.psui-el-button.size-compact .icon-left-side {
|
|
1799
|
+
margin-right: 0.125rem;
|
|
1800
|
+
}
|
|
1801
|
+
.psui-el-button.size-compact .icon-left-side {
|
|
1802
|
+
font-size: 16px;
|
|
1803
|
+
}
|
|
1804
|
+
.psui-el-button.size-compact .icon-right-side {
|
|
1805
|
+
margin-left: 0.125rem;
|
|
1806
|
+
}
|
|
1807
|
+
.psui-el-button.size-compact .icon-right-side {
|
|
1808
|
+
font-size: 16px;
|
|
1809
|
+
}
|
|
1810
|
+
.psui-el-button.layout-solid, .psui-el-button.layout-primary {
|
|
1670
1811
|
--tw-bg-opacity: 1;
|
|
1671
|
-
background-color: rgb(
|
|
1812
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
1672
1813
|
}
|
|
1673
|
-
.psui-el-button.layout-solid {
|
|
1814
|
+
.psui-el-button.layout-solid, .psui-el-button.layout-primary {
|
|
1674
1815
|
--tw-text-opacity: 1;
|
|
1675
1816
|
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
1676
1817
|
}
|
|
1677
|
-
.psui-el-button.layout-solid.hover {
|
|
1818
|
+
.psui-el-button.layout-solid.hover, .psui-el-button.layout-primary.hover {
|
|
1678
1819
|
--tw-bg-opacity: 1;
|
|
1679
|
-
background-color: rgb(
|
|
1820
|
+
background-color: rgb(10, 100, 128, var(--tw-bg-opacity, 1));
|
|
1680
1821
|
}
|
|
1681
|
-
.psui-el-button.layout-solid.hover {
|
|
1822
|
+
.psui-el-button.layout-solid.hover, .psui-el-button.layout-primary.hover {
|
|
1682
1823
|
--tw-text-opacity: 1;
|
|
1683
1824
|
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
1684
1825
|
}
|
|
1685
|
-
.psui-el-button.layout-solid:active:not(.disabled) {
|
|
1826
|
+
.psui-el-button.layout-solid:active:not(.disabled), .psui-el-button.layout-primary:active:not(.disabled) {
|
|
1686
1827
|
--tw-bg-opacity: 1;
|
|
1687
|
-
background-color: rgb(
|
|
1828
|
+
background-color: rgb(10, 100, 128, var(--tw-bg-opacity, 1));
|
|
1688
1829
|
}
|
|
1689
|
-
.psui-el-button.layout-solid:active:not(.disabled) {
|
|
1830
|
+
.psui-el-button.layout-solid:active:not(.disabled), .psui-el-button.layout-primary:active:not(.disabled) {
|
|
1690
1831
|
--tw-text-opacity: 1;
|
|
1691
1832
|
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
1692
1833
|
}
|
|
1693
|
-
.psui-el-button.layout-solid:active:not(.disabled) {
|
|
1694
|
-
|
|
1834
|
+
.psui-el-button.layout-solid:active:not(.disabled), .psui-el-button.layout-primary:active:not(.disabled) {
|
|
1835
|
+
--tw-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
|
|
1836
|
+
--tw-shadow-colored: inset 0px 1px 2px var(--tw-shadow-color);
|
|
1837
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
|
|
1695
1838
|
}
|
|
1696
|
-
.psui-el-button.layout-solid.disabled {
|
|
1839
|
+
.psui-el-button.layout-solid.disabled, .psui-el-button.layout-primary.disabled {
|
|
1697
1840
|
cursor: default;
|
|
1698
1841
|
}
|
|
1699
|
-
.psui-el-button.layout-solid.disabled {
|
|
1842
|
+
.psui-el-button.layout-solid.disabled, .psui-el-button.layout-primary.disabled {
|
|
1700
1843
|
--tw-bg-opacity: 1;
|
|
1701
1844
|
background-color: rgb(230, 236, 242, var(--tw-bg-opacity, 1));
|
|
1702
1845
|
}
|
|
1703
|
-
.psui-el-button.layout-solid.disabled {
|
|
1846
|
+
.psui-el-button.layout-solid.disabled, .psui-el-button.layout-primary.disabled {
|
|
1847
|
+
--tw-text-opacity: 1;
|
|
1848
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
1849
|
+
}
|
|
1850
|
+
.psui-el-button.layout-solid.disabled .icon-left-side,
|
|
1851
|
+
.psui-el-button.layout-solid.disabled .icon-right-side, .psui-el-button.layout-primary.disabled .icon-left-side,
|
|
1852
|
+
.psui-el-button.layout-primary.disabled .icon-right-side {
|
|
1704
1853
|
--tw-text-opacity: 1;
|
|
1705
1854
|
color: rgb(162, 172, 183, var(--tw-text-opacity, 1));
|
|
1706
1855
|
}
|
|
1707
|
-
.psui-el-button.layout-outline {
|
|
1856
|
+
.psui-el-button.layout-outline, .psui-el-button.layout-secondary {
|
|
1708
1857
|
border-width: 1px;
|
|
1709
1858
|
}
|
|
1710
|
-
.psui-el-button.layout-outline {
|
|
1859
|
+
.psui-el-button.layout-outline, .psui-el-button.layout-secondary {
|
|
1711
1860
|
--tw-border-opacity: 1;
|
|
1712
|
-
border-color: rgb(
|
|
1861
|
+
border-color: rgb(190, 220, 235, var(--tw-border-opacity, 1));
|
|
1862
|
+
}
|
|
1863
|
+
.psui-el-button.layout-outline, .psui-el-button.layout-secondary {
|
|
1864
|
+
background-color: transparent;
|
|
1713
1865
|
}
|
|
1714
|
-
.psui-el-button.layout-outline {
|
|
1866
|
+
.psui-el-button.layout-outline, .psui-el-button.layout-secondary {
|
|
1715
1867
|
--tw-text-opacity: 1;
|
|
1716
|
-
color: rgb(
|
|
1868
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
1717
1869
|
}
|
|
1718
|
-
.psui-el-button.layout-outline
|
|
1719
|
-
|
|
1870
|
+
.psui-el-button.layout-outline .icon-left-side,
|
|
1871
|
+
.psui-el-button.layout-outline .icon-right-side, .psui-el-button.layout-secondary .icon-left-side,
|
|
1872
|
+
.psui-el-button.layout-secondary .icon-right-side {
|
|
1873
|
+
--tw-text-opacity: 1;
|
|
1874
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1720
1875
|
}
|
|
1721
|
-
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active {
|
|
1876
|
+
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active, .psui-el-button.layout-secondary.hover, .psui-el-button.layout-secondary:active {
|
|
1722
1877
|
border-width: 1px;
|
|
1723
1878
|
}
|
|
1724
|
-
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active {
|
|
1879
|
+
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active, .psui-el-button.layout-secondary.hover, .psui-el-button.layout-secondary:active {
|
|
1725
1880
|
--tw-border-opacity: 1;
|
|
1726
|
-
border-color: rgb(
|
|
1881
|
+
border-color: rgb(190, 220, 235, var(--tw-border-opacity, 1));
|
|
1882
|
+
}
|
|
1883
|
+
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active, .psui-el-button.layout-secondary.hover, .psui-el-button.layout-secondary:active {
|
|
1884
|
+
--tw-bg-opacity: 1;
|
|
1885
|
+
background-color: rgb(224, 239, 246, var(--tw-bg-opacity, 1));
|
|
1886
|
+
}
|
|
1887
|
+
.psui-el-button.layout-outline.hover, .psui-el-button.layout-outline:active, .psui-el-button.layout-secondary.hover, .psui-el-button.layout-secondary:active {
|
|
1888
|
+
--tw-text-opacity: 1;
|
|
1889
|
+
color: rgb(0, 42, 58, var(--tw-text-opacity, 1));
|
|
1727
1890
|
}
|
|
1728
|
-
.psui-el-button.layout-outline.
|
|
1891
|
+
.psui-el-button.layout-outline.hover .icon-left-side,
|
|
1892
|
+
.psui-el-button.layout-outline.hover .icon-right-side, .psui-el-button.layout-outline:active .icon-left-side,
|
|
1893
|
+
.psui-el-button.layout-outline:active .icon-right-side, .psui-el-button.layout-secondary.hover .icon-left-side,
|
|
1894
|
+
.psui-el-button.layout-secondary.hover .icon-right-side, .psui-el-button.layout-secondary:active .icon-left-side,
|
|
1895
|
+
.psui-el-button.layout-secondary:active .icon-right-side {
|
|
1896
|
+
--tw-text-opacity: 1;
|
|
1897
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1898
|
+
}
|
|
1899
|
+
.psui-el-button.layout-outline.disabled, .psui-el-button.layout-secondary.disabled {
|
|
1729
1900
|
cursor: default;
|
|
1730
1901
|
}
|
|
1731
|
-
.psui-el-button.layout-outline.disabled {
|
|
1902
|
+
.psui-el-button.layout-outline.disabled, .psui-el-button.layout-secondary.disabled {
|
|
1903
|
+
border-width: 1px;
|
|
1904
|
+
}
|
|
1905
|
+
.psui-el-button.layout-outline.disabled, .psui-el-button.layout-secondary.disabled {
|
|
1732
1906
|
--tw-border-opacity: 1;
|
|
1733
1907
|
border-color: rgb(214, 221, 229, var(--tw-border-opacity, 1));
|
|
1734
1908
|
}
|
|
1735
|
-
.psui-el-button.layout-outline.disabled {
|
|
1736
|
-
--tw-text-opacity: 1;
|
|
1737
|
-
color: rgb(162, 172, 183, var(--tw-text-opacity, 1));
|
|
1738
|
-
}
|
|
1739
|
-
.psui-el-button.layout-ghost {
|
|
1909
|
+
.psui-el-button.layout-outline.disabled, .psui-el-button.layout-secondary.disabled {
|
|
1740
1910
|
--tw-bg-opacity: 1;
|
|
1741
|
-
background-color: rgb(
|
|
1911
|
+
background-color: rgb(230, 236, 242, var(--tw-bg-opacity, 1));
|
|
1742
1912
|
}
|
|
1743
|
-
.psui-el-button.layout-
|
|
1913
|
+
.psui-el-button.layout-outline.disabled, .psui-el-button.layout-secondary.disabled {
|
|
1744
1914
|
--tw-text-opacity: 1;
|
|
1745
|
-
color: rgb(
|
|
1915
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
1746
1916
|
}
|
|
1747
|
-
.psui-el-button.layout-
|
|
1748
|
-
|
|
1749
|
-
|
|
1917
|
+
.psui-el-button.layout-outline.disabled .icon-left-side,
|
|
1918
|
+
.psui-el-button.layout-outline.disabled .icon-right-side, .psui-el-button.layout-secondary.disabled .icon-left-side,
|
|
1919
|
+
.psui-el-button.layout-secondary.disabled .icon-right-side {
|
|
1920
|
+
--tw-text-opacity: 1;
|
|
1921
|
+
color: rgb(162, 172, 183, var(--tw-text-opacity, 1));
|
|
1750
1922
|
}
|
|
1751
|
-
.psui-el-button.layout-
|
|
1752
|
-
|
|
1923
|
+
.psui-el-button.layout-onlytext, .psui-el-button.layout-textonly {
|
|
1924
|
+
--tw-text-opacity: 1;
|
|
1925
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
1753
1926
|
}
|
|
1754
|
-
.psui-el-button.layout-
|
|
1755
|
-
|
|
1927
|
+
.psui-el-button.layout-onlytext .icon-left-side,
|
|
1928
|
+
.psui-el-button.layout-onlytext .icon-right-side, .psui-el-button.layout-textonly .icon-left-side,
|
|
1929
|
+
.psui-el-button.layout-textonly .icon-right-side {
|
|
1930
|
+
--tw-text-opacity: 1;
|
|
1931
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1756
1932
|
}
|
|
1757
|
-
.psui-el-button.layout-
|
|
1933
|
+
.psui-el-button.layout-onlytext.hover, .psui-el-button.layout-textonly.hover {
|
|
1758
1934
|
--tw-bg-opacity: 1;
|
|
1759
|
-
background-color: rgb(
|
|
1935
|
+
background-color: rgb(224, 239, 246, var(--tw-bg-opacity, 1));
|
|
1760
1936
|
}
|
|
1761
|
-
.psui-el-button.layout-
|
|
1937
|
+
.psui-el-button.layout-onlytext.hover, .psui-el-button.layout-textonly.hover {
|
|
1762
1938
|
--tw-text-opacity: 1;
|
|
1763
|
-
color: rgb(
|
|
1939
|
+
color: rgb(0, 42, 58, var(--tw-text-opacity, 1));
|
|
1764
1940
|
}
|
|
1765
|
-
.psui-el-button.layout-onlytext
|
|
1941
|
+
.psui-el-button.layout-onlytext.hover .icon-left-side,
|
|
1942
|
+
.psui-el-button.layout-onlytext.hover .icon-right-side, .psui-el-button.layout-textonly.hover .icon-left-side,
|
|
1943
|
+
.psui-el-button.layout-textonly.hover .icon-right-side {
|
|
1766
1944
|
--tw-text-opacity: 1;
|
|
1767
|
-
color: rgb(
|
|
1945
|
+
color: rgb(10, 100, 128, var(--tw-text-opacity, 1));
|
|
1768
1946
|
}
|
|
1769
|
-
.psui-el-button.layout-onlytext.disabled {
|
|
1947
|
+
.psui-el-button.layout-onlytext.disabled, .psui-el-button.layout-textonly.disabled {
|
|
1770
1948
|
cursor: default;
|
|
1771
1949
|
}
|
|
1772
|
-
.psui-el-button.layout-onlytext.disabled {
|
|
1950
|
+
.psui-el-button.layout-onlytext.disabled, .psui-el-button.layout-textonly.disabled {
|
|
1773
1951
|
--tw-text-opacity: 1;
|
|
1774
|
-
color: rgb(
|
|
1952
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
1775
1953
|
}
|
|
1776
|
-
.psui-el-button.layout-onlytext.
|
|
1954
|
+
.psui-el-button.layout-onlytext.disabled .icon-left-side,
|
|
1955
|
+
.psui-el-button.layout-onlytext.disabled .icon-right-side, .psui-el-button.layout-textonly.disabled .icon-left-side,
|
|
1956
|
+
.psui-el-button.layout-textonly.disabled .icon-right-side {
|
|
1777
1957
|
--tw-text-opacity: 1;
|
|
1778
|
-
color: rgb(
|
|
1958
|
+
color: rgb(162, 172, 183, var(--tw-text-opacity, 1));
|
|
1779
1959
|
}
|
|
1780
|
-
.psui-el-button.layout-caution {
|
|
1960
|
+
.psui-el-button.layout-caution, .psui-el-button.layout-destructive {
|
|
1781
1961
|
--tw-bg-opacity: 1;
|
|
1782
|
-
background-color: rgb(
|
|
1962
|
+
background-color: rgb(162, 54, 52, var(--tw-bg-opacity, 1));
|
|
1783
1963
|
}
|
|
1784
|
-
.psui-el-button.layout-caution {
|
|
1964
|
+
.psui-el-button.layout-caution, .psui-el-button.layout-destructive {
|
|
1785
1965
|
--tw-text-opacity: 1;
|
|
1786
|
-
color: rgb(
|
|
1966
|
+
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
1787
1967
|
}
|
|
1788
|
-
.psui-el-button.layout-caution.hover, .psui-el-button.layout-caution:active:not(.disabled) {
|
|
1968
|
+
.psui-el-button.layout-caution.hover, .psui-el-button.layout-caution:active:not(.disabled), .psui-el-button.layout-destructive.hover, .psui-el-button.layout-destructive:active:not(.disabled) {
|
|
1789
1969
|
--tw-bg-opacity: 1;
|
|
1790
1970
|
background-color: rgb(252, 235, 235, var(--tw-bg-opacity, 1));
|
|
1791
1971
|
}
|
|
1792
|
-
.psui-el-button.layout-caution.hover, .psui-el-button.layout-caution:active:not(.disabled) {
|
|
1972
|
+
.psui-el-button.layout-caution.hover, .psui-el-button.layout-caution:active:not(.disabled), .psui-el-button.layout-destructive.hover, .psui-el-button.layout-destructive:active:not(.disabled) {
|
|
1793
1973
|
--tw-text-opacity: 1;
|
|
1794
|
-
color: rgb(
|
|
1974
|
+
color: rgb(162, 54, 52, var(--tw-text-opacity, 1));
|
|
1795
1975
|
}
|
|
1796
|
-
.psui-el-button.layout-caution.disabled {
|
|
1976
|
+
.psui-el-button.layout-caution.disabled, .psui-el-button.layout-destructive.disabled {
|
|
1797
1977
|
cursor: default;
|
|
1798
1978
|
}
|
|
1799
|
-
.psui-el-button.layout-caution.disabled {
|
|
1979
|
+
.psui-el-button.layout-caution.disabled, .psui-el-button.layout-destructive.disabled {
|
|
1800
1980
|
--tw-bg-opacity: 1;
|
|
1801
1981
|
background-color: rgb(230, 236, 242, var(--tw-bg-opacity, 1));
|
|
1802
1982
|
}
|
|
1803
|
-
.psui-el-button.layout-caution.disabled {
|
|
1983
|
+
.psui-el-button.layout-caution.disabled, .psui-el-button.layout-destructive.disabled {
|
|
1984
|
+
--tw-text-opacity: 1;
|
|
1985
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
1986
|
+
}
|
|
1987
|
+
.psui-el-button.layout-caution.disabled .icon-left-side,
|
|
1988
|
+
.psui-el-button.layout-caution.disabled .icon-right-side, .psui-el-button.layout-destructive.disabled .icon-left-side,
|
|
1989
|
+
.psui-el-button.layout-destructive.disabled .icon-right-side {
|
|
1804
1990
|
--tw-text-opacity: 1;
|
|
1805
1991
|
color: rgb(162, 172, 183, var(--tw-text-opacity, 1));
|
|
1806
1992
|
}
|
|
@@ -1848,21 +2034,21 @@ video {
|
|
|
1848
2034
|
}
|
|
1849
2035
|
.psui-el-card-infos-content {
|
|
1850
2036
|
font-size: 16px;
|
|
1851
|
-
line-height:
|
|
2037
|
+
line-height: 24px;
|
|
1852
2038
|
}
|
|
1853
2039
|
.psui-el-card-infos-icon {
|
|
1854
2040
|
margin-right: 0.25rem;
|
|
1855
2041
|
}
|
|
1856
2042
|
.psui-el-card-infos-icon {
|
|
1857
2043
|
--tw-text-opacity: 1;
|
|
1858
|
-
color: rgb(
|
|
2044
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
1859
2045
|
}
|
|
1860
2046
|
.psui-el-card-infos-icon {
|
|
1861
2047
|
font-size: 17px;
|
|
1862
2048
|
}
|
|
1863
2049
|
.psui-el-card-infos:hover .psui-el-card-infos-icon {
|
|
1864
2050
|
--tw-text-opacity: 1;
|
|
1865
|
-
color: rgb(
|
|
2051
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1866
2052
|
}
|
|
1867
2053
|
|
|
1868
2054
|
.psui-el-chart-legend {
|
|
@@ -1898,7 +2084,7 @@ video {
|
|
|
1898
2084
|
}
|
|
1899
2085
|
.psui-el-chart-legend-total {
|
|
1900
2086
|
font-size: 16px;
|
|
1901
|
-
line-height:
|
|
2087
|
+
line-height: 24px;
|
|
1902
2088
|
}
|
|
1903
2089
|
.psui-el-chart-legend-total {
|
|
1904
2090
|
--tw-text-opacity: 1;
|
|
@@ -1909,7 +2095,7 @@ video {
|
|
|
1909
2095
|
}
|
|
1910
2096
|
.psui-el-chart-legend-percentage {
|
|
1911
2097
|
font-size: 16px;
|
|
1912
|
-
line-height:
|
|
2098
|
+
line-height: 24px;
|
|
1913
2099
|
}
|
|
1914
2100
|
.psui-el-chart-legend-percentage {
|
|
1915
2101
|
--tw-text-opacity: 1;
|
|
@@ -1938,7 +2124,7 @@ video {
|
|
|
1938
2124
|
}
|
|
1939
2125
|
.psui-el-climate-zone-badge:hover {
|
|
1940
2126
|
--tw-text-opacity: 1;
|
|
1941
|
-
color: rgb(
|
|
2127
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
1942
2128
|
}
|
|
1943
2129
|
.psui-el-climate-zone-badge i {
|
|
1944
2130
|
font-family: "Material Icons Round";
|
|
@@ -2071,7 +2257,7 @@ video {
|
|
|
2071
2257
|
--tw-border-opacity: 1;
|
|
2072
2258
|
border-color: rgb(230, 236, 242, var(--tw-border-opacity, 1));
|
|
2073
2259
|
font-size: 14px;
|
|
2074
|
-
line-height:
|
|
2260
|
+
line-height: 20px;
|
|
2075
2261
|
--tw-text-opacity: 1;
|
|
2076
2262
|
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
2077
2263
|
border-spacing: 0;
|
|
@@ -2146,7 +2332,7 @@ video {
|
|
|
2146
2332
|
max-width: 100%;
|
|
2147
2333
|
vertical-align: top;
|
|
2148
2334
|
font-size: 16px;
|
|
2149
|
-
line-height:
|
|
2335
|
+
line-height: 24px;
|
|
2150
2336
|
}
|
|
2151
2337
|
.psui-el-table-results .is-warning-column {
|
|
2152
2338
|
padding-right: 12px;
|
|
@@ -2212,7 +2398,7 @@ video {
|
|
|
2212
2398
|
}
|
|
2213
2399
|
.psui-el-table-results.layout-results thead tr .title {
|
|
2214
2400
|
font-size: 14px;
|
|
2215
|
-
line-height:
|
|
2401
|
+
line-height: 20px;
|
|
2216
2402
|
}
|
|
2217
2403
|
.psui-el-table-results.layout-results thead tr .title {
|
|
2218
2404
|
font-weight: 700;
|
|
@@ -2309,7 +2495,7 @@ video {
|
|
|
2309
2495
|
}
|
|
2310
2496
|
.psui-el-table-results.layout-results thead tr:first-of-type p {
|
|
2311
2497
|
font-size: 16px;
|
|
2312
|
-
line-height:
|
|
2498
|
+
line-height: 24px;
|
|
2313
2499
|
}
|
|
2314
2500
|
.psui-el-table-results.layout-results thead tr:first-of-type p {
|
|
2315
2501
|
line-height: 18px;
|
|
@@ -2348,7 +2534,7 @@ video {
|
|
|
2348
2534
|
}
|
|
2349
2535
|
.psui-el-table-results.layout-results tbody tr td {
|
|
2350
2536
|
font-size: 14px;
|
|
2351
|
-
line-height:
|
|
2537
|
+
line-height: 20px;
|
|
2352
2538
|
}
|
|
2353
2539
|
.psui-el-table-results.layout-results tbody tr td {
|
|
2354
2540
|
--tw-text-opacity: 1;
|
|
@@ -2447,7 +2633,7 @@ video {
|
|
|
2447
2633
|
}
|
|
2448
2634
|
.psui-el-table-results.layout-comparison thead tr .title {
|
|
2449
2635
|
font-size: 14px;
|
|
2450
|
-
line-height:
|
|
2636
|
+
line-height: 20px;
|
|
2451
2637
|
}
|
|
2452
2638
|
.psui-el-table-results.layout-comparison thead tr .title {
|
|
2453
2639
|
font-weight: 700;
|
|
@@ -2522,7 +2708,7 @@ video {
|
|
|
2522
2708
|
}
|
|
2523
2709
|
.psui-el-table-results.layout-comparison thead tr:first-of-type th {
|
|
2524
2710
|
font-size: 16px;
|
|
2525
|
-
line-height:
|
|
2711
|
+
line-height: 24px;
|
|
2526
2712
|
}
|
|
2527
2713
|
.psui-el-table-results.layout-comparison thead tr:first-of-type th {
|
|
2528
2714
|
--tw-text-opacity: 1;
|
|
@@ -2589,7 +2775,7 @@ video {
|
|
|
2589
2775
|
}
|
|
2590
2776
|
.psui-el-table-results.layout-comparison thead tr:first-of-type p {
|
|
2591
2777
|
font-size: 14px;
|
|
2592
|
-
line-height:
|
|
2778
|
+
line-height: 20px;
|
|
2593
2779
|
}
|
|
2594
2780
|
.psui-el-table-results.layout-comparison thead tr:first-of-type p {
|
|
2595
2781
|
line-height: 18px;
|
|
@@ -2624,7 +2810,7 @@ video {
|
|
|
2624
2810
|
}
|
|
2625
2811
|
.psui-el-table-results.layout-comparison tbody tr td .title {
|
|
2626
2812
|
font-size: 14px;
|
|
2627
|
-
line-height:
|
|
2813
|
+
line-height: 20px;
|
|
2628
2814
|
}
|
|
2629
2815
|
.psui-el-table-results.layout-comparison tbody tr td .title {
|
|
2630
2816
|
font-weight: 700;
|
|
@@ -2783,7 +2969,7 @@ video {
|
|
|
2783
2969
|
}
|
|
2784
2970
|
.psui-el-table-results.layout-flexible thead tr .title {
|
|
2785
2971
|
font-size: 14px;
|
|
2786
|
-
line-height:
|
|
2972
|
+
line-height: 20px;
|
|
2787
2973
|
}
|
|
2788
2974
|
.psui-el-table-results.layout-flexible thead tr .title {
|
|
2789
2975
|
line-height: 1rem;
|
|
@@ -2889,7 +3075,7 @@ video {
|
|
|
2889
3075
|
}
|
|
2890
3076
|
.psui-el-table-results.layout-flexible thead tr:first-of-type p {
|
|
2891
3077
|
font-size: 16px;
|
|
2892
|
-
line-height:
|
|
3078
|
+
line-height: 24px;
|
|
2893
3079
|
}
|
|
2894
3080
|
.psui-el-table-results.layout-flexible thead tr:first-of-type p {
|
|
2895
3081
|
line-height: 18px;
|
|
@@ -2993,7 +3179,7 @@ video {
|
|
|
2993
3179
|
}
|
|
2994
3180
|
.psui-el-table-results.layout-flexible tbody tr td {
|
|
2995
3181
|
font-size: 14px;
|
|
2996
|
-
line-height:
|
|
3182
|
+
line-height: 20px;
|
|
2997
3183
|
}
|
|
2998
3184
|
.psui-el-table-results.layout-flexible tbody tr td {
|
|
2999
3185
|
--tw-text-opacity: 1;
|
|
@@ -3284,7 +3470,7 @@ video {
|
|
|
3284
3470
|
}
|
|
3285
3471
|
.psui-el-table-results.layout-flexible tbody tr.is-active td .title {
|
|
3286
3472
|
font-size: 14px;
|
|
3287
|
-
line-height:
|
|
3473
|
+
line-height: 20px;
|
|
3288
3474
|
}
|
|
3289
3475
|
.psui-el-table-results.layout-flexible tbody tr.is-active td .title {
|
|
3290
3476
|
--tw-text-opacity: 1;
|
|
@@ -3335,7 +3521,7 @@ video {
|
|
|
3335
3521
|
}
|
|
3336
3522
|
.psui-el-checkbox.size-small {
|
|
3337
3523
|
font-size: 14px;
|
|
3338
|
-
line-height:
|
|
3524
|
+
line-height: 20px;
|
|
3339
3525
|
}
|
|
3340
3526
|
.psui-el-checkbox.size-small.layout-default input:checked ~ .psui-el-checkmark::before {
|
|
3341
3527
|
content: "check_box";
|
|
@@ -3359,7 +3545,7 @@ video {
|
|
|
3359
3545
|
}
|
|
3360
3546
|
.psui-el-checkbox.size-small input:checked ~ .psui-el-checkmark::before {
|
|
3361
3547
|
--tw-text-opacity: 1;
|
|
3362
|
-
color: rgb(
|
|
3548
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
3363
3549
|
}
|
|
3364
3550
|
.psui-el-checkbox.size-small input:checked ~ .psui-el-checkmark::before {
|
|
3365
3551
|
font-size: 18px;
|
|
@@ -3392,7 +3578,7 @@ video {
|
|
|
3392
3578
|
}
|
|
3393
3579
|
.psui-el-checkbox.size-big {
|
|
3394
3580
|
font-size: 16px;
|
|
3395
|
-
line-height:
|
|
3581
|
+
line-height: 24px;
|
|
3396
3582
|
}
|
|
3397
3583
|
.psui-el-checkbox.size-big.layout-mixed input:checked ~ .psui-el-checkmark::before {
|
|
3398
3584
|
content: "indeterminate_check_box";
|
|
@@ -3416,7 +3602,7 @@ video {
|
|
|
3416
3602
|
}
|
|
3417
3603
|
.psui-el-checkbox.size-big input:checked ~ .psui-el-checkmark:before {
|
|
3418
3604
|
--tw-text-opacity: 1;
|
|
3419
|
-
color: rgb(
|
|
3605
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
3420
3606
|
}
|
|
3421
3607
|
.psui-el-checkbox.size-big input:checked ~ .psui-el-checkmark:before {
|
|
3422
3608
|
font-size: 24px;
|
|
@@ -3506,7 +3692,7 @@ video {
|
|
|
3506
3692
|
}
|
|
3507
3693
|
.psui-el-dialog.layout-vertical .psui-el-dialog-wrapper {
|
|
3508
3694
|
font-size: 14px;
|
|
3509
|
-
line-height:
|
|
3695
|
+
line-height: 20px;
|
|
3510
3696
|
}
|
|
3511
3697
|
.psui-el-dialog.layout-vertical i {
|
|
3512
3698
|
vertical-align: top;
|
|
@@ -3529,7 +3715,7 @@ video {
|
|
|
3529
3715
|
}
|
|
3530
3716
|
.psui-el-dialog.layout-horizontal .psui-el-dialog-wrapper {
|
|
3531
3717
|
font-size: 14px;
|
|
3532
|
-
line-height:
|
|
3718
|
+
line-height: 20px;
|
|
3533
3719
|
}
|
|
3534
3720
|
.psui-el-dialog.theme-informative {
|
|
3535
3721
|
--tw-bg-opacity: 1;
|
|
@@ -3537,11 +3723,11 @@ video {
|
|
|
3537
3723
|
}
|
|
3538
3724
|
.psui-el-dialog.theme-informative {
|
|
3539
3725
|
--tw-text-opacity: 1;
|
|
3540
|
-
color: rgb(
|
|
3726
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
3541
3727
|
}
|
|
3542
3728
|
.psui-el-dialog.theme-informative .psui-el-dialog-message {
|
|
3543
3729
|
--tw-text-opacity: 1;
|
|
3544
|
-
color: rgb(
|
|
3730
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
3545
3731
|
}
|
|
3546
3732
|
.psui-el-dialog.theme-success {
|
|
3547
3733
|
--tw-bg-opacity: 1;
|
|
@@ -3664,7 +3850,7 @@ video {
|
|
|
3664
3850
|
}
|
|
3665
3851
|
.psui-el-radio.size-small {
|
|
3666
3852
|
font-size: 14px;
|
|
3667
|
-
line-height:
|
|
3853
|
+
line-height: 20px;
|
|
3668
3854
|
}
|
|
3669
3855
|
.psui-el-radio.size-small input {
|
|
3670
3856
|
position: absolute;
|
|
@@ -3680,7 +3866,7 @@ video {
|
|
|
3680
3866
|
}
|
|
3681
3867
|
.psui-el-radio.size-small input:checked ~ .psui-el-checkmark::before {
|
|
3682
3868
|
--tw-text-opacity: 1;
|
|
3683
|
-
color: rgb(
|
|
3869
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
3684
3870
|
}
|
|
3685
3871
|
.psui-el-radio.size-small input:checked ~ .psui-el-checkmark::before {
|
|
3686
3872
|
font-size: 18px;
|
|
@@ -3715,7 +3901,7 @@ video {
|
|
|
3715
3901
|
}
|
|
3716
3902
|
.psui-el-radio.size-big {
|
|
3717
3903
|
font-size: 14px;
|
|
3718
|
-
line-height:
|
|
3904
|
+
line-height: 20px;
|
|
3719
3905
|
}
|
|
3720
3906
|
.psui-el-radio.size-big input {
|
|
3721
3907
|
position: absolute;
|
|
@@ -3731,7 +3917,7 @@ video {
|
|
|
3731
3917
|
}
|
|
3732
3918
|
.psui-el-radio.size-big input:checked ~ .psui-el-checkmark::before {
|
|
3733
3919
|
--tw-text-opacity: 1;
|
|
3734
|
-
color: rgb(
|
|
3920
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
3735
3921
|
}
|
|
3736
3922
|
.psui-el-radio.size-big input:checked ~ .psui-el-checkmark::before {
|
|
3737
3923
|
font-size: 24px;
|
|
@@ -4139,7 +4325,7 @@ video {
|
|
|
4139
4325
|
}
|
|
4140
4326
|
.psui-el-dropdown-menu-list .psui-el-dropdown-menu-list-item {
|
|
4141
4327
|
font-size: 14px;
|
|
4142
|
-
line-height:
|
|
4328
|
+
line-height: 20px;
|
|
4143
4329
|
}
|
|
4144
4330
|
.psui-el-dropdown-menu-list .psui-el-dropdown-menu-list-item {
|
|
4145
4331
|
--tw-text-opacity: 1;
|
|
@@ -4177,11 +4363,11 @@ video {
|
|
|
4177
4363
|
}
|
|
4178
4364
|
.psui-el-dropdown-menu-list .psui-el-dropdown-menu-list-item.is-selected {
|
|
4179
4365
|
--tw-text-opacity: 1;
|
|
4180
|
-
color: rgb(
|
|
4366
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4181
4367
|
}
|
|
4182
4368
|
.psui-el-dropdown-menu-list .psui-el-dropdown-menu-list-item.is-selected:hover {
|
|
4183
4369
|
--tw-text-opacity: 1;
|
|
4184
|
-
color: rgb(
|
|
4370
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4185
4371
|
}
|
|
4186
4372
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item {
|
|
4187
4373
|
margin-left: 1rem;
|
|
@@ -4192,7 +4378,7 @@ video {
|
|
|
4192
4378
|
}
|
|
4193
4379
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item {
|
|
4194
4380
|
font-size: 16px;
|
|
4195
|
-
line-height:
|
|
4381
|
+
line-height: 24px;
|
|
4196
4382
|
}
|
|
4197
4383
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item {
|
|
4198
4384
|
padding: 11.5px 16px 11.5px 8px;
|
|
@@ -4242,7 +4428,7 @@ video {
|
|
|
4242
4428
|
}
|
|
4243
4429
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item.is-selected .psui-el-dropdown-menu-list-item-line {
|
|
4244
4430
|
--tw-border-opacity: 1;
|
|
4245
|
-
border-color: rgb(
|
|
4431
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
4246
4432
|
}
|
|
4247
4433
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item.is-selected:hover {
|
|
4248
4434
|
--tw-bg-opacity: 1;
|
|
@@ -4250,7 +4436,7 @@ video {
|
|
|
4250
4436
|
}
|
|
4251
4437
|
.psui-el-dropdown-menu-list.layout-rich .psui-el-dropdown-menu-list-item.is-selected:hover {
|
|
4252
4438
|
--tw-text-opacity: 1;
|
|
4253
|
-
color: rgb(
|
|
4439
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4254
4440
|
}
|
|
4255
4441
|
|
|
4256
4442
|
.psui-el-slider-label {
|
|
@@ -4258,7 +4444,7 @@ video {
|
|
|
4258
4444
|
}
|
|
4259
4445
|
.psui-el-slider-label span {
|
|
4260
4446
|
font-size: 14px;
|
|
4261
|
-
line-height:
|
|
4447
|
+
line-height: 20px;
|
|
4262
4448
|
}
|
|
4263
4449
|
.psui-el-slider-label span {
|
|
4264
4450
|
--tw-text-opacity: 1;
|
|
@@ -4396,7 +4582,7 @@ video {
|
|
|
4396
4582
|
}
|
|
4397
4583
|
.psui-el-slider.layout-rich .psui-el-slider-input::-webkit-slider-thumb {
|
|
4398
4584
|
--tw-bg-opacity: 1;
|
|
4399
|
-
background-color: rgb(
|
|
4585
|
+
background-color: rgb(45, 165, 204, var(--tw-bg-opacity, 1));
|
|
4400
4586
|
}
|
|
4401
4587
|
.psui-el-slider.layout-rich .psui-el-slider-input::-webkit-slider-thumb {
|
|
4402
4588
|
--tw-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 2px 5px rgba(0, 0, 0, 0.08);
|
|
@@ -4450,7 +4636,7 @@ video {
|
|
|
4450
4636
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar-dynamic,
|
|
4451
4637
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar-max {
|
|
4452
4638
|
--tw-bg-opacity: 1;
|
|
4453
|
-
background-color: rgb(
|
|
4639
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
4454
4640
|
}
|
|
4455
4641
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar,
|
|
4456
4642
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar-bg,
|
|
@@ -4471,7 +4657,7 @@ video {
|
|
|
4471
4657
|
}
|
|
4472
4658
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar {
|
|
4473
4659
|
--tw-bg-opacity: 1;
|
|
4474
|
-
background-color: rgb(
|
|
4660
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
4475
4661
|
}
|
|
4476
4662
|
.psui-el-slider.layout-rich .psui-el-slider-wrapper-input .slider-bar-max {
|
|
4477
4663
|
right: 0px;
|
|
@@ -4511,7 +4697,7 @@ video {
|
|
|
4511
4697
|
}
|
|
4512
4698
|
.psui-el-slider.layout-rich .psui-el-slider-range-value {
|
|
4513
4699
|
--tw-text-opacity: 1;
|
|
4514
|
-
color: rgb(
|
|
4700
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4515
4701
|
}
|
|
4516
4702
|
.psui-el-slider.layout-rich .psui-el-slider-range-value {
|
|
4517
4703
|
top: -28px;
|
|
@@ -4579,7 +4765,7 @@ video {
|
|
|
4579
4765
|
padding-left: 1rem;
|
|
4580
4766
|
padding-right: 1rem;
|
|
4581
4767
|
font-size: 16px;
|
|
4582
|
-
line-height:
|
|
4768
|
+
line-height: 24px;
|
|
4583
4769
|
font-weight: 700;
|
|
4584
4770
|
--tw-text-opacity: 1;
|
|
4585
4771
|
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
@@ -4620,19 +4806,19 @@ video {
|
|
|
4620
4806
|
}
|
|
4621
4807
|
.psui-el-toast.fill-intense.layout-info {
|
|
4622
4808
|
--tw-bg-opacity: 1;
|
|
4623
|
-
background-color: rgb(
|
|
4809
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
4624
4810
|
}
|
|
4625
4811
|
.psui-el-toast.fill-intense.layout-success {
|
|
4626
4812
|
--tw-bg-opacity: 1;
|
|
4627
|
-
background-color: rgb(
|
|
4813
|
+
background-color: rgb(155, 222, 181, var(--tw-bg-opacity, 1));
|
|
4628
4814
|
}
|
|
4629
4815
|
.psui-el-toast.fill-intense.layout-warning {
|
|
4630
4816
|
--tw-bg-opacity: 1;
|
|
4631
|
-
background-color: rgb(
|
|
4817
|
+
background-color: rgb(215, 165, 86, var(--tw-bg-opacity, 1));
|
|
4632
4818
|
}
|
|
4633
4819
|
.psui-el-toast.fill-intense.layout-error {
|
|
4634
4820
|
--tw-bg-opacity: 1;
|
|
4635
|
-
background-color: rgb(
|
|
4821
|
+
background-color: rgb(205, 155, 155, var(--tw-bg-opacity, 1));
|
|
4636
4822
|
}
|
|
4637
4823
|
.psui-el-toast.fill-soft.layout-info {
|
|
4638
4824
|
--tw-bg-opacity: 1;
|
|
@@ -4640,7 +4826,7 @@ video {
|
|
|
4640
4826
|
}
|
|
4641
4827
|
.psui-el-toast.fill-soft.layout-info {
|
|
4642
4828
|
--tw-text-opacity: 1;
|
|
4643
|
-
color: rgb(
|
|
4829
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4644
4830
|
}
|
|
4645
4831
|
.psui-el-toast.fill-soft.layout-success {
|
|
4646
4832
|
--tw-bg-opacity: 1;
|
|
@@ -4648,7 +4834,7 @@ video {
|
|
|
4648
4834
|
}
|
|
4649
4835
|
.psui-el-toast.fill-soft.layout-success {
|
|
4650
4836
|
--tw-text-opacity: 1;
|
|
4651
|
-
color: rgb(
|
|
4837
|
+
color: rgb(155, 222, 181, var(--tw-text-opacity, 1));
|
|
4652
4838
|
}
|
|
4653
4839
|
.psui-el-toast.fill-soft.layout-warning {
|
|
4654
4840
|
--tw-bg-opacity: 1;
|
|
@@ -4656,7 +4842,7 @@ video {
|
|
|
4656
4842
|
}
|
|
4657
4843
|
.psui-el-toast.fill-soft.layout-warning {
|
|
4658
4844
|
--tw-text-opacity: 1;
|
|
4659
|
-
color: rgb(
|
|
4845
|
+
color: rgb(215, 165, 86, var(--tw-text-opacity, 1));
|
|
4660
4846
|
}
|
|
4661
4847
|
.psui-el-toast.fill-soft.layout-error {
|
|
4662
4848
|
--tw-bg-opacity: 1;
|
|
@@ -4664,39 +4850,45 @@ video {
|
|
|
4664
4850
|
}
|
|
4665
4851
|
.psui-el-toast.fill-soft.layout-error {
|
|
4666
4852
|
--tw-text-opacity: 1;
|
|
4667
|
-
color: rgb(
|
|
4853
|
+
color: rgb(205, 155, 155, var(--tw-text-opacity, 1));
|
|
4668
4854
|
}
|
|
4669
4855
|
|
|
4670
4856
|
.psui-el-mini-tag {
|
|
4671
4857
|
display: flex;
|
|
4672
|
-
flex-direction: row;
|
|
4673
|
-
align-items: center;
|
|
4674
|
-
border-radius: 9999px;
|
|
4675
4858
|
width: -moz-fit-content;
|
|
4676
4859
|
width: fit-content;
|
|
4860
|
+
flex-direction: row;
|
|
4861
|
+
align-items: center;
|
|
4862
|
+
border-radius: 0.25rem;
|
|
4677
4863
|
}
|
|
4678
4864
|
.psui-el-mini-tag span {
|
|
4679
4865
|
width: 100%;
|
|
4680
4866
|
}
|
|
4681
4867
|
.psui-el-mini-tag span {
|
|
4682
|
-
|
|
4868
|
+
padding-left: 4px;
|
|
4869
|
+
padding-right: 4px;
|
|
4683
4870
|
}
|
|
4684
4871
|
.psui-el-mini-tag span {
|
|
4685
|
-
|
|
4872
|
+
padding-top: 1px;
|
|
4686
4873
|
}
|
|
4687
4874
|
.psui-el-mini-tag span {
|
|
4688
|
-
padding: 3px
|
|
4689
|
-
font-size: 10px;
|
|
4690
|
-
line-height: 100%;
|
|
4691
|
-
letter-spacing: 0.5px;
|
|
4875
|
+
padding-bottom: 3px;
|
|
4692
4876
|
}
|
|
4693
|
-
.psui-el-mini-tag
|
|
4694
|
-
|
|
4695
|
-
background-color: rgb(100, 181, 206, var(--tw-bg-opacity, 1));
|
|
4877
|
+
.psui-el-mini-tag span {
|
|
4878
|
+
font-size: 12px;
|
|
4696
4879
|
}
|
|
4697
|
-
.psui-el-mini-tag
|
|
4698
|
-
|
|
4699
|
-
|
|
4880
|
+
.psui-el-mini-tag span {
|
|
4881
|
+
font-weight: 600;
|
|
4882
|
+
}
|
|
4883
|
+
.psui-el-mini-tag span {
|
|
4884
|
+
line-height: 16px;
|
|
4885
|
+
}
|
|
4886
|
+
.psui-el-mini-tag-layout-info {
|
|
4887
|
+
border-width: 1px;
|
|
4888
|
+
}
|
|
4889
|
+
.psui-el-mini-tag-layout-info {
|
|
4890
|
+
--tw-border-opacity: 1;
|
|
4891
|
+
border-color: rgb(134, 192, 219, var(--tw-border-opacity, 1));
|
|
4700
4892
|
}
|
|
4701
4893
|
.psui-el-mini-tag-layout-info {
|
|
4702
4894
|
--tw-bg-opacity: 1;
|
|
@@ -4704,15 +4896,14 @@ video {
|
|
|
4704
4896
|
}
|
|
4705
4897
|
.psui-el-mini-tag-layout-info {
|
|
4706
4898
|
--tw-text-opacity: 1;
|
|
4707
|
-
color: rgb(
|
|
4899
|
+
color: rgb(10, 100, 128, var(--tw-text-opacity, 1));
|
|
4708
4900
|
}
|
|
4709
|
-
.psui-el-mini-tag-layout-
|
|
4710
|
-
|
|
4711
|
-
background-color: rgb(93, 184, 131, var(--tw-bg-opacity, 1));
|
|
4901
|
+
.psui-el-mini-tag-layout-success {
|
|
4902
|
+
border-width: 1px;
|
|
4712
4903
|
}
|
|
4713
|
-
.psui-el-mini-tag-layout-
|
|
4714
|
-
--tw-
|
|
4715
|
-
color: rgb(
|
|
4904
|
+
.psui-el-mini-tag-layout-success {
|
|
4905
|
+
--tw-border-opacity: 1;
|
|
4906
|
+
border-color: rgb(155, 222, 181, var(--tw-border-opacity, 1));
|
|
4716
4907
|
}
|
|
4717
4908
|
.psui-el-mini-tag-layout-success {
|
|
4718
4909
|
--tw-bg-opacity: 1;
|
|
@@ -4720,15 +4911,14 @@ video {
|
|
|
4720
4911
|
}
|
|
4721
4912
|
.psui-el-mini-tag-layout-success {
|
|
4722
4913
|
--tw-text-opacity: 1;
|
|
4723
|
-
color: rgb(
|
|
4914
|
+
color: rgb(14, 124, 69, var(--tw-text-opacity, 1));
|
|
4724
4915
|
}
|
|
4725
|
-
.psui-el-mini-tag-layout-
|
|
4726
|
-
|
|
4727
|
-
background-color: rgb(237, 171, 62, var(--tw-bg-opacity, 1));
|
|
4916
|
+
.psui-el-mini-tag-layout-warning {
|
|
4917
|
+
border-width: 1px;
|
|
4728
4918
|
}
|
|
4729
|
-
.psui-el-mini-tag-layout-
|
|
4730
|
-
--tw-
|
|
4731
|
-
color: rgb(
|
|
4919
|
+
.psui-el-mini-tag-layout-warning {
|
|
4920
|
+
--tw-border-opacity: 1;
|
|
4921
|
+
border-color: rgb(215, 165, 86, var(--tw-border-opacity, 1));
|
|
4732
4922
|
}
|
|
4733
4923
|
.psui-el-mini-tag-layout-warning {
|
|
4734
4924
|
--tw-bg-opacity: 1;
|
|
@@ -4736,15 +4926,14 @@ video {
|
|
|
4736
4926
|
}
|
|
4737
4927
|
.psui-el-mini-tag-layout-warning {
|
|
4738
4928
|
--tw-text-opacity: 1;
|
|
4739
|
-
color: rgb(
|
|
4929
|
+
color: rgb(88, 76, 37, var(--tw-text-opacity, 1));
|
|
4740
4930
|
}
|
|
4741
|
-
.psui-el-mini-tag-layout-
|
|
4742
|
-
|
|
4743
|
-
background-color: rgb(214, 92, 90, var(--tw-bg-opacity, 1));
|
|
4931
|
+
.psui-el-mini-tag-layout-error {
|
|
4932
|
+
border-width: 1px;
|
|
4744
4933
|
}
|
|
4745
|
-
.psui-el-mini-tag-layout-
|
|
4746
|
-
--tw-
|
|
4747
|
-
color: rgb(
|
|
4934
|
+
.psui-el-mini-tag-layout-error {
|
|
4935
|
+
--tw-border-opacity: 1;
|
|
4936
|
+
border-color: rgb(205, 155, 155, var(--tw-border-opacity, 1));
|
|
4748
4937
|
}
|
|
4749
4938
|
.psui-el-mini-tag-layout-error {
|
|
4750
4939
|
--tw-bg-opacity: 1;
|
|
@@ -4752,23 +4941,62 @@ video {
|
|
|
4752
4941
|
}
|
|
4753
4942
|
.psui-el-mini-tag-layout-error {
|
|
4754
4943
|
--tw-text-opacity: 1;
|
|
4755
|
-
color: rgb(
|
|
4944
|
+
color: rgb(162, 54, 52, var(--tw-text-opacity, 1));
|
|
4945
|
+
}
|
|
4946
|
+
.psui-el-mini-tag-layout-default {
|
|
4947
|
+
border-width: 1px;
|
|
4948
|
+
}
|
|
4949
|
+
.psui-el-mini-tag-layout-default {
|
|
4950
|
+
--tw-border-opacity: 1;
|
|
4951
|
+
border-color: rgb(214, 221, 229, var(--tw-border-opacity, 1));
|
|
4756
4952
|
}
|
|
4757
|
-
.psui-el-mini-tag-layout-
|
|
4953
|
+
.psui-el-mini-tag-layout-default {
|
|
4758
4954
|
--tw-bg-opacity: 1;
|
|
4759
|
-
background-color: rgb(
|
|
4955
|
+
background-color: rgb(243, 246, 249, var(--tw-bg-opacity, 1));
|
|
4760
4956
|
}
|
|
4761
|
-
.psui-el-mini-tag-layout-
|
|
4957
|
+
.psui-el-mini-tag-layout-default {
|
|
4958
|
+
--tw-text-opacity: 1;
|
|
4959
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
4960
|
+
}
|
|
4961
|
+
.psui-el-mini-tag-layout-dark-info {
|
|
4962
|
+
--tw-bg-opacity: 1;
|
|
4963
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
4964
|
+
}
|
|
4965
|
+
.psui-el-mini-tag-layout-dark-info {
|
|
4762
4966
|
--tw-text-opacity: 1;
|
|
4763
4967
|
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
4764
4968
|
}
|
|
4765
|
-
.psui-el-mini-tag-layout-
|
|
4969
|
+
.psui-el-mini-tag-layout-dark-success {
|
|
4766
4970
|
--tw-bg-opacity: 1;
|
|
4767
|
-
background-color: rgb(
|
|
4971
|
+
background-color: rgb(14, 124, 69, var(--tw-bg-opacity, 1));
|
|
4768
4972
|
}
|
|
4769
|
-
.psui-el-mini-tag-layout-
|
|
4973
|
+
.psui-el-mini-tag-layout-dark-success {
|
|
4770
4974
|
--tw-text-opacity: 1;
|
|
4771
|
-
color: rgb(
|
|
4975
|
+
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
4976
|
+
}
|
|
4977
|
+
.psui-el-mini-tag-layout-dark-warning {
|
|
4978
|
+
--tw-bg-opacity: 1;
|
|
4979
|
+
background-color: rgb(184, 86, 20, var(--tw-bg-opacity, 1));
|
|
4980
|
+
}
|
|
4981
|
+
.psui-el-mini-tag-layout-dark-warning {
|
|
4982
|
+
--tw-text-opacity: 1;
|
|
4983
|
+
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
4984
|
+
}
|
|
4985
|
+
.psui-el-mini-tag-layout-dark-error {
|
|
4986
|
+
--tw-bg-opacity: 1;
|
|
4987
|
+
background-color: rgb(162, 54, 52, var(--tw-bg-opacity, 1));
|
|
4988
|
+
}
|
|
4989
|
+
.psui-el-mini-tag-layout-dark-error {
|
|
4990
|
+
--tw-text-opacity: 1;
|
|
4991
|
+
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
4992
|
+
}
|
|
4993
|
+
.psui-el-mini-tag-layout-dark-default {
|
|
4994
|
+
--tw-bg-opacity: 1;
|
|
4995
|
+
background-color: rgb(214, 221, 229, var(--tw-bg-opacity, 1));
|
|
4996
|
+
}
|
|
4997
|
+
.psui-el-mini-tag-layout-dark-default {
|
|
4998
|
+
--tw-text-opacity: 1;
|
|
4999
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
4772
5000
|
}
|
|
4773
5001
|
|
|
4774
5002
|
.psui-el-inline-selector {
|
|
@@ -4778,9 +5006,9 @@ video {
|
|
|
4778
5006
|
max-width: 100%;
|
|
4779
5007
|
flex-shrink: 0;
|
|
4780
5008
|
font-size: 20px;
|
|
4781
|
-
line-height:
|
|
5009
|
+
line-height: 28px;
|
|
4782
5010
|
--tw-text-opacity: 1;
|
|
4783
|
-
color: rgb(
|
|
5011
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4784
5012
|
}
|
|
4785
5013
|
.psui-el-inline-selector ::-webkit-scrollbar {
|
|
4786
5014
|
--tw-bg-opacity: 1;
|
|
@@ -4805,7 +5033,7 @@ video {
|
|
|
4805
5033
|
}
|
|
4806
5034
|
.psui-el-inline-selector input {
|
|
4807
5035
|
--tw-border-opacity: 1;
|
|
4808
|
-
border-color: rgb(
|
|
5036
|
+
border-color: rgb(45, 165, 204, var(--tw-border-opacity, 1));
|
|
4809
5037
|
}
|
|
4810
5038
|
.psui-el-inline-selector input {
|
|
4811
5039
|
transition: 300ms ease-in all;
|
|
@@ -4813,11 +5041,11 @@ video {
|
|
|
4813
5041
|
}
|
|
4814
5042
|
.psui-el-inline-selector input::-moz-placeholder {
|
|
4815
5043
|
font-size: 20px;
|
|
4816
|
-
line-height:
|
|
5044
|
+
line-height: 28px;
|
|
4817
5045
|
}
|
|
4818
5046
|
.psui-el-inline-selector input::placeholder {
|
|
4819
5047
|
font-size: 20px;
|
|
4820
|
-
line-height:
|
|
5048
|
+
line-height: 28px;
|
|
4821
5049
|
}
|
|
4822
5050
|
.psui-el-inline-selector input::-moz-placeholder {
|
|
4823
5051
|
--tw-text-opacity: 1;
|
|
@@ -4864,7 +5092,7 @@ video {
|
|
|
4864
5092
|
}
|
|
4865
5093
|
.psui-el-inline-selector .psui-el-inline-selector-input-wrapper input:hover {
|
|
4866
5094
|
--tw-text-opacity: 1;
|
|
4867
|
-
color: rgb(
|
|
5095
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
4868
5096
|
}
|
|
4869
5097
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper {
|
|
4870
5098
|
position: absolute;
|
|
@@ -4915,7 +5143,7 @@ video {
|
|
|
4915
5143
|
}
|
|
4916
5144
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown .psui-el-inline-selector-error h3 {
|
|
4917
5145
|
--tw-text-opacity: 1;
|
|
4918
|
-
color: rgb(
|
|
5146
|
+
color: rgb(205, 155, 155, var(--tw-text-opacity, 1));
|
|
4919
5147
|
}
|
|
4920
5148
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown .psui-el-inline-selector-error p {
|
|
4921
5149
|
--tw-text-opacity: 1;
|
|
@@ -4943,7 +5171,7 @@ video {
|
|
|
4943
5171
|
}
|
|
4944
5172
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown ul li:hover span p {
|
|
4945
5173
|
--tw-text-opacity: 1;
|
|
4946
|
-
color: rgb(
|
|
5174
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
4947
5175
|
}
|
|
4948
5176
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown ul li span {
|
|
4949
5177
|
display: flex;
|
|
@@ -4962,7 +5190,7 @@ video {
|
|
|
4962
5190
|
}
|
|
4963
5191
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown ul li span > p {
|
|
4964
5192
|
font-size: 16px;
|
|
4965
|
-
line-height:
|
|
5193
|
+
line-height: 24px;
|
|
4966
5194
|
}
|
|
4967
5195
|
.psui-el-inline-selector .psui-el-inline-selector-dropdown-wrapper .psui-el-inline-selector-dropdown ul li span > p {
|
|
4968
5196
|
--tw-text-opacity: 1;
|
|
@@ -5169,7 +5397,7 @@ video {
|
|
|
5169
5397
|
}
|
|
5170
5398
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-white .psui-el-tooltip-content-wrapper button {
|
|
5171
5399
|
--tw-text-opacity: 1;
|
|
5172
|
-
color: rgb(
|
|
5400
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
5173
5401
|
}
|
|
5174
5402
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark {
|
|
5175
5403
|
--tw-bg-opacity: 1;
|
|
@@ -5182,7 +5410,7 @@ video {
|
|
|
5182
5410
|
}
|
|
5183
5411
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark .psui-el-tooltip-content-wrapper button {
|
|
5184
5412
|
--tw-bg-opacity: 1;
|
|
5185
|
-
background-color: rgb(
|
|
5413
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
5186
5414
|
}
|
|
5187
5415
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-dark .psui-el-tooltip-content-wrapper button {
|
|
5188
5416
|
--tw-text-opacity: 1;
|
|
@@ -5190,7 +5418,7 @@ video {
|
|
|
5190
5418
|
}
|
|
5191
5419
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color {
|
|
5192
5420
|
--tw-bg-opacity: 1;
|
|
5193
|
-
background-color: rgb(
|
|
5421
|
+
background-color: rgb(45, 165, 204, var(--tw-bg-opacity, 1));
|
|
5194
5422
|
}
|
|
5195
5423
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color h2,
|
|
5196
5424
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper {
|
|
@@ -5199,7 +5427,7 @@ video {
|
|
|
5199
5427
|
}
|
|
5200
5428
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper button {
|
|
5201
5429
|
--tw-bg-opacity: 1;
|
|
5202
|
-
background-color: rgb(
|
|
5430
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
5203
5431
|
}
|
|
5204
5432
|
.psui-el-tooltip .psui-el-tooltip-wrapper .psui-el-tooltip-dialog .psui-el-tooltip-content.layout-color .psui-el-tooltip-content-wrapper button {
|
|
5205
5433
|
--tw-text-opacity: 1;
|
|
@@ -5268,7 +5496,7 @@ video {
|
|
|
5268
5496
|
}
|
|
5269
5497
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper label {
|
|
5270
5498
|
font-size: 16px;
|
|
5271
|
-
line-height:
|
|
5499
|
+
line-height: 24px;
|
|
5272
5500
|
}
|
|
5273
5501
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper label {
|
|
5274
5502
|
font-weight: 700;
|
|
@@ -5310,7 +5538,7 @@ video {
|
|
|
5310
5538
|
}
|
|
5311
5539
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea {
|
|
5312
5540
|
font-size: 16px;
|
|
5313
|
-
line-height:
|
|
5541
|
+
line-height: 24px;
|
|
5314
5542
|
}
|
|
5315
5543
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea {
|
|
5316
5544
|
--tw-text-opacity: 1;
|
|
@@ -5318,15 +5546,15 @@ video {
|
|
|
5318
5546
|
}
|
|
5319
5547
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea:hover, .psui-el-input-textarea .psui-el-input-textarea-wrapper textarea:focus, .psui-el-input-textarea .psui-el-input-textarea-wrapper textarea:active {
|
|
5320
5548
|
--tw-border-opacity: 1;
|
|
5321
|
-
border-color: rgb(
|
|
5549
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
5322
5550
|
}
|
|
5323
5551
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea ::-moz-placeholder {
|
|
5324
5552
|
font-size: 16px;
|
|
5325
|
-
line-height:
|
|
5553
|
+
line-height: 24px;
|
|
5326
5554
|
}
|
|
5327
5555
|
.psui-el-input-textarea .psui-el-input-textarea-wrapper textarea ::placeholder {
|
|
5328
5556
|
font-size: 16px;
|
|
5329
|
-
line-height:
|
|
5557
|
+
line-height: 24px;
|
|
5330
5558
|
}
|
|
5331
5559
|
.psui-el-input-textarea .psui-el-input-textarea-message {
|
|
5332
5560
|
display: flex;
|
|
@@ -5382,7 +5610,7 @@ video {
|
|
|
5382
5610
|
}
|
|
5383
5611
|
.psui-el-input-select.layout-default.selected select {
|
|
5384
5612
|
--tw-border-opacity: 1;
|
|
5385
|
-
border-color: rgb(
|
|
5613
|
+
border-color: rgb(45, 165, 204, var(--tw-border-opacity, 1));
|
|
5386
5614
|
}
|
|
5387
5615
|
.psui-el-input-select.layout-default.selected select {
|
|
5388
5616
|
--tw-text-opacity: 1;
|
|
@@ -5432,7 +5660,7 @@ video {
|
|
|
5432
5660
|
}
|
|
5433
5661
|
.psui-el-input-select.layout-default select {
|
|
5434
5662
|
font-size: 16px;
|
|
5435
|
-
line-height:
|
|
5663
|
+
line-height: 24px;
|
|
5436
5664
|
}
|
|
5437
5665
|
.psui-el-input-select.layout-default select {
|
|
5438
5666
|
--tw-text-opacity: 1;
|
|
@@ -5444,7 +5672,7 @@ video {
|
|
|
5444
5672
|
}
|
|
5445
5673
|
.psui-el-input-select.layout-default select:hover, .psui-el-input-select.layout-default select:active {
|
|
5446
5674
|
--tw-border-opacity: 1;
|
|
5447
|
-
border-color: rgb(
|
|
5675
|
+
border-color: rgb(45, 165, 204, var(--tw-border-opacity, 1));
|
|
5448
5676
|
}
|
|
5449
5677
|
.psui-el-input-select.layout-default select:hover, .psui-el-input-select.layout-default select:active {
|
|
5450
5678
|
--tw-text-opacity: 1;
|
|
@@ -5452,7 +5680,7 @@ video {
|
|
|
5452
5680
|
}
|
|
5453
5681
|
.psui-el-input-select.layout-default select:focus {
|
|
5454
5682
|
--tw-border-opacity: 1;
|
|
5455
|
-
border-color: rgb(
|
|
5683
|
+
border-color: rgb(18, 121, 153, var(--tw-border-opacity, 1));
|
|
5456
5684
|
}
|
|
5457
5685
|
.psui-el-input-select.layout-default select:focus {
|
|
5458
5686
|
--tw-text-opacity: 1;
|
|
@@ -5533,7 +5761,7 @@ video {
|
|
|
5533
5761
|
}
|
|
5534
5762
|
.psui-el-input-select.layout-mini select {
|
|
5535
5763
|
font-size: 14px;
|
|
5536
|
-
line-height:
|
|
5764
|
+
line-height: 20px;
|
|
5537
5765
|
}
|
|
5538
5766
|
.psui-el-input-select.layout-mini select {
|
|
5539
5767
|
border-radius: 4px;
|
|
@@ -5541,7 +5769,7 @@ video {
|
|
|
5541
5769
|
}
|
|
5542
5770
|
.psui-el-input-select.layout-mini select:hover, .psui-el-input-select.layout-mini select:active {
|
|
5543
5771
|
--tw-border-opacity: 1;
|
|
5544
|
-
border-color: rgb(
|
|
5772
|
+
border-color: rgb(155, 222, 181, var(--tw-border-opacity, 1));
|
|
5545
5773
|
}
|
|
5546
5774
|
.psui-el-input-select.layout-mini select:hover, .psui-el-input-select.layout-mini select:active {
|
|
5547
5775
|
--tw-text-opacity: 1;
|
|
@@ -5557,7 +5785,7 @@ video {
|
|
|
5557
5785
|
}
|
|
5558
5786
|
.psui-el-input-select.layout-mini.selected .psui-el-input-select-wrapper select {
|
|
5559
5787
|
--tw-border-opacity: 1 !important;
|
|
5560
|
-
border-color: rgb(
|
|
5788
|
+
border-color: rgb(155, 222, 181, var(--tw-border-opacity, 1)) !important;
|
|
5561
5789
|
}
|
|
5562
5790
|
.psui-el-input-select.layout-mini.selected:not(option) {
|
|
5563
5791
|
--tw-text-opacity: 1;
|
|
@@ -5698,7 +5926,7 @@ video {
|
|
|
5698
5926
|
}
|
|
5699
5927
|
.psui-el-draggable .psui-el-draggable-item-title {
|
|
5700
5928
|
font-size: 14px;
|
|
5701
|
-
line-height:
|
|
5929
|
+
line-height: 20px;
|
|
5702
5930
|
}
|
|
5703
5931
|
.psui-el-draggable .psui-el-draggable-item-title {
|
|
5704
5932
|
--tw-text-opacity: 1;
|
|
@@ -5787,7 +6015,7 @@ video {
|
|
|
5787
6015
|
}
|
|
5788
6016
|
.psui-el-badge-with-icon.layout-blue {
|
|
5789
6017
|
--tw-text-opacity: 1;
|
|
5790
|
-
color: rgb(
|
|
6018
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
5791
6019
|
}
|
|
5792
6020
|
.psui-el-badge-with-icon.layout-green {
|
|
5793
6021
|
--tw-bg-opacity: 1;
|
|
@@ -5858,7 +6086,7 @@ video {
|
|
|
5858
6086
|
}
|
|
5859
6087
|
.psui-el-testimonial-icon {
|
|
5860
6088
|
--tw-bg-opacity: 1;
|
|
5861
|
-
background-color: rgb(
|
|
6089
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
5862
6090
|
}
|
|
5863
6091
|
.psui-el-testimonial-icon {
|
|
5864
6092
|
top: -15px;
|
|
@@ -5866,11 +6094,14 @@ video {
|
|
|
5866
6094
|
}
|
|
5867
6095
|
.psui-el-testimonial-description {
|
|
5868
6096
|
font-size: 16px;
|
|
5869
|
-
line-height:
|
|
6097
|
+
line-height: 24px;
|
|
5870
6098
|
}
|
|
5871
6099
|
.psui-el-testimonial-description {
|
|
5872
6100
|
font-style: italic;
|
|
5873
6101
|
}
|
|
6102
|
+
.psui-el-testimonial-description {
|
|
6103
|
+
line-height: 1.5rem;
|
|
6104
|
+
}
|
|
5874
6105
|
.psui-el-testimonial-description {
|
|
5875
6106
|
--tw-text-opacity: 1;
|
|
5876
6107
|
color: rgb(0, 42, 58, var(--tw-text-opacity, 1));
|
|
@@ -5892,7 +6123,7 @@ video {
|
|
|
5892
6123
|
}
|
|
5893
6124
|
.psui-el-testimonial-info-user {
|
|
5894
6125
|
font-size: 14px;
|
|
5895
|
-
line-height:
|
|
6126
|
+
line-height: 20px;
|
|
5896
6127
|
}
|
|
5897
6128
|
.psui-el-testimonial-info-user {
|
|
5898
6129
|
font-weight: 700;
|
|
@@ -5903,11 +6134,14 @@ video {
|
|
|
5903
6134
|
}
|
|
5904
6135
|
.psui-el-testimonial-info-position, .psui-el-testimonial-info-jurisdiction {
|
|
5905
6136
|
font-size: 14px;
|
|
6137
|
+
line-height: 20px;
|
|
6138
|
+
}
|
|
6139
|
+
.psui-el-testimonial-info-position, .psui-el-testimonial-info-jurisdiction {
|
|
5906
6140
|
line-height: 130%;
|
|
5907
6141
|
}
|
|
5908
6142
|
.psui-el-testimonial-info-position, .psui-el-testimonial-info-jurisdiction {
|
|
5909
6143
|
--tw-text-opacity: 1;
|
|
5910
|
-
color: rgb(
|
|
6144
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
5911
6145
|
}
|
|
5912
6146
|
|
|
5913
6147
|
.psui-el-date-card {
|
|
@@ -5915,31 +6149,40 @@ video {
|
|
|
5915
6149
|
flex-direction: column;
|
|
5916
6150
|
overflow: hidden;
|
|
5917
6151
|
border-radius: 0.25rem;
|
|
5918
|
-
--tw-bg-opacity: 1;
|
|
5919
|
-
background-color: rgb(49, 143, 172, var(--tw-bg-opacity, 1));
|
|
5920
6152
|
text-align: center;
|
|
5921
6153
|
font-size: 14px;
|
|
5922
|
-
line-height:
|
|
6154
|
+
line-height: 20px;
|
|
5923
6155
|
font-weight: 700;
|
|
6156
|
+
line-height: 1.25rem;
|
|
5924
6157
|
--tw-text-opacity: 1;
|
|
5925
|
-
color: rgb(
|
|
6158
|
+
color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
|
|
5926
6159
|
}
|
|
5927
6160
|
.psui-el-date-card-month-day, .psui-el-date-card-year {
|
|
5928
|
-
|
|
5929
|
-
|
|
6161
|
+
padding-left: 0.5rem;
|
|
6162
|
+
padding-right: 0.5rem;
|
|
5930
6163
|
}
|
|
5931
6164
|
.psui-el-date-card-month-day, .psui-el-date-card-year {
|
|
5932
|
-
padding:
|
|
5933
|
-
|
|
5934
|
-
.psui-el-date-card-year {
|
|
5935
|
-
width: 100%;
|
|
6165
|
+
padding-top: 2px;
|
|
6166
|
+
padding-bottom: 2px;
|
|
5936
6167
|
}
|
|
5937
6168
|
.psui-el-date-card-year {
|
|
5938
6169
|
--tw-bg-opacity: 1;
|
|
5939
|
-
background-color: rgb(
|
|
6170
|
+
background-color: rgb(10, 100, 128, var(--tw-bg-opacity, 1));
|
|
5940
6171
|
}
|
|
5941
|
-
.psui-el-date-card-
|
|
5942
|
-
|
|
6172
|
+
.psui-el-date-card-month-day {
|
|
6173
|
+
display: flex;
|
|
6174
|
+
}
|
|
6175
|
+
.psui-el-date-card-month-day {
|
|
6176
|
+
align-items: center;
|
|
6177
|
+
}
|
|
6178
|
+
.psui-el-date-card-month-day > :not([hidden]) ~ :not([hidden]) {
|
|
6179
|
+
--tw-space-x-reverse: 0;
|
|
6180
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
6181
|
+
margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
|
|
6182
|
+
}
|
|
6183
|
+
.psui-el-date-card-month-day {
|
|
6184
|
+
--tw-bg-opacity: 1;
|
|
6185
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
5943
6186
|
}
|
|
5944
6187
|
|
|
5945
6188
|
.psui-el-tag-scope {
|
|
@@ -6164,7 +6407,7 @@ video {
|
|
|
6164
6407
|
}
|
|
6165
6408
|
.psui-el-collapse .psui-el-collapse-item-header .psui-el-collapse-item-header-wrapper {
|
|
6166
6409
|
font-size: 14px;
|
|
6167
|
-
line-height:
|
|
6410
|
+
line-height: 20px;
|
|
6168
6411
|
}
|
|
6169
6412
|
.psui-el-collapse .psui-el-collapse-item-header .psui-el-collapse-item-header-wrapper .psui-el-collapse-item-title {
|
|
6170
6413
|
margin-left: 0.25rem;
|
|
@@ -6175,7 +6418,7 @@ video {
|
|
|
6175
6418
|
}
|
|
6176
6419
|
.psui-el-collapse .psui-el-collapse-item-header .psui-el-collapse-item-header-wrapper .psui-el-collapse-item-title:hover {
|
|
6177
6420
|
--tw-text-opacity: 1;
|
|
6178
|
-
color: rgb(
|
|
6421
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
6179
6422
|
}
|
|
6180
6423
|
.psui-el-collapse .psui-el-collapse-item-header .psui-el-collapse-item-header-wrapper .psui-el-collapse-item-title.disabled {
|
|
6181
6424
|
--tw-text-opacity: 1;
|
|
@@ -6193,7 +6436,7 @@ video {
|
|
|
6193
6436
|
}
|
|
6194
6437
|
.psui-el-collapse .psui-el-collapse-item-header .psui-el-collapse-item-header-wrapper .psui-el-collapse-item-header-action:hover {
|
|
6195
6438
|
--tw-text-opacity: 1;
|
|
6196
|
-
color: rgb(
|
|
6439
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
6197
6440
|
}
|
|
6198
6441
|
.psui-el-collapse .psui-el-collapse-item-header:hover .psui-el-collapse-item-header-wrapper .psui-el-collapse-item-header-action {
|
|
6199
6442
|
visibility: visible;
|
|
@@ -6243,10 +6486,6 @@ video {
|
|
|
6243
6486
|
margin-bottom: 0.75rem;
|
|
6244
6487
|
}
|
|
6245
6488
|
|
|
6246
|
-
.psui--mr-1 {
|
|
6247
|
-
margin-right: -0.25rem;
|
|
6248
|
-
}
|
|
6249
|
-
|
|
6250
6489
|
.psui-mb-px {
|
|
6251
6490
|
margin-bottom: 1px;
|
|
6252
6491
|
}
|
|
@@ -6263,10 +6502,6 @@ video {
|
|
|
6263
6502
|
margin-left: 0.5rem;
|
|
6264
6503
|
}
|
|
6265
6504
|
|
|
6266
|
-
.psui-ml-3 {
|
|
6267
|
-
margin-left: 0.75rem;
|
|
6268
|
-
}
|
|
6269
|
-
|
|
6270
6505
|
.psui-mr-1 {
|
|
6271
6506
|
margin-right: 0.25rem;
|
|
6272
6507
|
}
|
|
@@ -6275,10 +6510,6 @@ video {
|
|
|
6275
6510
|
margin-right: 0.5rem;
|
|
6276
6511
|
}
|
|
6277
6512
|
|
|
6278
|
-
.psui-mr-3 {
|
|
6279
|
-
margin-right: 0.75rem;
|
|
6280
|
-
}
|
|
6281
|
-
|
|
6282
6513
|
.psui-flex {
|
|
6283
6514
|
display: flex;
|
|
6284
6515
|
}
|
|
@@ -6299,10 +6530,22 @@ video {
|
|
|
6299
6530
|
height: 0.5rem;
|
|
6300
6531
|
}
|
|
6301
6532
|
|
|
6533
|
+
.psui-h-3\.5 {
|
|
6534
|
+
height: 0.875rem;
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
.psui-h-4 {
|
|
6538
|
+
height: 1rem;
|
|
6539
|
+
}
|
|
6540
|
+
|
|
6302
6541
|
.psui-h-5 {
|
|
6303
6542
|
height: 1.25rem;
|
|
6304
6543
|
}
|
|
6305
6544
|
|
|
6545
|
+
.psui-h-\[18px\] {
|
|
6546
|
+
height: 18px;
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6306
6549
|
.psui-h-full {
|
|
6307
6550
|
height: 100%;
|
|
6308
6551
|
}
|
|
@@ -6311,6 +6554,14 @@ video {
|
|
|
6311
6554
|
width: 0.5rem;
|
|
6312
6555
|
}
|
|
6313
6556
|
|
|
6557
|
+
.psui-w-3\.5 {
|
|
6558
|
+
width: 0.875rem;
|
|
6559
|
+
}
|
|
6560
|
+
|
|
6561
|
+
.psui-w-4 {
|
|
6562
|
+
width: 1rem;
|
|
6563
|
+
}
|
|
6564
|
+
|
|
6314
6565
|
.psui-w-48 {
|
|
6315
6566
|
width: 12rem;
|
|
6316
6567
|
}
|
|
@@ -6319,6 +6570,10 @@ video {
|
|
|
6319
6570
|
width: 1.25rem;
|
|
6320
6571
|
}
|
|
6321
6572
|
|
|
6573
|
+
.psui-w-\[18px\] {
|
|
6574
|
+
width: 18px;
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6322
6577
|
.psui-w-auto {
|
|
6323
6578
|
width: auto;
|
|
6324
6579
|
}
|
|
@@ -6447,7 +6702,7 @@ video {
|
|
|
6447
6702
|
|
|
6448
6703
|
.psui-bg-blue-60 {
|
|
6449
6704
|
--tw-bg-opacity: 1;
|
|
6450
|
-
background-color: rgb(
|
|
6705
|
+
background-color: rgb(18, 121, 153, var(--tw-bg-opacity, 1));
|
|
6451
6706
|
}
|
|
6452
6707
|
|
|
6453
6708
|
.psui-bg-gray-10 {
|
|
@@ -6462,7 +6717,7 @@ video {
|
|
|
6462
6717
|
|
|
6463
6718
|
.psui-bg-green-20 {
|
|
6464
6719
|
--tw-bg-opacity: 1;
|
|
6465
|
-
background-color: rgb(
|
|
6720
|
+
background-color: rgb(155, 222, 181, var(--tw-bg-opacity, 1));
|
|
6466
6721
|
}
|
|
6467
6722
|
|
|
6468
6723
|
.psui-bg-red-10 {
|
|
@@ -6472,7 +6727,7 @@ video {
|
|
|
6472
6727
|
|
|
6473
6728
|
.psui-bg-red-20 {
|
|
6474
6729
|
--tw-bg-opacity: 1;
|
|
6475
|
-
background-color: rgb(
|
|
6730
|
+
background-color: rgb(205, 155, 155, var(--tw-bg-opacity, 1));
|
|
6476
6731
|
}
|
|
6477
6732
|
|
|
6478
6733
|
.psui-bg-white {
|
|
@@ -6482,7 +6737,7 @@ video {
|
|
|
6482
6737
|
|
|
6483
6738
|
.psui-bg-yellow-20 {
|
|
6484
6739
|
--tw-bg-opacity: 1;
|
|
6485
|
-
background-color: rgb(
|
|
6740
|
+
background-color: rgb(215, 165, 86, var(--tw-bg-opacity, 1));
|
|
6486
6741
|
}
|
|
6487
6742
|
|
|
6488
6743
|
.psui-px-4 {
|
|
@@ -6532,9 +6787,9 @@ video {
|
|
|
6532
6787
|
text-align: right;
|
|
6533
6788
|
}
|
|
6534
6789
|
|
|
6535
|
-
.psui-text-
|
|
6790
|
+
.psui-text-14 {
|
|
6536
6791
|
font-size: 14px;
|
|
6537
|
-
line-height:
|
|
6792
|
+
line-height: 20px;
|
|
6538
6793
|
}
|
|
6539
6794
|
|
|
6540
6795
|
.psui-text-xsmall {
|
|
@@ -6554,14 +6809,19 @@ video {
|
|
|
6554
6809
|
line-height: 1;
|
|
6555
6810
|
}
|
|
6556
6811
|
|
|
6812
|
+
.psui-text-blue-40 {
|
|
6813
|
+
--tw-text-opacity: 1;
|
|
6814
|
+
color: rgb(134, 192, 219, var(--tw-text-opacity, 1));
|
|
6815
|
+
}
|
|
6816
|
+
|
|
6557
6817
|
.psui-text-blue-50 {
|
|
6558
6818
|
--tw-text-opacity: 1;
|
|
6559
|
-
color: rgb(
|
|
6819
|
+
color: rgb(45, 165, 204, var(--tw-text-opacity, 1));
|
|
6560
6820
|
}
|
|
6561
6821
|
|
|
6562
6822
|
.psui-text-blue-60 {
|
|
6563
6823
|
--tw-text-opacity: 1;
|
|
6564
|
-
color: rgb(
|
|
6824
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
6565
6825
|
}
|
|
6566
6826
|
|
|
6567
6827
|
.psui-text-gray-30 {
|
|
@@ -6596,7 +6856,7 @@ video {
|
|
|
6596
6856
|
|
|
6597
6857
|
.psui-text-red-20 {
|
|
6598
6858
|
--tw-text-opacity: 1;
|
|
6599
|
-
color: rgb(
|
|
6859
|
+
color: rgb(205, 155, 155, var(--tw-text-opacity, 1));
|
|
6600
6860
|
}
|
|
6601
6861
|
|
|
6602
6862
|
.psui-text-red-70 {
|
|
@@ -6675,5 +6935,5 @@ html {
|
|
|
6675
6935
|
|
|
6676
6936
|
.hover\:psui-text-blue-60:hover {
|
|
6677
6937
|
--tw-text-opacity: 1;
|
|
6678
|
-
color: rgb(
|
|
6938
|
+
color: rgb(18, 121, 153, var(--tw-text-opacity, 1));
|
|
6679
6939
|
}
|