@steedos-widgets/amis-object 6.10.52-beta.38 → 6.10.52-beta.40

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.
@@ -1496,6 +1496,24 @@ steedosfieldset.antd-Collapse .antd-Collapse-header.is-mobile:hover {
1496
1496
  font-weight: 500;
1497
1497
  }
1498
1498
  }
1499
+ .steedos-amis-instance-view .steedos-field-group-edit .steedos-org-selector .ant-input-outlined {
1500
+ background: transparent !important;
1501
+ }
1502
+ .steedos-amis-instance-view .steedos-org-selector .ant-input-outlined {
1503
+ border: none !important;
1504
+ }
1505
+ .steedos-amis-instance-view .workflow-form-v2 .steedos-org-selector .ant-input-outlined {
1506
+ padding: 4px 11px;
1507
+ border: 1px solid #d9d9d9 !important;
1508
+ }
1509
+ .instance-scrollable-list {
1510
+ max-height: 180px;
1511
+ overflow-y: auto;
1512
+ }
1513
+ .steedos-instance-print-wrapper .instance-scrollable-list {
1514
+ max-height: none;
1515
+ overflow-y: visible;
1516
+ }
1499
1517
 
1500
1518
  .amis-object-field-lookup .lookup-left {
1501
1519
  max-width: 50% !important;
@@ -1906,6 +1924,9 @@ steedosfieldset.antd-Collapse .antd-Collapse-header.is-mobile:hover {
1906
1924
  max-height: calc(100% - 110px);
1907
1925
  overflow-y: auto;
1908
1926
  }
1927
+ .page-list-split .steedos-listview-item .steedos-listview-item-right {
1928
+ max-width: 50%;
1929
+ }
1909
1930
  .page-list-split .steedos-object-listview .steedos-object-listview-content-wrapper .steedos-object-listview-content .steedos-object-table.steedos-crud-mode-cards .antd-Crud .antd-Cards {
1910
1931
  width: 386px;
1911
1932
  }
@@ -2844,6 +2865,8 @@ steedosfieldset.antd-Collapse .antd-Collapse-header.is-mobile:hover {
2844
2865
  }
2845
2866
  .approval-drawer .antd-RadiosControl .antd-Checkbox--full {
2846
2867
  width: auto;
2868
+ display: inline-flex !important;
2869
+ align-items: center;
2847
2870
  }
2848
2871
  .instance-action-dialog.antd-Modal .antd-Form-item {
2849
2872
  border: none !important;
@@ -3310,6 +3333,53 @@ div[name="instanceForm"] .sfield-item {
3310
3333
  .steedos-record-selected span {
3311
3334
  color: var(--Table-onChecked-color) !important;
3312
3335
  }
3336
+ .steedos-detail-loading .page-object-detail-wrapper {
3337
+ position: relative;
3338
+ animation: none !important;
3339
+ opacity: 1 !important;
3340
+ transform: none !important;
3341
+ }
3342
+ .steedos-detail-loading .page-object-detail-wrapper::before {
3343
+ content: '';
3344
+ position: absolute;
3345
+ top: 0;
3346
+ left: 0;
3347
+ right: 0;
3348
+ bottom: 0;
3349
+ background: rgba(255, 255, 255, 0.85);
3350
+ z-index: 10;
3351
+ animation: steedos-detail-fade-in 0.15s ease-out;
3352
+ }
3353
+ .steedos-detail-loading .page-object-detail-wrapper::after {
3354
+ content: '';
3355
+ position: absolute;
3356
+ top: calc(50% - 20px);
3357
+ left: calc(50% - 20px);
3358
+ width: 40px;
3359
+ height: 40px;
3360
+ border: 3px solid transparent;
3361
+ border-top-color: var(--primary, #2468f2);
3362
+ border-right-color: var(--primary, #2468f2);
3363
+ border-radius: 50%;
3364
+ z-index: 11;
3365
+ animation: steedos-detail-spin 0.7s cubic-bezier(0.5, 0, 0.5, 1) infinite, steedos-detail-fade-in 0.15s ease-out;
3366
+ }
3367
+ @keyframes steedos-detail-spin {
3368
+ 0% {
3369
+ transform: rotate(0deg);
3370
+ }
3371
+ 100% {
3372
+ transform: rotate(360deg);
3373
+ }
3374
+ }
3375
+ @keyframes steedos-detail-fade-in {
3376
+ from {
3377
+ opacity: 0;
3378
+ }
3379
+ to {
3380
+ opacity: 1;
3381
+ }
3382
+ }
3313
3383
  .steedos-listview-split-max-height {
3314
3384
  overflow: hidden;
3315
3385
  }