3h1-ui 3.0.0-next.32 → 3.0.0-next.34
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/es/index.js +224 -95
- package/es/style.css +29 -12
- package/lib/index.js +215 -86
- package/lib/style.css +29 -12
- package/package.json +1 -1
package/es/style.css
CHANGED
|
@@ -1256,25 +1256,24 @@ span.iconify {
|
|
|
1256
1256
|
}
|
|
1257
1257
|
.shy-basic-modal :is(.ant-modal-body) {
|
|
1258
1258
|
padding: unset !important;
|
|
1259
|
-
|
|
1260
|
-
overflow: auto;
|
|
1259
|
+
overflow: hidden;
|
|
1261
1260
|
}
|
|
1262
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1261
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar {
|
|
1263
1262
|
position: absolute;
|
|
1264
1263
|
height: 10px;
|
|
1265
1264
|
width: 10px;
|
|
1266
1265
|
}
|
|
1267
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1266
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb {
|
|
1268
1267
|
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
1269
1268
|
border: solid 2px transparent;
|
|
1270
1269
|
background-color: transparent;
|
|
1271
1270
|
border-radius: 10px;
|
|
1272
1271
|
}
|
|
1273
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1272
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:hover {
|
|
1274
1273
|
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
1275
1274
|
background-color: transparent;
|
|
1276
1275
|
}
|
|
1277
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1276
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-track {
|
|
1278
1277
|
border-radius: 10px;
|
|
1279
1278
|
border: solid 2px transparent;
|
|
1280
1279
|
background: transparent;
|
|
@@ -1308,10 +1307,24 @@ span.iconify {
|
|
|
1308
1307
|
.shy-basic-modal.fullscreen-modal .ant-modal-body {
|
|
1309
1308
|
flex: 1;
|
|
1310
1309
|
}
|
|
1310
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-body > div {
|
|
1311
|
+
min-height: 100% !important;
|
|
1312
|
+
max-height: 100% !important;
|
|
1313
|
+
height: 100% !important;
|
|
1314
|
+
}
|
|
1311
1315
|
.shy-basic-modal.fullscreen-modal .ant-modal-content {
|
|
1312
1316
|
display: flex;
|
|
1313
1317
|
flex-direction: column;
|
|
1314
1318
|
height: 100%;
|
|
1319
|
+
}.scroll-container {
|
|
1320
|
+
width: 100%;
|
|
1321
|
+
height: 100%;
|
|
1322
|
+
}
|
|
1323
|
+
.scroll-container .scrollbar__wrap {
|
|
1324
|
+
overflow-x: hidden;
|
|
1325
|
+
}
|
|
1326
|
+
.scroll-container .scrollbar__view {
|
|
1327
|
+
box-sizing: border-box;
|
|
1315
1328
|
}:root {
|
|
1316
1329
|
--primary-1: #dafbe1;
|
|
1317
1330
|
--primary-2: #aceebb;
|
|
@@ -1702,25 +1715,24 @@ span.iconify {
|
|
|
1702
1715
|
}
|
|
1703
1716
|
.shy-basic-modal :is(.ant-modal-body) {
|
|
1704
1717
|
padding: unset !important;
|
|
1705
|
-
|
|
1706
|
-
overflow: auto;
|
|
1718
|
+
overflow: hidden;
|
|
1707
1719
|
}
|
|
1708
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1720
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar {
|
|
1709
1721
|
position: absolute;
|
|
1710
1722
|
height: 10px;
|
|
1711
1723
|
width: 10px;
|
|
1712
1724
|
}
|
|
1713
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1725
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb {
|
|
1714
1726
|
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
1715
1727
|
border: solid 2px transparent;
|
|
1716
1728
|
background-color: transparent;
|
|
1717
1729
|
border-radius: 10px;
|
|
1718
1730
|
}
|
|
1719
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1731
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:hover {
|
|
1720
1732
|
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
1721
1733
|
background-color: transparent;
|
|
1722
1734
|
}
|
|
1723
|
-
.shy-basic-modal :is(.ant-modal-body)
|
|
1735
|
+
.shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-track {
|
|
1724
1736
|
border-radius: 10px;
|
|
1725
1737
|
border: solid 2px transparent;
|
|
1726
1738
|
background: transparent;
|
|
@@ -1754,6 +1766,11 @@ span.iconify {
|
|
|
1754
1766
|
.shy-basic-modal.fullscreen-modal .ant-modal-body {
|
|
1755
1767
|
flex: 1;
|
|
1756
1768
|
}
|
|
1769
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-body > div {
|
|
1770
|
+
min-height: 100% !important;
|
|
1771
|
+
max-height: 100% !important;
|
|
1772
|
+
height: 100% !important;
|
|
1773
|
+
}
|
|
1757
1774
|
.shy-basic-modal.fullscreen-modal .ant-modal-content {
|
|
1758
1775
|
display: flex;
|
|
1759
1776
|
flex-direction: column;
|