3h1-ui 3.0.0-next.33 → 3.0.0-next.35

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/style.css CHANGED
@@ -309,15 +309,42 @@ ul {
309
309
  --tw-border-opacity: 1;
310
310
  border-color: rgba(24, 144, 255, var(--tw-border-opacity));
311
311
  }
312
+ .border-color-\[\#f0f0f0\] {
313
+ --tw-border-opacity: 1;
314
+ border-color: rgba(240, 240, 240, var(--tw-border-opacity));
315
+ }
316
+ .border-color-\[\#2DA44E\] {
317
+ --tw-border-opacity: 1;
318
+ border-color: rgba(45, 164, 78, var(--tw-border-opacity));
319
+ }
320
+ .rounded-b-4px {
321
+ border-bottom-right-radius: 4px;
322
+ border-bottom-left-radius: 4px;
323
+ }
312
324
  .border-solid {
313
325
  border-style: solid;
314
326
  }
327
+ .border-dashed {
328
+ border-style: dashed;
329
+ }
315
330
  .border {
316
331
  border-width: 1px;
317
332
  }
333
+ .border-1px {
334
+ border-width: 1px;
335
+ }
318
336
  .border-t-0 {
319
337
  border-top-width: 0px;
320
338
  }
339
+ .border-left-1px {
340
+ border-left-width: 1px;
341
+ }
342
+ .border-right-1px {
343
+ border-right-width: 1px;
344
+ }
345
+ .border-bottom-1px {
346
+ border-bottom-width: 1px;
347
+ }
321
348
  .cursor-not-allowed {
322
349
  cursor: not-allowed;
323
350
  }
