3h1-ui 3.0.0-next.29 → 3.0.0-next.30
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 +96 -230
- package/es/style.css +46 -12
- package/lib/index.js +87 -221
- package/lib/style.css +46 -12
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -855,7 +855,6 @@ input:focus.ant-input {
|
|
|
855
855
|
box-shadow: none;
|
|
856
856
|
background-color: #fff;
|
|
857
857
|
outline: 1px solid var(--primary-5);
|
|
858
|
-
transition: background-color outline-width ease-in-out 0.3s;
|
|
859
858
|
}
|
|
860
859
|
:is(
|
|
861
860
|
.ant-input-affix-wrapper-focused, .ant-picker-focused, .ant-input-number-focused
|
|
@@ -882,7 +881,6 @@ input:focus.ant-input {
|
|
|
882
881
|
box-shadow: none;
|
|
883
882
|
outline: 1px solid var(--primary-5);
|
|
884
883
|
background-color: #fff;
|
|
885
|
-
transition: background-color outline-width ease-in-out 0.3s;
|
|
886
884
|
}
|
|
887
885
|
:is(.ant-table-body, .ant-table-content)::-webkit-scrollbar {
|
|
888
886
|
position: absolute;
|
|
@@ -1258,6 +1256,28 @@ span.iconify {
|
|
|
1258
1256
|
}
|
|
1259
1257
|
.shy-basic-modal :is(.ant-modal-body) {
|
|
1260
1258
|
padding: unset !important;
|
|
1259
|
+
margin: 16px;
|
|
1260
|
+
overflow: auto;
|
|
1261
|
+
}
|
|
1262
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar {
|
|
1263
|
+
position: absolute;
|
|
1264
|
+
height: 10px;
|
|
1265
|
+
width: 10px;
|
|
1266
|
+
}
|
|
1267
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb {
|
|
1268
|
+
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
1269
|
+
border: solid 2px transparent;
|
|
1270
|
+
background-color: transparent;
|
|
1271
|
+
border-radius: 10px;
|
|
1272
|
+
}
|
|
1273
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:hover {
|
|
1274
|
+
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
1275
|
+
background-color: transparent;
|
|
1276
|
+
}
|
|
1277
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-track {
|
|
1278
|
+
border-radius: 10px;
|
|
1279
|
+
border: solid 2px transparent;
|
|
1280
|
+
background: transparent;
|
|
1261
1281
|
}
|
|
1262
1282
|
.shy-basic-modal :is(.ant-modal-footer) {
|
|
1263
1283
|
height: 56px;
|
|
@@ -1292,15 +1312,6 @@ span.iconify {
|
|
|
1292
1312
|
display: flex;
|
|
1293
1313
|
flex-direction: column;
|
|
1294
1314
|
height: 100%;
|
|
1295
|
-
}.scroll-container {
|
|
1296
|
-
width: 100%;
|
|
1297
|
-
height: 100%;
|
|
1298
|
-
}
|
|
1299
|
-
.scroll-container .scrollbar__wrap {
|
|
1300
|
-
overflow-x: hidden;
|
|
1301
|
-
}
|
|
1302
|
-
.scroll-container .scrollbar__view {
|
|
1303
|
-
box-sizing: border-box;
|
|
1304
1315
|
}:root {
|
|
1305
1316
|
--primary-1: #dafbe1;
|
|
1306
1317
|
--primary-2: #aceebb;
|
|
@@ -1691,6 +1702,28 @@ span.iconify {
|
|
|
1691
1702
|
}
|
|
1692
1703
|
.shy-basic-modal :is(.ant-modal-body) {
|
|
1693
1704
|
padding: unset !important;
|
|
1705
|
+
margin: 16px;
|
|
1706
|
+
overflow: auto;
|
|
1707
|
+
}
|
|
1708
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar {
|
|
1709
|
+
position: absolute;
|
|
1710
|
+
height: 10px;
|
|
1711
|
+
width: 10px;
|
|
1712
|
+
}
|
|
1713
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb {
|
|
1714
|
+
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
1715
|
+
border: solid 2px transparent;
|
|
1716
|
+
background-color: transparent;
|
|
1717
|
+
border-radius: 10px;
|
|
1718
|
+
}
|
|
1719
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:hover {
|
|
1720
|
+
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
1721
|
+
background-color: transparent;
|
|
1722
|
+
}
|
|
1723
|
+
.shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-track {
|
|
1724
|
+
border-radius: 10px;
|
|
1725
|
+
border: solid 2px transparent;
|
|
1726
|
+
background: transparent;
|
|
1694
1727
|
}
|
|
1695
1728
|
.shy-basic-modal :is(.ant-modal-footer) {
|
|
1696
1729
|
height: 56px;
|
|
@@ -8568,6 +8601,7 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8568
8601
|
.shy-ant-table {
|
|
8569
8602
|
width: 100%;
|
|
8570
8603
|
height: 100%;
|
|
8604
|
+
padding: 1px;
|
|
8571
8605
|
}
|
|
8572
8606
|
.shy-ant-table .ant-checkbox-inner {
|
|
8573
8607
|
width: 12px;
|
|
@@ -8585,7 +8619,7 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8585
8619
|
}
|
|
8586
8620
|
.shy-ant-table :is(.ant-table-wrapper) {
|
|
8587
8621
|
padding: 0;
|
|
8588
|
-
background-color: var(gray-
|
|
8622
|
+
background-color: var(gray-1);
|
|
8589
8623
|
border-radius: 12px;
|
|
8590
8624
|
}
|
|
8591
8625
|
.shy-ant-table :is(.ant-table-wrapper) .ant-table {
|