@@ -377,9 +404,18 @@ ul {
377
404
  .\!h-full {
378
405
  height: 100% !important;
379
406
  }
407
+ .h-50px {
408
+ height: 50px;
409
+ }
410
+ .h-32px {
411
+ height: 32px;
412
+ }
380
413
  .\.w-100 {
381
414
  height: 25rem;
382
415
  }
416
+ .leading-32px {
417
+ line-height: 32px;
418
+ }
383
419
  .mx-1 {
384
420
  margin-left: 0.25rem;
385
421
  margin-right: 0.25rem;
@@ -448,6 +484,12 @@ ul {
448
484
  padding-top: 0.5rem;
449
485
  padding-bottom: 0.5rem;
450
486
  }
487
+ .pl-8px {
488
+ padding-left: 8px;
489
+ }
490
+ .pr-8px {
491
+ padding-right: 8px;
492
+ }
451
493
  .pl-2 {
452
494
  padding-left: 0.5rem;
453
495
  }
@@ -463,10 +505,17 @@ ul {
463
505
  .resize {
464
506
  resize: both;
465
507
  }
508
+ .text-center {
509
+ text-align: center;
510
+ }
466
511
  .text-red-500 {
467
512
  --tw-text-opacity: 1;
468
513
  color: rgba(239, 68, 68, var(--tw-text-opacity));
469
514
  }
515
+ .text-\[\#2DA44E\] {
516
+ --tw-text-opacity: 1;
517
+ color: rgba(45, 164, 78, var(--tw-text-opacity));
518
+ }
470
519
  .truncate {
471
520
  overflow: hidden;
472
521
  -o-text-overflow: ellipsis;
@@ -1256,25 +1305,24 @@ span.iconify {
1256
1305
  }
1257
1306
  .shy-basic-modal :is(.ant-modal-body) {
1258
1307
  padding: unset !important;
1259
- margin: 16px;
1260
- overflow: auto;
1308
+ overflow: hidden;
1261
1309
  }
1262
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar {
1310
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar {
1263
1311
  position: absolute;
1264
1312
  height: 10px;
1265
1313
  width: 10px;
1266
1314
  }
1267
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb {
1315
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb {
1268
1316
  box-shadow: inset 0 0 10px 10px var(--gray-2);
1269
1317
  border: solid 2px transparent;
1270
1318
  background-color: transparent;
1271
1319
  border-radius: 10px;
1272
1320
  }
1273
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:hover {
1321
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:hover {
1274
1322
  box-shadow: inset 0 0 10px 10px var(--gray-3);
1275
1323
  background-color: transparent;
1276
1324
  }
1277
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-track {
1325
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-track {
1278
1326
  border-radius: 10px;
1279
1327
  border: solid 2px transparent;
1280
1328
  background: transparent;
@@ -1308,10 +1356,24 @@ span.iconify {
1308
1356
  .shy-basic-modal.fullscreen-modal .ant-modal-body {
1309
1357
  flex: 1;
1310
1358
  }
1359
+ .shy-basic-modal.fullscreen-modal .ant-modal-body > div {
1360
+ min-height: 100% !important;
1361
+ max-height: 100% !important;
1362
+ height: 100% !important;
1363
+ }
1311
1364
  .shy-basic-modal.fullscreen-modal .ant-modal-content {
1312
1365
  display: flex;
1313
1366
  flex-direction: column;
1314
1367
  height: 100%;
1368
+ }.scroll-container {
1369
+ width: 100%;
1370
+ height: 100%;
1371
+ }
1372
+ .scroll-container .scrollbar__wrap {
1373
+ overflow-x: hidden;
1374
+ }
1375
+ .scroll-container .scrollbar__view {
1376
+ box-sizing: border-box;
1315
1377
  }:root {
1316
1378
  --primary-1: #dafbe1;
1317
1379
  --primary-2: #aceebb;
@@ -1702,25 +1764,24 @@ span.iconify {
1702
1764
  }
1703
1765
  .shy-basic-modal :is(.ant-modal-body) {
1704
1766
  padding: unset !important;
1705
- margin: 16px;
1706
- overflow: auto;
1767
+ overflow: hidden;
1707
1768
  }
1708
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar {
1769
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar {
1709
1770
  position: absolute;
1710
1771
  height: 10px;
1711
1772
  width: 10px;
1712
1773
  }
1713
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb {
1774
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb {
1714
1775
  box-shadow: inset 0 0 10px 10px var(--gray-2);
1715
1776
  border: solid 2px transparent;
1716
1777
  background-color: transparent;
1717
1778
  border-radius: 10px;
1718
1779
  }
1719
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-thumb:hover {
1780
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:active, .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-thumb:hover {
1720
1781
  box-shadow: inset 0 0 10px 10px var(--gray-3);
1721
1782
  background-color: transparent;
1722
1783
  }
1723
- .shy-basic-modal :is(.ant-modal-body)::-webkit-scrollbar-track {
1784
+ .shy-basic-modal :is(.ant-modal-body) *::-webkit-scrollbar-track {
1724
1785
  border-radius: 10px;
1725
1786
  border: solid 2px transparent;
1726
1787
  background: transparent;
@@ -1754,6 +1815,11 @@ span.iconify {
1754
1815
  .shy-basic-modal.fullscreen-modal .ant-modal-body {
1755
1816
  flex: 1;
1756
1817
  }
1818
+ .shy-basic-modal.fullscreen-modal .ant-modal-body > div {
1819
+ min-height: 100% !important;
1820
+ max-height: 100% !important;
1821
+ height: 100% !important;
1822
+ }
1757
1823
  .shy-basic-modal.fullscreen-modal .ant-modal-content {
1758
1824
  display: flex;
1759
1825
  flex-direction: column;
@@ -8187,40 +8253,40 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
8187
8253
  overflow: auto;
8188
8254
  padding: 0 0;
8189
8255
  height: 100%;
8190
- }.shy-table-edit-icon-plus[data-v-c563312c] {
8256
+ }.shy-table-edit-icon-plus[data-v-0d7f83ba] {
8191
8257
  width: 30px;
8192
8258
  height: 30px;
8193
8259
  font-size: 30px;
8194
8260
  cursor: pointer;
8195
8261
  display: flex;
8196
8262
  }
8197
- .table-children[data-v-c563312c] .ant-form-item {
8263
+ .table-children[data-v-0d7f83ba] .ant-form-item {
8198
8264
  margin-bottom: 0 !important;
8199
8265
  }
8200
- .table-children-required[data-v-c563312c] {
8266
+ .table-children-required[data-v-0d7f83ba] {
8201
8267
  color: #ff4d4f;
8202
8268
  margin-right: 4px;
8203
8269
  }
8204
- .table-children[data-v-c563312c] .ant-table-cell {
8270
+ .table-children[data-v-0d7f83ba] .ant-table-cell {
8205
8271
  padding: 8px !important;
8206
8272
  }
8207
- .table-children[data-v-c563312c] .ant-table-cell .ant-form-item-explain {
8273
+ .table-children[data-v-0d7f83ba] .ant-table-cell .ant-form-item-explain {
8208
8274
  display: none;
8209
8275
  }
8210
- .table-children-delete-wrapper[data-v-c563312c] {
8276
+ .table-children-delete-wrapper[data-v-0d7f83ba] {
8211
8277
  display: flex;
8212
8278
  height: 100%;
8213
8279
  justify-content: center;
8214
8280
  }
8215
- .table-children-delete-wrapper:hover .table-children-delete-item[data-v-c563312c] {
8281
+ .table-children-delete-wrapper:hover .table-children-delete-item[data-v-0d7f83ba] {
8216
8282
  display: flex;
8217
8283
  justify-content: center;
8218
8284
  align-items: center;
8219
8285
  }
8220
- .table-children-delete-wrapper:hover .table-children-delete-index[data-v-c563312c] {
8286
+ .table-children-delete-wrapper:hover .table-children-delete-index[data-v-0d7f83ba] {
8221
8287
  display: none;
8222
8288
  }
8223
- .table-children-delete-item[data-v-c563312c] {
8289
+ .table-children-delete-item[data-v-0d7f83ba] {
8224
8290
  background-color: red;
8225
8291
  border-radius: 50%;
8226
8292
  width: 30px;
@@ -8229,7 +8295,7 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
8229
8295
  display: none;
8230
8296
  cursor: pointer;
8231
8297
  }
8232
- .table-children-delete-index[data-v-c563312c] {
8298
+ .table-children-delete-index[data-v-0d7f83ba] {
8233
8299
  user-select: none;
8234
8300
  display: inline-block;
8235
8301
  }.shy-ant-form {
@@ -8353,6 +8419,60 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
8353
8419
  height: 0.5px;
8354
8420
  width: 100%;
8355
8421
  background-color: var(--gray-3);
8422
+ }
8423
+ @media screen and (max-width: 1440px) {
8424
+ .shy-ant-form-wrapper-col-1 {
8425
+ width: 46%;
8426
+ max-width: 492px;
8427
+ }
8428
+ }
8429
+ @media screen and (max-width: 1920px) and (min-width: 1440px) {
8430
+ .shy-ant-form-wrapper-col-1 {
8431
+ width: 47%;
8432
+ max-width: 588px;
8433
+ }
8434
+ }
8435
+ @media screen and (min-width: 1920px) {
8436
+ .shy-ant-form-wrapper-col-1 {
8437
+ width: 48%;
8438
+ max-width: 828px;
8439
+ }
8440
+ }
8441
+ @media screen and (max-width: 1440px) {
8442
+ .shy-ant-form-wrapper-col-2 {
8443
+ width: 69%;
8444
+ max-width: 732px;
8445
+ }
8446
+ }
8447
+ @media screen and (max-width: 1920px) and (min-width: 1440px) {
8448
+ .shy-ant-form-wrapper-col-2 {
8449
+ width: 70%;
8450
+ max-width: 876px;
8451
+ }
8452
+ }
8453
+ @media screen and (min-width: 1920px) {
8454
+ .shy-ant-form-wrapper-col-2 {
8455
+ width: 71%;
8456
+ max-width: 1236px;
8457
+ }
8458
+ }
8459
+ @media screen and (max-width: 1440px) {
8460
+ .shy-ant-form-wrapper-col-3 {
8461
+ width: 68%;
8462
+ max-width: 720px;
8463
+ }
8464
+ }
8465
+ @media screen and (max-width: 1920px) and (min-width: 1440px) {
8466
+ .shy-ant-form-wrapper-col-3 {
8467
+ width: 69%;
8468
+ max-width: 864px;
8469
+ }
8470
+ }
8471
+ @media screen and (min-width: 1920px) {
8472
+ .shy-ant-form-wrapper-col-3 {
8473
+ width: 70%;
8474
+ max-width: 1224px;
8475
+ }
8356
8476
  }.wrapper[data-v-15e2dcbb] {
8357
8477
  display: flex;
8358
8478
  }