super-page-designer 2.2.51-sit3 → 2.2.54

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.
Files changed (34) hide show
  1. package/dist/es/components/design/utils/assemblys-config.js +1 -1
  2. package/dist/es/components/design/utils/common-util.js +3 -0
  3. package/dist/es/components/design/utils/form-design-util.js +5 -5
  4. package/dist/es/components/design/utils/page-table-util.d.ts +1 -1
  5. package/dist/es/components/design/utils/page-table-util.js +4 -4
  6. package/dist/es/components/design/views/assemblys/chart/statistical-table/component/table-showcondition.vue.js +11 -11
  7. package/dist/es/components/design/views/assemblys/common/common-select-table.vue.js +10 -10
  8. package/dist/es/components/design/views/assemblys/container/tabs/tabs-design.vue.js +4 -1
  9. package/dist/es/components/design/views/assemblys/container/tabs/tabs-design.vue2.js +9 -9
  10. package/dist/es/components/design/views/assemblys/container/tools/tools-design.vue2.js +6 -6
  11. package/dist/es/components/design/views/assemblys/data/component/data-origin-tree.vue.js +1 -1
  12. package/dist/es/components/design/views/assemblys/data/component/data-origin-tree.vue2.js +55 -55
  13. package/dist/es/components/design/views/assemblys/data/component/data-origin.vue2.js +1 -1
  14. package/dist/es/components/design/views/assemblys/data/tree/tree-attr-base.vue.js +31 -15
  15. package/dist/es/components/design/views/assemblys/data/tree/tree-attr-context-menu.vue.js +37 -0
  16. package/dist/es/components/design/views/assemblys/data/tree/tree-attr-context-menu.vue2.js +4 -0
  17. package/dist/es/components/design/views/assemblys/data/tree/tree-design.vue2.js +4 -4
  18. package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
  19. package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue.js +2 -26
  20. package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js +26 -2
  21. package/dist/es/components/design/views/design/page-design.vue2.js +1 -1
  22. package/dist/es/components/design/views/design/page-design.vue3.js +1 -1
  23. package/dist/es/components/design/views/design/page-event/{config.vue2.js → config.vue.js} +1 -1
  24. package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +2 -2
  25. package/dist/es/components/design/views/design/view/assemblys-container.vue.js +13 -20
  26. package/dist/es/components/design/views/design/view/attr-container.vue.js +22 -29
  27. package/dist/es/components/design/views/design/view/page-switch.vue.js +1 -1
  28. package/dist/es/components/design/views/design/view/page-switch.vue2.js +8 -8
  29. package/dist/es/components/design/views/design/view/view-design-display.vue.js +5 -154
  30. package/dist/es/components/design/views/design/view/view-design-display.vue2.js +148 -2
  31. package/dist/es/components/design/views/design/view/view-design-preview.vue.js +5 -20
  32. package/dist/es/components/design/views/design/view/view-design-preview.vue2.js +20 -2
  33. package/dist/es/style.css +885 -822
  34. package/package.json +4 -4
package/dist/es/style.css CHANGED
@@ -7,6 +7,7 @@
7
7
  background-color: #ffffff;
8
8
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
9
9
  text-align: center;
10
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
10
11
  }
11
12
  .amb-page-container-header-page {
12
13
  position: fixed;
@@ -33,24 +34,33 @@
33
34
  background: #5893ef;
34
35
  color: #ffffff;
35
36
  }
37
+
38
+ .amb-page-container-header ~ .amb-page-container-main {
39
+ height: calc(100vh - 60px);
40
+ }
36
41
  .amb-page-container-main {
37
42
  position: relative;
38
43
  overflow: auto;
39
44
  }
45
+
46
+ .amb-page-container-main > .el-container {
47
+ height: 100%;
48
+ }
49
+
40
50
  .amb-container-left {
41
- padding-right: 20px;
51
+ width: 280px !important;
42
52
  overflow-y: auto;
43
53
  }
44
54
  .amb-container-main {
45
55
  padding: 0px !important;
46
56
  user-select: none;
57
+ overflow: hidden;
47
58
  }
48
59
  .amb-container-main::-webkit-scrollbar {
49
60
  width: 1px;
50
61
  }
51
62
  .amb-container-attr {
52
- width: 300px;
53
- padding-left: 20px;
63
+ width: 280px !important;
54
64
  }
55
65
  .amb-design-attr-base-content {
56
66
  background: #ffffff;
@@ -83,21 +93,20 @@
83
93
  }
84
94
  .amb-design-content {
85
95
  overflow: auto;
86
- display: block;
96
+ display: flex;
97
+ flex-direction: column;
87
98
  flex: none;
88
99
  position: relative;
89
100
  width: 100%;
101
+ height: 100%;
90
102
  }
91
103
  .amb-design-content::-webkit-scrollbar {
92
104
  width: 1px;
93
105
  }
94
106
  .amb-design-content-center-header {
95
- position: sticky;
96
- z-index: 4;
97
- top: 0;
98
107
  height: 54px;
99
108
  background-color: #f7f8fa;
100
- padding-top: 14px;
109
+ margin: 15px;
101
110
  }
102
111
  .amb-design-tool {
103
112
  position: relative;
@@ -143,22 +152,25 @@
143
152
  position: relative;
144
153
  cursor: pointer;
145
154
  }
155
+ .el-scrollbar__view:has(.amb-design-board) {
156
+ padding: 0 15px;
157
+ height: 100%;
158
+ }
146
159
  .amb-design-board {
160
+ min-height: 100%;
147
161
  margin: 0 auto;
148
- margin-top: 12px;
149
- overflow-y: hidden;
150
- overflow-x: auto;
151
162
  background: #ffffff;
152
163
  border-radius: 2px 2px 2px 2px;
153
164
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
154
165
  padding-bottom: 100px;
155
166
  }
156
167
  .amb-item-ghost {
157
- background-color: #5893ef;
158
- height: 5px;
159
- line-height: 5px;
168
+ background-color: rgba(64, 158, 255, .1);
160
169
  overflow: hidden;
161
170
  }
171
+ .amb-item-ghost > * {
172
+ opacity: 0;
173
+ }
162
174
  /* 将你的自定义样式添加到这里 */
163
175
  .draggable-placeholder {
164
176
  background-color: red;
@@ -369,23 +381,22 @@
369
381
  /* 用于占位 */
370
382
  .amb-widget-tools-parent {
371
383
  width: 100%;
372
- min-height: 58px;
373
- margin-bottom: 18px;
374
384
  }
375
385
  .amb-widget-tools {
376
386
  display: flex;
387
+ flex-wrap: wrap;
377
388
  /* 垂直居中 */
378
389
  align-items: center;
379
390
  background: #fafafa;
380
391
  /* background:#FAFAFA; */
381
392
  /* background-color: var(--el-card-bg-color); */
382
393
  /* border:1px solid #e4e7ed; */
383
- height: 58px;
384
394
  border-radius: 4px;
385
395
  width: transparent;
386
396
  padding-left: 20px;
387
397
  padding-right: 20px;
388
398
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
399
+ min-height: 58px;
389
400
  /* --el-card-border-color: var(--el-border-color-light);
390
401
  --el-card-border-radius: 4px;
391
402
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -525,7 +536,6 @@ fieldset.amb-design-item-selected {
525
536
  overflow: hidden;
526
537
  transition: var(--el-transition-duration);
527
538
  box-shadow: var(--el-box-shadow-light);
528
- margin-bottom: 18px;
529
539
  }
530
540
 
531
541
  .amb-widget-chart-header {
@@ -545,9 +555,6 @@ fieldset.amb-design-item-selected {
545
555
  justify-content: center;
546
556
  }
547
557
 
548
- .el-card {
549
- margin-bottom: 18px;
550
- }
551
558
  .el-collapse {
552
559
  margin-bottom: 18px;
553
560
  }
@@ -573,9 +580,6 @@ fieldset.amb-design-item-selected {
573
580
  .el-button-group > .el-button {
574
581
  margin-right: 0px;
575
582
  }
576
- .el-form-item > .el-form-item__content {
577
- padding-right: 18px;
578
- }
579
583
 
580
584
  /* 设计时样式 */
581
585
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -626,7 +630,9 @@ fieldset.amb-design-item-selected {
626
630
  content: "\e605";
627
631
  }
628
632
 
629
-
633
+ .runtime-page-container[data-v-3e4e707a] {
634
+ height: calc(100vh - 73px);
635
+ }
630
636
  .editorTool[data-v-8dba0ddd] {
631
637
  margin-left: auto;
632
638
  }
@@ -647,7 +653,22 @@ fieldset.amb-design-item-selected {
647
653
  [data-v-8e6fbc57] .centered-input .el-input__inner {
648
654
  text-align: center;
649
655
  }
650
-
656
+ .el-aside[data-v-d39ebdb2] {
657
+ width: 285px;
658
+ }
659
+ .amb-design-board[data-v-d39ebdb2] {
660
+ padding: 15px;
661
+ display: flex;
662
+ flex-direction: column;
663
+ align-content: flex-start;
664
+ gap: var(--runtime-page-container-view-gap, 15px);
665
+ }
666
+ .amb-design-board[data-v-d39ebdb2] > div {
667
+ width: 100%;
668
+ }
669
+ .amb-design-board[data-v-d39ebdb2] [draggable] {
670
+ overflow: hidden;
671
+ }
651
672
  .event-item[data-v-18fb54c3] {
652
673
  font-size: 12px;
653
674
  border-bottom: 2px dashed #f5f6f8;
@@ -656,31 +677,46 @@ fieldset.amb-design-item-selected {
656
677
  }
657
678
 
658
679
  /* 定义滚动条的轨道 */
659
- [data-v-511b453b]::-webkit-scrollbar {
680
+ [data-v-2076fde4]::-webkit-scrollbar {
660
681
  height: 6px;
661
682
  width: 6px; /* 宽度 */
662
683
  }
663
684
 
664
685
  /* 定义滑块 */
665
- [data-v-511b453b]::-webkit-scrollbar-thumb {
686
+ [data-v-2076fde4]::-webkit-scrollbar-thumb {
666
687
  background-color: darkgrey; /* 滑块颜色 */
667
688
  border-radius: 5px; /* 圆角 */
668
689
  }
669
690
 
670
691
  /* 当滑块hover时改变颜色 */
671
- [data-v-511b453b]::-webkit-scrollbar-thumb:hover {
692
+ [data-v-2076fde4]::-webkit-scrollbar-thumb:hover {
672
693
  background-color: grey;
673
694
  }
674
- ._amb-page-container_19cmx_1 {
695
+ ._amb-page-container_1k9lg_1 {
675
696
  position: relative;
676
697
  height: 100vh;
677
698
  width: 100vw;
678
699
  }
679
- ._amb-page-container_19cmx_1 ._amb-page-container-header_19cmx_6 {
700
+ ._amb-page-container_1k9lg_1 ._amb-page-container-header_1k9lg_6 {
680
701
  height: 60px;
681
702
  }
682
- ._amb-page-container_19cmx_1 ._amb-page-container-header_19cmx_6 ~ ._amb-page-container-main_19cmx_9 {
683
- height: calc(100% - 60px);
703
+ ._amb-page-container_1k9lg_1 ._amb-page-container-header_1k9lg_6 ~ ._amb-page-container-main_1k9lg_9 {
704
+ height: calc(100vh - 60px);
705
+ }.runtime-page-container-tabs-view[data-v-1e1bb163] > .el-tabs__content > .el-tab-pane {
706
+ display: flex;
707
+ flex-direction: column;
708
+ align-content: flex-start;
709
+ gap: var(--runtime-page-container-view-gap, 15px);
710
+ }
711
+ .runtime-page-container-tabs-view[data-v-1e1bb163] > .el-tabs__content > .el-tab-pane > .amb-design-item-default {
712
+ display: flex;
713
+ flex-direction: column;
714
+ align-content: flex-start;
715
+ gap: var(--runtime-page-container-view-gap, 15px);
716
+ }
717
+ .runtime-page-container-tabs-view[data-v-1e1bb163] > .el-tabs__content > .el-tab-pane > .amb-design-item-default > div {
718
+ width: 100%;
719
+ max-width: 100%;
684
720
  }
685
721
  .amb-design-attr-header[data-v-226997f7] {
686
722
  position: sticky;
@@ -715,7 +751,8 @@ fieldset.amb-design-item-selected {
715
751
  line-height: 60px;
716
752
  background-color: #ffffff;
717
753
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
718
- text-align: center;
754
+ text-align: center;
755
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
719
756
  }
720
757
  .amb-page-container-header-page {
721
758
  position: fixed;
@@ -742,24 +779,30 @@ fieldset.amb-design-item-selected {
742
779
  background: #5893ef;
743
780
  color: #ffffff;
744
781
  }
782
+ .amb-page-container-header ~ .amb-page-container-main {
783
+ height: calc(100vh - 60px);
784
+ }
745
785
  .amb-page-container-main {
746
786
  position: relative;
747
787
  overflow: auto;
748
788
  }
789
+ .amb-page-container-main > .el-container {
790
+ height: 100%;
791
+ }
749
792
  .amb-container-left {
750
- padding-right: 20px;
793
+ width: 280px !important;
751
794
  overflow-y: auto;
752
795
  }
753
796
  .amb-container-main {
754
797
  padding: 0px !important;
755
- user-select: none;
798
+ user-select: none;
799
+ overflow: hidden;
756
800
  }
757
801
  .amb-container-main::-webkit-scrollbar {
758
802
  width: 1px;
759
803
  }
760
804
  .amb-container-attr {
761
- width: 300px;
762
- padding-left: 20px;
805
+ width: 280px !important;
763
806
  }
764
807
  .amb-design-attr-base-content {
765
808
  background: #ffffff;
@@ -792,21 +835,20 @@ fieldset.amb-design-item-selected {
792
835
  }
793
836
  .amb-design-content {
794
837
  overflow: auto;
795
- display: block;
838
+ display: flex;
839
+ flex-direction: column;
796
840
  flex: none;
797
841
  position: relative;
798
- width: 100%;
842
+ width: 100%;
843
+ height: 100%;
799
844
  }
800
845
  .amb-design-content::-webkit-scrollbar {
801
846
  width: 1px;
802
847
  }
803
848
  .amb-design-content-center-header {
804
- position: sticky;
805
- z-index: 4;
806
- top: 0;
807
849
  height: 54px;
808
850
  background-color: #f7f8fa;
809
- padding-top: 14px;
851
+ margin: 15px;
810
852
  }
811
853
  .amb-design-tool {
812
854
  position: relative;
@@ -852,21 +894,24 @@ fieldset.amb-design-item-selected {
852
894
  position: relative;
853
895
  cursor: pointer;
854
896
  }
897
+ .el-scrollbar__view:has(.amb-design-board) {
898
+ padding: 0 15px;
899
+ height: 100%;
900
+ }
855
901
  .amb-design-board {
902
+ min-height: 100%;
856
903
  margin: 0 auto;
857
- margin-top: 12px;
858
- overflow-y: hidden;
859
- overflow-x: auto;
860
904
  background: #ffffff;
861
905
  border-radius: 2px 2px 2px 2px;
862
906
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
863
907
  padding-bottom: 100px;
864
908
  }
865
909
  .amb-item-ghost {
866
- background-color: #5893ef;
867
- height: 5px;
868
- line-height: 5px;
910
+ background-color: rgba(64, 158, 255, .1);
869
911
  overflow: hidden;
912
+ }
913
+ .amb-item-ghost > * {
914
+ opacity: 0;
870
915
  }
871
916
  /* 将你的自定义样式添加到这里 */
872
917
  .draggable-placeholder {
@@ -1074,24 +1119,23 @@ fieldset.amb-design-item-selected {
1074
1119
  }
1075
1120
  /* 用于占位 */
1076
1121
  .amb-widget-tools-parent {
1077
- width: 100%;
1078
- min-height: 58px;
1079
- margin-bottom: 18px;
1122
+ width: 100%;
1080
1123
  }
1081
1124
  .amb-widget-tools {
1082
1125
  display: flex;
1126
+ flex-wrap: wrap;
1083
1127
  /* 垂直居中 */
1084
1128
  align-items: center;
1085
1129
  background: #fafafa;
1086
1130
  /* background:#FAFAFA; */
1087
1131
  /* background-color: var(--el-card-bg-color); */
1088
1132
  /* border:1px solid #e4e7ed; */
1089
- height: 58px;
1090
1133
  border-radius: 4px;
1091
1134
  width: transparent;
1092
1135
  padding-left: 20px;
1093
1136
  padding-right: 20px;
1094
1137
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
1138
+ min-height: 58px;
1095
1139
  /* --el-card-border-color: var(--el-border-color-light);
1096
1140
  --el-card-border-radius: 4px;
1097
1141
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -1223,8 +1267,7 @@ fieldset.amb-design-item-selected {
1223
1267
  color: var(--el-text-color-primary);
1224
1268
  overflow: hidden;
1225
1269
  transition: var(--el-transition-duration);
1226
- box-shadow: var(--el-box-shadow-light);
1227
- margin-bottom: 18px;
1270
+ box-shadow: var(--el-box-shadow-light);
1228
1271
  }
1229
1272
  .amb-widget-chart-header {
1230
1273
  border-bottom: 1px solid var(--el-card-border-color);
@@ -1242,9 +1285,6 @@ fieldset.amb-design-item-selected {
1242
1285
  vertical-align: middle;
1243
1286
  justify-content: center;
1244
1287
  }
1245
- .el-card {
1246
- margin-bottom: 18px;
1247
- }
1248
1288
  .el-collapse {
1249
1289
  margin-bottom: 18px;
1250
1290
  }
@@ -1269,9 +1309,6 @@ fieldset.amb-design-item-selected {
1269
1309
  }
1270
1310
  .el-button-group > .el-button {
1271
1311
  margin-right: 0px;
1272
- }
1273
- .el-form-item > .el-form-item__content {
1274
- padding-right: 18px;
1275
1312
  }
1276
1313
  /* 设计时样式 */
1277
1314
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -1313,7 +1350,8 @@ fieldset.amb-design-item-selected {
1313
1350
  line-height: 60px;
1314
1351
  background-color: #ffffff;
1315
1352
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
1316
- text-align: center;
1353
+ text-align: center;
1354
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
1317
1355
  }
1318
1356
  .amb-page-container-header-page {
1319
1357
  position: fixed;
@@ -1340,24 +1378,30 @@ fieldset.amb-design-item-selected {
1340
1378
  background: #5893ef;
1341
1379
  color: #ffffff;
1342
1380
  }
1381
+ .amb-page-container-header ~ .amb-page-container-main {
1382
+ height: calc(100vh - 60px);
1383
+ }
1343
1384
  .amb-page-container-main {
1344
1385
  position: relative;
1345
1386
  overflow: auto;
1346
1387
  }
1388
+ .amb-page-container-main > .el-container {
1389
+ height: 100%;
1390
+ }
1347
1391
  .amb-container-left {
1348
- padding-right: 20px;
1392
+ width: 280px !important;
1349
1393
  overflow-y: auto;
1350
1394
  }
1351
1395
  .amb-container-main {
1352
1396
  padding: 0px !important;
1353
- user-select: none;
1397
+ user-select: none;
1398
+ overflow: hidden;
1354
1399
  }
1355
1400
  .amb-container-main::-webkit-scrollbar {
1356
1401
  width: 1px;
1357
1402
  }
1358
1403
  .amb-container-attr {
1359
- width: 300px;
1360
- padding-left: 20px;
1404
+ width: 280px !important;
1361
1405
  }
1362
1406
  .amb-design-attr-base-content {
1363
1407
  background: #ffffff;
@@ -1390,21 +1434,20 @@ fieldset.amb-design-item-selected {
1390
1434
  }
1391
1435
  .amb-design-content {
1392
1436
  overflow: auto;
1393
- display: block;
1437
+ display: flex;
1438
+ flex-direction: column;
1394
1439
  flex: none;
1395
1440
  position: relative;
1396
- width: 100%;
1441
+ width: 100%;
1442
+ height: 100%;
1397
1443
  }
1398
1444
  .amb-design-content::-webkit-scrollbar {
1399
1445
  width: 1px;
1400
1446
  }
1401
1447
  .amb-design-content-center-header {
1402
- position: sticky;
1403
- z-index: 4;
1404
- top: 0;
1405
1448
  height: 54px;
1406
1449
  background-color: #f7f8fa;
1407
- padding-top: 14px;
1450
+ margin: 15px;
1408
1451
  }
1409
1452
  .amb-design-tool {
1410
1453
  position: relative;
@@ -1450,21 +1493,24 @@ fieldset.amb-design-item-selected {
1450
1493
  position: relative;
1451
1494
  cursor: pointer;
1452
1495
  }
1496
+ .el-scrollbar__view:has(.amb-design-board) {
1497
+ padding: 0 15px;
1498
+ height: 100%;
1499
+ }
1453
1500
  .amb-design-board {
1501
+ min-height: 100%;
1454
1502
  margin: 0 auto;
1455
- margin-top: 12px;
1456
- overflow-y: hidden;
1457
- overflow-x: auto;
1458
1503
  background: #ffffff;
1459
1504
  border-radius: 2px 2px 2px 2px;
1460
1505
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
1461
1506
  padding-bottom: 100px;
1462
1507
  }
1463
1508
  .amb-item-ghost {
1464
- background-color: #5893ef;
1465
- height: 5px;
1466
- line-height: 5px;
1509
+ background-color: rgba(64, 158, 255, .1);
1467
1510
  overflow: hidden;
1511
+ }
1512
+ .amb-item-ghost > * {
1513
+ opacity: 0;
1468
1514
  }
1469
1515
  /* 将你的自定义样式添加到这里 */
1470
1516
  .draggable-placeholder {
@@ -1672,24 +1718,23 @@ fieldset.amb-design-item-selected {
1672
1718
  }
1673
1719
  /* 用于占位 */
1674
1720
  .amb-widget-tools-parent {
1675
- width: 100%;
1676
- min-height: 58px;
1677
- margin-bottom: 18px;
1721
+ width: 100%;
1678
1722
  }
1679
1723
  .amb-widget-tools {
1680
1724
  display: flex;
1725
+ flex-wrap: wrap;
1681
1726
  /* 垂直居中 */
1682
1727
  align-items: center;
1683
1728
  background: #fafafa;
1684
1729
  /* background:#FAFAFA; */
1685
1730
  /* background-color: var(--el-card-bg-color); */
1686
1731
  /* border:1px solid #e4e7ed; */
1687
- height: 58px;
1688
1732
  border-radius: 4px;
1689
1733
  width: transparent;
1690
1734
  padding-left: 20px;
1691
1735
  padding-right: 20px;
1692
1736
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
1737
+ min-height: 58px;
1693
1738
  /* --el-card-border-color: var(--el-border-color-light);
1694
1739
  --el-card-border-radius: 4px;
1695
1740
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -1821,8 +1866,7 @@ fieldset.amb-design-item-selected {
1821
1866
  color: var(--el-text-color-primary);
1822
1867
  overflow: hidden;
1823
1868
  transition: var(--el-transition-duration);
1824
- box-shadow: var(--el-box-shadow-light);
1825
- margin-bottom: 18px;
1869
+ box-shadow: var(--el-box-shadow-light);
1826
1870
  }
1827
1871
  .amb-widget-chart-header {
1828
1872
  border-bottom: 1px solid var(--el-card-border-color);
@@ -1840,9 +1884,6 @@ fieldset.amb-design-item-selected {
1840
1884
  vertical-align: middle;
1841
1885
  justify-content: center;
1842
1886
  }
1843
- .el-card {
1844
- margin-bottom: 18px;
1845
- }
1846
1887
  .el-collapse {
1847
1888
  margin-bottom: 18px;
1848
1889
  }
@@ -1867,9 +1908,6 @@ fieldset.amb-design-item-selected {
1867
1908
  }
1868
1909
  .el-button-group > .el-button {
1869
1910
  margin-right: 0px;
1870
- }
1871
- .el-form-item > .el-form-item__content {
1872
- padding-right: 18px;
1873
1911
  }
1874
1912
  /* 设计时样式 */
1875
1913
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -1902,7 +1940,8 @@ fieldset.amb-design-item-selected {
1902
1940
  line-height: 60px;
1903
1941
  background-color: #ffffff;
1904
1942
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
1905
- text-align: center;
1943
+ text-align: center;
1944
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
1906
1945
  }
1907
1946
  .amb-page-container-header-page {
1908
1947
  position: fixed;
@@ -1929,24 +1968,30 @@ fieldset.amb-design-item-selected {
1929
1968
  background: #5893ef;
1930
1969
  color: #ffffff;
1931
1970
  }
1971
+ .amb-page-container-header ~ .amb-page-container-main {
1972
+ height: calc(100vh - 60px);
1973
+ }
1932
1974
  .amb-page-container-main {
1933
1975
  position: relative;
1934
1976
  overflow: auto;
1935
1977
  }
1978
+ .amb-page-container-main > .el-container {
1979
+ height: 100%;
1980
+ }
1936
1981
  .amb-container-left {
1937
- padding-right: 20px;
1982
+ width: 280px !important;
1938
1983
  overflow-y: auto;
1939
1984
  }
1940
1985
  .amb-container-main {
1941
1986
  padding: 0px !important;
1942
- user-select: none;
1987
+ user-select: none;
1988
+ overflow: hidden;
1943
1989
  }
1944
1990
  .amb-container-main::-webkit-scrollbar {
1945
1991
  width: 1px;
1946
1992
  }
1947
1993
  .amb-container-attr {
1948
- width: 300px;
1949
- padding-left: 20px;
1994
+ width: 280px !important;
1950
1995
  }
1951
1996
  .amb-design-attr-base-content {
1952
1997
  background: #ffffff;
@@ -1979,21 +2024,20 @@ fieldset.amb-design-item-selected {
1979
2024
  }
1980
2025
  .amb-design-content {
1981
2026
  overflow: auto;
1982
- display: block;
2027
+ display: flex;
2028
+ flex-direction: column;
1983
2029
  flex: none;
1984
2030
  position: relative;
1985
- width: 100%;
2031
+ width: 100%;
2032
+ height: 100%;
1986
2033
  }
1987
2034
  .amb-design-content::-webkit-scrollbar {
1988
2035
  width: 1px;
1989
2036
  }
1990
2037
  .amb-design-content-center-header {
1991
- position: sticky;
1992
- z-index: 4;
1993
- top: 0;
1994
2038
  height: 54px;
1995
2039
  background-color: #f7f8fa;
1996
- padding-top: 14px;
2040
+ margin: 15px;
1997
2041
  }
1998
2042
  .amb-design-tool {
1999
2043
  position: relative;
@@ -2039,21 +2083,24 @@ fieldset.amb-design-item-selected {
2039
2083
  position: relative;
2040
2084
  cursor: pointer;
2041
2085
  }
2086
+ .el-scrollbar__view:has(.amb-design-board) {
2087
+ padding: 0 15px;
2088
+ height: 100%;
2089
+ }
2042
2090
  .amb-design-board {
2091
+ min-height: 100%;
2043
2092
  margin: 0 auto;
2044
- margin-top: 12px;
2045
- overflow-y: hidden;
2046
- overflow-x: auto;
2047
2093
  background: #ffffff;
2048
2094
  border-radius: 2px 2px 2px 2px;
2049
2095
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
2050
2096
  padding-bottom: 100px;
2051
2097
  }
2052
2098
  .amb-item-ghost {
2053
- background-color: #5893ef;
2054
- height: 5px;
2055
- line-height: 5px;
2099
+ background-color: rgba(64, 158, 255, .1);
2056
2100
  overflow: hidden;
2101
+ }
2102
+ .amb-item-ghost > * {
2103
+ opacity: 0;
2057
2104
  }
2058
2105
  /* 将你的自定义样式添加到这里 */
2059
2106
  .draggable-placeholder {
@@ -2261,24 +2308,23 @@ fieldset.amb-design-item-selected {
2261
2308
  }
2262
2309
  /* 用于占位 */
2263
2310
  .amb-widget-tools-parent {
2264
- width: 100%;
2265
- min-height: 58px;
2266
- margin-bottom: 18px;
2311
+ width: 100%;
2267
2312
  }
2268
2313
  .amb-widget-tools {
2269
2314
  display: flex;
2315
+ flex-wrap: wrap;
2270
2316
  /* 垂直居中 */
2271
2317
  align-items: center;
2272
2318
  background: #fafafa;
2273
2319
  /* background:#FAFAFA; */
2274
2320
  /* background-color: var(--el-card-bg-color); */
2275
2321
  /* border:1px solid #e4e7ed; */
2276
- height: 58px;
2277
2322
  border-radius: 4px;
2278
2323
  width: transparent;
2279
2324
  padding-left: 20px;
2280
2325
  padding-right: 20px;
2281
2326
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
2327
+ min-height: 58px;
2282
2328
  /* --el-card-border-color: var(--el-border-color-light);
2283
2329
  --el-card-border-radius: 4px;
2284
2330
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -2410,8 +2456,7 @@ fieldset.amb-design-item-selected {
2410
2456
  color: var(--el-text-color-primary);
2411
2457
  overflow: hidden;
2412
2458
  transition: var(--el-transition-duration);
2413
- box-shadow: var(--el-box-shadow-light);
2414
- margin-bottom: 18px;
2459
+ box-shadow: var(--el-box-shadow-light);
2415
2460
  }
2416
2461
  .amb-widget-chart-header {
2417
2462
  border-bottom: 1px solid var(--el-card-border-color);
@@ -2429,9 +2474,6 @@ fieldset.amb-design-item-selected {
2429
2474
  vertical-align: middle;
2430
2475
  justify-content: center;
2431
2476
  }
2432
- .el-card {
2433
- margin-bottom: 18px;
2434
- }
2435
2477
  .el-collapse {
2436
2478
  margin-bottom: 18px;
2437
2479
  }
@@ -2456,9 +2498,6 @@ fieldset.amb-design-item-selected {
2456
2498
  }
2457
2499
  .el-button-group > .el-button {
2458
2500
  margin-right: 0px;
2459
- }
2460
- .el-form-item > .el-form-item__content {
2461
- padding-right: 18px;
2462
2501
  }
2463
2502
  /* 设计时样式 */
2464
2503
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -2491,7 +2530,8 @@ fieldset.amb-design-item-selected {
2491
2530
  line-height: 60px;
2492
2531
  background-color: #ffffff;
2493
2532
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
2494
- text-align: center;
2533
+ text-align: center;
2534
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
2495
2535
  }
2496
2536
  .amb-page-container-header-page {
2497
2537
  position: fixed;
@@ -2518,24 +2558,30 @@ fieldset.amb-design-item-selected {
2518
2558
  background: #5893ef;
2519
2559
  color: #ffffff;
2520
2560
  }
2561
+ .amb-page-container-header ~ .amb-page-container-main {
2562
+ height: calc(100vh - 60px);
2563
+ }
2521
2564
  .amb-page-container-main {
2522
2565
  position: relative;
2523
2566
  overflow: auto;
2524
2567
  }
2568
+ .amb-page-container-main > .el-container {
2569
+ height: 100%;
2570
+ }
2525
2571
  .amb-container-left {
2526
- padding-right: 20px;
2572
+ width: 280px !important;
2527
2573
  overflow-y: auto;
2528
2574
  }
2529
2575
  .amb-container-main {
2530
2576
  padding: 0px !important;
2531
- user-select: none;
2577
+ user-select: none;
2578
+ overflow: hidden;
2532
2579
  }
2533
2580
  .amb-container-main::-webkit-scrollbar {
2534
2581
  width: 1px;
2535
2582
  }
2536
2583
  .amb-container-attr {
2537
- width: 300px;
2538
- padding-left: 20px;
2584
+ width: 280px !important;
2539
2585
  }
2540
2586
  .amb-design-attr-base-content {
2541
2587
  background: #ffffff;
@@ -2568,21 +2614,20 @@ fieldset.amb-design-item-selected {
2568
2614
  }
2569
2615
  .amb-design-content {
2570
2616
  overflow: auto;
2571
- display: block;
2617
+ display: flex;
2618
+ flex-direction: column;
2572
2619
  flex: none;
2573
2620
  position: relative;
2574
- width: 100%;
2621
+ width: 100%;
2622
+ height: 100%;
2575
2623
  }
2576
2624
  .amb-design-content::-webkit-scrollbar {
2577
2625
  width: 1px;
2578
2626
  }
2579
2627
  .amb-design-content-center-header {
2580
- position: sticky;
2581
- z-index: 4;
2582
- top: 0;
2583
2628
  height: 54px;
2584
2629
  background-color: #f7f8fa;
2585
- padding-top: 14px;
2630
+ margin: 15px;
2586
2631
  }
2587
2632
  .amb-design-tool {
2588
2633
  position: relative;
@@ -2628,21 +2673,24 @@ fieldset.amb-design-item-selected {
2628
2673
  position: relative;
2629
2674
  cursor: pointer;
2630
2675
  }
2676
+ .el-scrollbar__view:has(.amb-design-board) {
2677
+ padding: 0 15px;
2678
+ height: 100%;
2679
+ }
2631
2680
  .amb-design-board {
2681
+ min-height: 100%;
2632
2682
  margin: 0 auto;
2633
- margin-top: 12px;
2634
- overflow-y: hidden;
2635
- overflow-x: auto;
2636
2683
  background: #ffffff;
2637
2684
  border-radius: 2px 2px 2px 2px;
2638
2685
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
2639
2686
  padding-bottom: 100px;
2640
2687
  }
2641
2688
  .amb-item-ghost {
2642
- background-color: #5893ef;
2643
- height: 5px;
2644
- line-height: 5px;
2689
+ background-color: rgba(64, 158, 255, .1);
2645
2690
  overflow: hidden;
2691
+ }
2692
+ .amb-item-ghost > * {
2693
+ opacity: 0;
2646
2694
  }
2647
2695
  /* 将你的自定义样式添加到这里 */
2648
2696
  .draggable-placeholder {
@@ -2850,24 +2898,23 @@ fieldset.amb-design-item-selected {
2850
2898
  }
2851
2899
  /* 用于占位 */
2852
2900
  .amb-widget-tools-parent {
2853
- width: 100%;
2854
- min-height: 58px;
2855
- margin-bottom: 18px;
2901
+ width: 100%;
2856
2902
  }
2857
2903
  .amb-widget-tools {
2858
2904
  display: flex;
2905
+ flex-wrap: wrap;
2859
2906
  /* 垂直居中 */
2860
2907
  align-items: center;
2861
2908
  background: #fafafa;
2862
2909
  /* background:#FAFAFA; */
2863
2910
  /* background-color: var(--el-card-bg-color); */
2864
2911
  /* border:1px solid #e4e7ed; */
2865
- height: 58px;
2866
2912
  border-radius: 4px;
2867
2913
  width: transparent;
2868
2914
  padding-left: 20px;
2869
2915
  padding-right: 20px;
2870
2916
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
2917
+ min-height: 58px;
2871
2918
  /* --el-card-border-color: var(--el-border-color-light);
2872
2919
  --el-card-border-radius: 4px;
2873
2920
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -2999,8 +3046,7 @@ fieldset.amb-design-item-selected {
2999
3046
  color: var(--el-text-color-primary);
3000
3047
  overflow: hidden;
3001
3048
  transition: var(--el-transition-duration);
3002
- box-shadow: var(--el-box-shadow-light);
3003
- margin-bottom: 18px;
3049
+ box-shadow: var(--el-box-shadow-light);
3004
3050
  }
3005
3051
  .amb-widget-chart-header {
3006
3052
  border-bottom: 1px solid var(--el-card-border-color);
@@ -3018,9 +3064,6 @@ fieldset.amb-design-item-selected {
3018
3064
  vertical-align: middle;
3019
3065
  justify-content: center;
3020
3066
  }
3021
- .el-card {
3022
- margin-bottom: 18px;
3023
- }
3024
3067
  .el-collapse {
3025
3068
  margin-bottom: 18px;
3026
3069
  }
@@ -3045,9 +3088,6 @@ fieldset.amb-design-item-selected {
3045
3088
  }
3046
3089
  .el-button-group > .el-button {
3047
3090
  margin-right: 0px;
3048
- }
3049
- .el-form-item > .el-form-item__content {
3050
- padding-right: 18px;
3051
3091
  }
3052
3092
  /* 设计时样式 */
3053
3093
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -3080,7 +3120,8 @@ fieldset.amb-design-item-selected {
3080
3120
  line-height: 60px;
3081
3121
  background-color: #ffffff;
3082
3122
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
3083
- text-align: center;
3123
+ text-align: center;
3124
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
3084
3125
  }
3085
3126
  .amb-page-container-header-page {
3086
3127
  position: fixed;
@@ -3107,24 +3148,30 @@ fieldset.amb-design-item-selected {
3107
3148
  background: #5893ef;
3108
3149
  color: #ffffff;
3109
3150
  }
3151
+ .amb-page-container-header ~ .amb-page-container-main {
3152
+ height: calc(100vh - 60px);
3153
+ }
3110
3154
  .amb-page-container-main {
3111
3155
  position: relative;
3112
3156
  overflow: auto;
3113
3157
  }
3158
+ .amb-page-container-main > .el-container {
3159
+ height: 100%;
3160
+ }
3114
3161
  .amb-container-left {
3115
- padding-right: 20px;
3162
+ width: 280px !important;
3116
3163
  overflow-y: auto;
3117
3164
  }
3118
3165
  .amb-container-main {
3119
3166
  padding: 0px !important;
3120
- user-select: none;
3167
+ user-select: none;
3168
+ overflow: hidden;
3121
3169
  }
3122
3170
  .amb-container-main::-webkit-scrollbar {
3123
3171
  width: 1px;
3124
3172
  }
3125
3173
  .amb-container-attr {
3126
- width: 300px;
3127
- padding-left: 20px;
3174
+ width: 280px !important;
3128
3175
  }
3129
3176
  .amb-design-attr-base-content {
3130
3177
  background: #ffffff;
@@ -3157,21 +3204,20 @@ fieldset.amb-design-item-selected {
3157
3204
  }
3158
3205
  .amb-design-content {
3159
3206
  overflow: auto;
3160
- display: block;
3207
+ display: flex;
3208
+ flex-direction: column;
3161
3209
  flex: none;
3162
3210
  position: relative;
3163
- width: 100%;
3211
+ width: 100%;
3212
+ height: 100%;
3164
3213
  }
3165
3214
  .amb-design-content::-webkit-scrollbar {
3166
3215
  width: 1px;
3167
3216
  }
3168
3217
  .amb-design-content-center-header {
3169
- position: sticky;
3170
- z-index: 4;
3171
- top: 0;
3172
3218
  height: 54px;
3173
3219
  background-color: #f7f8fa;
3174
- padding-top: 14px;
3220
+ margin: 15px;
3175
3221
  }
3176
3222
  .amb-design-tool {
3177
3223
  position: relative;
@@ -3217,21 +3263,24 @@ fieldset.amb-design-item-selected {
3217
3263
  position: relative;
3218
3264
  cursor: pointer;
3219
3265
  }
3266
+ .el-scrollbar__view:has(.amb-design-board) {
3267
+ padding: 0 15px;
3268
+ height: 100%;
3269
+ }
3220
3270
  .amb-design-board {
3271
+ min-height: 100%;
3221
3272
  margin: 0 auto;
3222
- margin-top: 12px;
3223
- overflow-y: hidden;
3224
- overflow-x: auto;
3225
3273
  background: #ffffff;
3226
3274
  border-radius: 2px 2px 2px 2px;
3227
3275
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
3228
3276
  padding-bottom: 100px;
3229
3277
  }
3230
3278
  .amb-item-ghost {
3231
- background-color: #5893ef;
3232
- height: 5px;
3233
- line-height: 5px;
3279
+ background-color: rgba(64, 158, 255, .1);
3234
3280
  overflow: hidden;
3281
+ }
3282
+ .amb-item-ghost > * {
3283
+ opacity: 0;
3235
3284
  }
3236
3285
  /* 将你的自定义样式添加到这里 */
3237
3286
  .draggable-placeholder {
@@ -3439,24 +3488,23 @@ fieldset.amb-design-item-selected {
3439
3488
  }
3440
3489
  /* 用于占位 */
3441
3490
  .amb-widget-tools-parent {
3442
- width: 100%;
3443
- min-height: 58px;
3444
- margin-bottom: 18px;
3491
+ width: 100%;
3445
3492
  }
3446
3493
  .amb-widget-tools {
3447
3494
  display: flex;
3495
+ flex-wrap: wrap;
3448
3496
  /* 垂直居中 */
3449
3497
  align-items: center;
3450
3498
  background: #fafafa;
3451
3499
  /* background:#FAFAFA; */
3452
3500
  /* background-color: var(--el-card-bg-color); */
3453
3501
  /* border:1px solid #e4e7ed; */
3454
- height: 58px;
3455
3502
  border-radius: 4px;
3456
3503
  width: transparent;
3457
3504
  padding-left: 20px;
3458
3505
  padding-right: 20px;
3459
3506
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
3507
+ min-height: 58px;
3460
3508
  /* --el-card-border-color: var(--el-border-color-light);
3461
3509
  --el-card-border-radius: 4px;
3462
3510
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -3588,8 +3636,7 @@ fieldset.amb-design-item-selected {
3588
3636
  color: var(--el-text-color-primary);
3589
3637
  overflow: hidden;
3590
3638
  transition: var(--el-transition-duration);
3591
- box-shadow: var(--el-box-shadow-light);
3592
- margin-bottom: 18px;
3639
+ box-shadow: var(--el-box-shadow-light);
3593
3640
  }
3594
3641
  .amb-widget-chart-header {
3595
3642
  border-bottom: 1px solid var(--el-card-border-color);
@@ -3607,9 +3654,6 @@ fieldset.amb-design-item-selected {
3607
3654
  vertical-align: middle;
3608
3655
  justify-content: center;
3609
3656
  }
3610
- .el-card {
3611
- margin-bottom: 18px;
3612
- }
3613
3657
  .el-collapse {
3614
3658
  margin-bottom: 18px;
3615
3659
  }
@@ -3634,9 +3678,6 @@ fieldset.amb-design-item-selected {
3634
3678
  }
3635
3679
  .el-button-group > .el-button {
3636
3680
  margin-right: 0px;
3637
- }
3638
- .el-form-item > .el-form-item__content {
3639
- padding-right: 18px;
3640
3681
  }
3641
3682
  /* 设计时样式 */
3642
3683
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -3669,7 +3710,8 @@ fieldset.amb-design-item-selected {
3669
3710
  line-height: 60px;
3670
3711
  background-color: #ffffff;
3671
3712
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
3672
- text-align: center;
3713
+ text-align: center;
3714
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
3673
3715
  }
3674
3716
  .amb-page-container-header-page {
3675
3717
  position: fixed;
@@ -3696,24 +3738,30 @@ fieldset.amb-design-item-selected {
3696
3738
  background: #5893ef;
3697
3739
  color: #ffffff;
3698
3740
  }
3741
+ .amb-page-container-header ~ .amb-page-container-main {
3742
+ height: calc(100vh - 60px);
3743
+ }
3699
3744
  .amb-page-container-main {
3700
3745
  position: relative;
3701
3746
  overflow: auto;
3702
3747
  }
3748
+ .amb-page-container-main > .el-container {
3749
+ height: 100%;
3750
+ }
3703
3751
  .amb-container-left {
3704
- padding-right: 20px;
3752
+ width: 280px !important;
3705
3753
  overflow-y: auto;
3706
3754
  }
3707
3755
  .amb-container-main {
3708
3756
  padding: 0px !important;
3709
- user-select: none;
3757
+ user-select: none;
3758
+ overflow: hidden;
3710
3759
  }
3711
3760
  .amb-container-main::-webkit-scrollbar {
3712
3761
  width: 1px;
3713
3762
  }
3714
3763
  .amb-container-attr {
3715
- width: 300px;
3716
- padding-left: 20px;
3764
+ width: 280px !important;
3717
3765
  }
3718
3766
  .amb-design-attr-base-content {
3719
3767
  background: #ffffff;
@@ -3746,21 +3794,20 @@ fieldset.amb-design-item-selected {
3746
3794
  }
3747
3795
  .amb-design-content {
3748
3796
  overflow: auto;
3749
- display: block;
3797
+ display: flex;
3798
+ flex-direction: column;
3750
3799
  flex: none;
3751
3800
  position: relative;
3752
- width: 100%;
3801
+ width: 100%;
3802
+ height: 100%;
3753
3803
  }
3754
3804
  .amb-design-content::-webkit-scrollbar {
3755
3805
  width: 1px;
3756
3806
  }
3757
3807
  .amb-design-content-center-header {
3758
- position: sticky;
3759
- z-index: 4;
3760
- top: 0;
3761
3808
  height: 54px;
3762
3809
  background-color: #f7f8fa;
3763
- padding-top: 14px;
3810
+ margin: 15px;
3764
3811
  }
3765
3812
  .amb-design-tool {
3766
3813
  position: relative;
@@ -3806,21 +3853,24 @@ fieldset.amb-design-item-selected {
3806
3853
  position: relative;
3807
3854
  cursor: pointer;
3808
3855
  }
3856
+ .el-scrollbar__view:has(.amb-design-board) {
3857
+ padding: 0 15px;
3858
+ height: 100%;
3859
+ }
3809
3860
  .amb-design-board {
3861
+ min-height: 100%;
3810
3862
  margin: 0 auto;
3811
- margin-top: 12px;
3812
- overflow-y: hidden;
3813
- overflow-x: auto;
3814
3863
  background: #ffffff;
3815
3864
  border-radius: 2px 2px 2px 2px;
3816
3865
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
3817
3866
  padding-bottom: 100px;
3818
3867
  }
3819
3868
  .amb-item-ghost {
3820
- background-color: #5893ef;
3821
- height: 5px;
3822
- line-height: 5px;
3869
+ background-color: rgba(64, 158, 255, .1);
3823
3870
  overflow: hidden;
3871
+ }
3872
+ .amb-item-ghost > * {
3873
+ opacity: 0;
3824
3874
  }
3825
3875
  /* 将你的自定义样式添加到这里 */
3826
3876
  .draggable-placeholder {
@@ -4028,24 +4078,23 @@ fieldset.amb-design-item-selected {
4028
4078
  }
4029
4079
  /* 用于占位 */
4030
4080
  .amb-widget-tools-parent {
4031
- width: 100%;
4032
- min-height: 58px;
4033
- margin-bottom: 18px;
4081
+ width: 100%;
4034
4082
  }
4035
4083
  .amb-widget-tools {
4036
4084
  display: flex;
4085
+ flex-wrap: wrap;
4037
4086
  /* 垂直居中 */
4038
4087
  align-items: center;
4039
4088
  background: #fafafa;
4040
4089
  /* background:#FAFAFA; */
4041
4090
  /* background-color: var(--el-card-bg-color); */
4042
4091
  /* border:1px solid #e4e7ed; */
4043
- height: 58px;
4044
4092
  border-radius: 4px;
4045
4093
  width: transparent;
4046
4094
  padding-left: 20px;
4047
4095
  padding-right: 20px;
4048
4096
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
4097
+ min-height: 58px;
4049
4098
  /* --el-card-border-color: var(--el-border-color-light);
4050
4099
  --el-card-border-radius: 4px;
4051
4100
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -4177,8 +4226,7 @@ fieldset.amb-design-item-selected {
4177
4226
  color: var(--el-text-color-primary);
4178
4227
  overflow: hidden;
4179
4228
  transition: var(--el-transition-duration);
4180
- box-shadow: var(--el-box-shadow-light);
4181
- margin-bottom: 18px;
4229
+ box-shadow: var(--el-box-shadow-light);
4182
4230
  }
4183
4231
  .amb-widget-chart-header {
4184
4232
  border-bottom: 1px solid var(--el-card-border-color);
@@ -4196,9 +4244,6 @@ fieldset.amb-design-item-selected {
4196
4244
  vertical-align: middle;
4197
4245
  justify-content: center;
4198
4246
  }
4199
- .el-card {
4200
- margin-bottom: 18px;
4201
- }
4202
4247
  .el-collapse {
4203
4248
  margin-bottom: 18px;
4204
4249
  }
@@ -4223,9 +4268,6 @@ fieldset.amb-design-item-selected {
4223
4268
  }
4224
4269
  .el-button-group > .el-button {
4225
4270
  margin-right: 0px;
4226
- }
4227
- .el-form-item > .el-form-item__content {
4228
- padding-right: 18px;
4229
4271
  }
4230
4272
  /* 设计时样式 */
4231
4273
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -4258,7 +4300,8 @@ fieldset.amb-design-item-selected {
4258
4300
  line-height: 60px;
4259
4301
  background-color: #ffffff;
4260
4302
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
4261
- text-align: center;
4303
+ text-align: center;
4304
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
4262
4305
  }
4263
4306
  .amb-page-container-header-page {
4264
4307
  position: fixed;
@@ -4285,24 +4328,30 @@ fieldset.amb-design-item-selected {
4285
4328
  background: #5893ef;
4286
4329
  color: #ffffff;
4287
4330
  }
4331
+ .amb-page-container-header ~ .amb-page-container-main {
4332
+ height: calc(100vh - 60px);
4333
+ }
4288
4334
  .amb-page-container-main {
4289
4335
  position: relative;
4290
4336
  overflow: auto;
4291
4337
  }
4338
+ .amb-page-container-main > .el-container {
4339
+ height: 100%;
4340
+ }
4292
4341
  .amb-container-left {
4293
- padding-right: 20px;
4342
+ width: 280px !important;
4294
4343
  overflow-y: auto;
4295
4344
  }
4296
4345
  .amb-container-main {
4297
4346
  padding: 0px !important;
4298
- user-select: none;
4347
+ user-select: none;
4348
+ overflow: hidden;
4299
4349
  }
4300
4350
  .amb-container-main::-webkit-scrollbar {
4301
4351
  width: 1px;
4302
4352
  }
4303
4353
  .amb-container-attr {
4304
- width: 300px;
4305
- padding-left: 20px;
4354
+ width: 280px !important;
4306
4355
  }
4307
4356
  .amb-design-attr-base-content {
4308
4357
  background: #ffffff;
@@ -4335,21 +4384,20 @@ fieldset.amb-design-item-selected {
4335
4384
  }
4336
4385
  .amb-design-content {
4337
4386
  overflow: auto;
4338
- display: block;
4387
+ display: flex;
4388
+ flex-direction: column;
4339
4389
  flex: none;
4340
4390
  position: relative;
4341
- width: 100%;
4391
+ width: 100%;
4392
+ height: 100%;
4342
4393
  }
4343
4394
  .amb-design-content::-webkit-scrollbar {
4344
4395
  width: 1px;
4345
4396
  }
4346
4397
  .amb-design-content-center-header {
4347
- position: sticky;
4348
- z-index: 4;
4349
- top: 0;
4350
4398
  height: 54px;
4351
4399
  background-color: #f7f8fa;
4352
- padding-top: 14px;
4400
+ margin: 15px;
4353
4401
  }
4354
4402
  .amb-design-tool {
4355
4403
  position: relative;
@@ -4395,21 +4443,24 @@ fieldset.amb-design-item-selected {
4395
4443
  position: relative;
4396
4444
  cursor: pointer;
4397
4445
  }
4446
+ .el-scrollbar__view:has(.amb-design-board) {
4447
+ padding: 0 15px;
4448
+ height: 100%;
4449
+ }
4398
4450
  .amb-design-board {
4451
+ min-height: 100%;
4399
4452
  margin: 0 auto;
4400
- margin-top: 12px;
4401
- overflow-y: hidden;
4402
- overflow-x: auto;
4403
4453
  background: #ffffff;
4404
4454
  border-radius: 2px 2px 2px 2px;
4405
4455
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
4406
4456
  padding-bottom: 100px;
4407
4457
  }
4408
4458
  .amb-item-ghost {
4409
- background-color: #5893ef;
4410
- height: 5px;
4411
- line-height: 5px;
4459
+ background-color: rgba(64, 158, 255, .1);
4412
4460
  overflow: hidden;
4461
+ }
4462
+ .amb-item-ghost > * {
4463
+ opacity: 0;
4413
4464
  }
4414
4465
  /* 将你的自定义样式添加到这里 */
4415
4466
  .draggable-placeholder {
@@ -4617,24 +4668,23 @@ fieldset.amb-design-item-selected {
4617
4668
  }
4618
4669
  /* 用于占位 */
4619
4670
  .amb-widget-tools-parent {
4620
- width: 100%;
4621
- min-height: 58px;
4622
- margin-bottom: 18px;
4671
+ width: 100%;
4623
4672
  }
4624
4673
  .amb-widget-tools {
4625
4674
  display: flex;
4675
+ flex-wrap: wrap;
4626
4676
  /* 垂直居中 */
4627
4677
  align-items: center;
4628
4678
  background: #fafafa;
4629
4679
  /* background:#FAFAFA; */
4630
4680
  /* background-color: var(--el-card-bg-color); */
4631
4681
  /* border:1px solid #e4e7ed; */
4632
- height: 58px;
4633
4682
  border-radius: 4px;
4634
4683
  width: transparent;
4635
4684
  padding-left: 20px;
4636
4685
  padding-right: 20px;
4637
4686
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
4687
+ min-height: 58px;
4638
4688
  /* --el-card-border-color: var(--el-border-color-light);
4639
4689
  --el-card-border-radius: 4px;
4640
4690
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -4766,8 +4816,7 @@ fieldset.amb-design-item-selected {
4766
4816
  color: var(--el-text-color-primary);
4767
4817
  overflow: hidden;
4768
4818
  transition: var(--el-transition-duration);
4769
- box-shadow: var(--el-box-shadow-light);
4770
- margin-bottom: 18px;
4819
+ box-shadow: var(--el-box-shadow-light);
4771
4820
  }
4772
4821
  .amb-widget-chart-header {
4773
4822
  border-bottom: 1px solid var(--el-card-border-color);
@@ -4785,9 +4834,6 @@ fieldset.amb-design-item-selected {
4785
4834
  vertical-align: middle;
4786
4835
  justify-content: center;
4787
4836
  }
4788
- .el-card {
4789
- margin-bottom: 18px;
4790
- }
4791
4837
  .el-collapse {
4792
4838
  margin-bottom: 18px;
4793
4839
  }
@@ -4812,9 +4858,6 @@ fieldset.amb-design-item-selected {
4812
4858
  }
4813
4859
  .el-button-group > .el-button {
4814
4860
  margin-right: 0px;
4815
- }
4816
- .el-form-item > .el-form-item__content {
4817
- padding-right: 18px;
4818
4861
  }
4819
4862
  /* 设计时样式 */
4820
4863
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -4851,7 +4894,8 @@ fieldset.amb-design-item-selected {
4851
4894
  line-height: 60px;
4852
4895
  background-color: #ffffff;
4853
4896
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
4854
- text-align: center;
4897
+ text-align: center;
4898
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
4855
4899
  }
4856
4900
  .amb-page-container-header-page {
4857
4901
  position: fixed;
@@ -4878,24 +4922,30 @@ fieldset.amb-design-item-selected {
4878
4922
  background: #5893ef;
4879
4923
  color: #ffffff;
4880
4924
  }
4925
+ .amb-page-container-header ~ .amb-page-container-main {
4926
+ height: calc(100vh - 60px);
4927
+ }
4881
4928
  .amb-page-container-main {
4882
4929
  position: relative;
4883
4930
  overflow: auto;
4884
4931
  }
4932
+ .amb-page-container-main > .el-container {
4933
+ height: 100%;
4934
+ }
4885
4935
  .amb-container-left {
4886
- padding-right: 20px;
4936
+ width: 280px !important;
4887
4937
  overflow-y: auto;
4888
4938
  }
4889
4939
  .amb-container-main {
4890
4940
  padding: 0px !important;
4891
- user-select: none;
4941
+ user-select: none;
4942
+ overflow: hidden;
4892
4943
  }
4893
4944
  .amb-container-main::-webkit-scrollbar {
4894
4945
  width: 1px;
4895
4946
  }
4896
4947
  .amb-container-attr {
4897
- width: 300px;
4898
- padding-left: 20px;
4948
+ width: 280px !important;
4899
4949
  }
4900
4950
  .amb-design-attr-base-content {
4901
4951
  background: #ffffff;
@@ -4928,21 +4978,20 @@ fieldset.amb-design-item-selected {
4928
4978
  }
4929
4979
  .amb-design-content {
4930
4980
  overflow: auto;
4931
- display: block;
4981
+ display: flex;
4982
+ flex-direction: column;
4932
4983
  flex: none;
4933
4984
  position: relative;
4934
- width: 100%;
4985
+ width: 100%;
4986
+ height: 100%;
4935
4987
  }
4936
4988
  .amb-design-content::-webkit-scrollbar {
4937
4989
  width: 1px;
4938
4990
  }
4939
4991
  .amb-design-content-center-header {
4940
- position: sticky;
4941
- z-index: 4;
4942
- top: 0;
4943
4992
  height: 54px;
4944
4993
  background-color: #f7f8fa;
4945
- padding-top: 14px;
4994
+ margin: 15px;
4946
4995
  }
4947
4996
  .amb-design-tool {
4948
4997
  position: relative;
@@ -4988,21 +5037,24 @@ fieldset.amb-design-item-selected {
4988
5037
  position: relative;
4989
5038
  cursor: pointer;
4990
5039
  }
5040
+ .el-scrollbar__view:has(.amb-design-board) {
5041
+ padding: 0 15px;
5042
+ height: 100%;
5043
+ }
4991
5044
  .amb-design-board {
5045
+ min-height: 100%;
4992
5046
  margin: 0 auto;
4993
- margin-top: 12px;
4994
- overflow-y: hidden;
4995
- overflow-x: auto;
4996
5047
  background: #ffffff;
4997
5048
  border-radius: 2px 2px 2px 2px;
4998
5049
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
4999
5050
  padding-bottom: 100px;
5000
5051
  }
5001
5052
  .amb-item-ghost {
5002
- background-color: #5893ef;
5003
- height: 5px;
5004
- line-height: 5px;
5053
+ background-color: rgba(64, 158, 255, .1);
5005
5054
  overflow: hidden;
5055
+ }
5056
+ .amb-item-ghost > * {
5057
+ opacity: 0;
5006
5058
  }
5007
5059
  /* 将你的自定义样式添加到这里 */
5008
5060
  .draggable-placeholder {
@@ -5210,24 +5262,23 @@ fieldset.amb-design-item-selected {
5210
5262
  }
5211
5263
  /* 用于占位 */
5212
5264
  .amb-widget-tools-parent {
5213
- width: 100%;
5214
- min-height: 58px;
5215
- margin-bottom: 18px;
5265
+ width: 100%;
5216
5266
  }
5217
5267
  .amb-widget-tools {
5218
5268
  display: flex;
5269
+ flex-wrap: wrap;
5219
5270
  /* 垂直居中 */
5220
5271
  align-items: center;
5221
5272
  background: #fafafa;
5222
5273
  /* background:#FAFAFA; */
5223
5274
  /* background-color: var(--el-card-bg-color); */
5224
5275
  /* border:1px solid #e4e7ed; */
5225
- height: 58px;
5226
5276
  border-radius: 4px;
5227
5277
  width: transparent;
5228
5278
  padding-left: 20px;
5229
5279
  padding-right: 20px;
5230
5280
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
5281
+ min-height: 58px;
5231
5282
  /* --el-card-border-color: var(--el-border-color-light);
5232
5283
  --el-card-border-radius: 4px;
5233
5284
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -5359,8 +5410,7 @@ fieldset.amb-design-item-selected {
5359
5410
  color: var(--el-text-color-primary);
5360
5411
  overflow: hidden;
5361
5412
  transition: var(--el-transition-duration);
5362
- box-shadow: var(--el-box-shadow-light);
5363
- margin-bottom: 18px;
5413
+ box-shadow: var(--el-box-shadow-light);
5364
5414
  }
5365
5415
  .amb-widget-chart-header {
5366
5416
  border-bottom: 1px solid var(--el-card-border-color);
@@ -5378,9 +5428,6 @@ fieldset.amb-design-item-selected {
5378
5428
  vertical-align: middle;
5379
5429
  justify-content: center;
5380
5430
  }
5381
- .el-card {
5382
- margin-bottom: 18px;
5383
- }
5384
5431
  .el-collapse {
5385
5432
  margin-bottom: 18px;
5386
5433
  }
@@ -5405,9 +5452,6 @@ fieldset.amb-design-item-selected {
5405
5452
  }
5406
5453
  .el-button-group > .el-button {
5407
5454
  margin-right: 0px;
5408
- }
5409
- .el-form-item > .el-form-item__content {
5410
- padding-right: 18px;
5411
5455
  }
5412
5456
  /* 设计时样式 */
5413
5457
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -5440,7 +5484,8 @@ fieldset.amb-design-item-selected {
5440
5484
  line-height: 60px;
5441
5485
  background-color: #ffffff;
5442
5486
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
5443
- text-align: center;
5487
+ text-align: center;
5488
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
5444
5489
  }
5445
5490
  .amb-page-container-header-page {
5446
5491
  position: fixed;
@@ -5467,24 +5512,30 @@ fieldset.amb-design-item-selected {
5467
5512
  background: #5893ef;
5468
5513
  color: #ffffff;
5469
5514
  }
5515
+ .amb-page-container-header ~ .amb-page-container-main {
5516
+ height: calc(100vh - 60px);
5517
+ }
5470
5518
  .amb-page-container-main {
5471
5519
  position: relative;
5472
5520
  overflow: auto;
5473
5521
  }
5522
+ .amb-page-container-main > .el-container {
5523
+ height: 100%;
5524
+ }
5474
5525
  .amb-container-left {
5475
- padding-right: 20px;
5526
+ width: 280px !important;
5476
5527
  overflow-y: auto;
5477
5528
  }
5478
5529
  .amb-container-main {
5479
5530
  padding: 0px !important;
5480
- user-select: none;
5531
+ user-select: none;
5532
+ overflow: hidden;
5481
5533
  }
5482
5534
  .amb-container-main::-webkit-scrollbar {
5483
5535
  width: 1px;
5484
5536
  }
5485
5537
  .amb-container-attr {
5486
- width: 300px;
5487
- padding-left: 20px;
5538
+ width: 280px !important;
5488
5539
  }
5489
5540
  .amb-design-attr-base-content {
5490
5541
  background: #ffffff;
@@ -5517,21 +5568,20 @@ fieldset.amb-design-item-selected {
5517
5568
  }
5518
5569
  .amb-design-content {
5519
5570
  overflow: auto;
5520
- display: block;
5571
+ display: flex;
5572
+ flex-direction: column;
5521
5573
  flex: none;
5522
5574
  position: relative;
5523
- width: 100%;
5575
+ width: 100%;
5576
+ height: 100%;
5524
5577
  }
5525
5578
  .amb-design-content::-webkit-scrollbar {
5526
5579
  width: 1px;
5527
5580
  }
5528
5581
  .amb-design-content-center-header {
5529
- position: sticky;
5530
- z-index: 4;
5531
- top: 0;
5532
5582
  height: 54px;
5533
5583
  background-color: #f7f8fa;
5534
- padding-top: 14px;
5584
+ margin: 15px;
5535
5585
  }
5536
5586
  .amb-design-tool {
5537
5587
  position: relative;
@@ -5577,21 +5627,24 @@ fieldset.amb-design-item-selected {
5577
5627
  position: relative;
5578
5628
  cursor: pointer;
5579
5629
  }
5630
+ .el-scrollbar__view:has(.amb-design-board) {
5631
+ padding: 0 15px;
5632
+ height: 100%;
5633
+ }
5580
5634
  .amb-design-board {
5635
+ min-height: 100%;
5581
5636
  margin: 0 auto;
5582
- margin-top: 12px;
5583
- overflow-y: hidden;
5584
- overflow-x: auto;
5585
5637
  background: #ffffff;
5586
5638
  border-radius: 2px 2px 2px 2px;
5587
5639
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
5588
5640
  padding-bottom: 100px;
5589
5641
  }
5590
5642
  .amb-item-ghost {
5591
- background-color: #5893ef;
5592
- height: 5px;
5593
- line-height: 5px;
5643
+ background-color: rgba(64, 158, 255, .1);
5594
5644
  overflow: hidden;
5645
+ }
5646
+ .amb-item-ghost > * {
5647
+ opacity: 0;
5595
5648
  }
5596
5649
  /* 将你的自定义样式添加到这里 */
5597
5650
  .draggable-placeholder {
@@ -5799,24 +5852,23 @@ fieldset.amb-design-item-selected {
5799
5852
  }
5800
5853
  /* 用于占位 */
5801
5854
  .amb-widget-tools-parent {
5802
- width: 100%;
5803
- min-height: 58px;
5804
- margin-bottom: 18px;
5855
+ width: 100%;
5805
5856
  }
5806
5857
  .amb-widget-tools {
5807
5858
  display: flex;
5859
+ flex-wrap: wrap;
5808
5860
  /* 垂直居中 */
5809
5861
  align-items: center;
5810
5862
  background: #fafafa;
5811
5863
  /* background:#FAFAFA; */
5812
5864
  /* background-color: var(--el-card-bg-color); */
5813
5865
  /* border:1px solid #e4e7ed; */
5814
- height: 58px;
5815
5866
  border-radius: 4px;
5816
5867
  width: transparent;
5817
5868
  padding-left: 20px;
5818
5869
  padding-right: 20px;
5819
5870
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
5871
+ min-height: 58px;
5820
5872
  /* --el-card-border-color: var(--el-border-color-light);
5821
5873
  --el-card-border-radius: 4px;
5822
5874
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -5948,8 +6000,7 @@ fieldset.amb-design-item-selected {
5948
6000
  color: var(--el-text-color-primary);
5949
6001
  overflow: hidden;
5950
6002
  transition: var(--el-transition-duration);
5951
- box-shadow: var(--el-box-shadow-light);
5952
- margin-bottom: 18px;
6003
+ box-shadow: var(--el-box-shadow-light);
5953
6004
  }
5954
6005
  .amb-widget-chart-header {
5955
6006
  border-bottom: 1px solid var(--el-card-border-color);
@@ -5967,9 +6018,6 @@ fieldset.amb-design-item-selected {
5967
6018
  vertical-align: middle;
5968
6019
  justify-content: center;
5969
6020
  }
5970
- .el-card {
5971
- margin-bottom: 18px;
5972
- }
5973
6021
  .el-collapse {
5974
6022
  margin-bottom: 18px;
5975
6023
  }
@@ -5994,9 +6042,6 @@ fieldset.amb-design-item-selected {
5994
6042
  }
5995
6043
  .el-button-group > .el-button {
5996
6044
  margin-right: 0px;
5997
- }
5998
- .el-form-item > .el-form-item__content {
5999
- padding-right: 18px;
6000
6045
  }
6001
6046
  /* 设计时样式 */
6002
6047
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -6029,7 +6074,8 @@ fieldset.amb-design-item-selected {
6029
6074
  line-height: 60px;
6030
6075
  background-color: #ffffff;
6031
6076
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
6032
- text-align: center;
6077
+ text-align: center;
6078
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
6033
6079
  }
6034
6080
  .amb-page-container-header-page {
6035
6081
  position: fixed;
@@ -6056,24 +6102,30 @@ fieldset.amb-design-item-selected {
6056
6102
  background: #5893ef;
6057
6103
  color: #ffffff;
6058
6104
  }
6105
+ .amb-page-container-header ~ .amb-page-container-main {
6106
+ height: calc(100vh - 60px);
6107
+ }
6059
6108
  .amb-page-container-main {
6060
6109
  position: relative;
6061
6110
  overflow: auto;
6062
6111
  }
6112
+ .amb-page-container-main > .el-container {
6113
+ height: 100%;
6114
+ }
6063
6115
  .amb-container-left {
6064
- padding-right: 20px;
6116
+ width: 280px !important;
6065
6117
  overflow-y: auto;
6066
6118
  }
6067
6119
  .amb-container-main {
6068
6120
  padding: 0px !important;
6069
- user-select: none;
6121
+ user-select: none;
6122
+ overflow: hidden;
6070
6123
  }
6071
6124
  .amb-container-main::-webkit-scrollbar {
6072
6125
  width: 1px;
6073
6126
  }
6074
6127
  .amb-container-attr {
6075
- width: 300px;
6076
- padding-left: 20px;
6128
+ width: 280px !important;
6077
6129
  }
6078
6130
  .amb-design-attr-base-content {
6079
6131
  background: #ffffff;
@@ -6106,21 +6158,20 @@ fieldset.amb-design-item-selected {
6106
6158
  }
6107
6159
  .amb-design-content {
6108
6160
  overflow: auto;
6109
- display: block;
6161
+ display: flex;
6162
+ flex-direction: column;
6110
6163
  flex: none;
6111
6164
  position: relative;
6112
- width: 100%;
6165
+ width: 100%;
6166
+ height: 100%;
6113
6167
  }
6114
6168
  .amb-design-content::-webkit-scrollbar {
6115
6169
  width: 1px;
6116
6170
  }
6117
6171
  .amb-design-content-center-header {
6118
- position: sticky;
6119
- z-index: 4;
6120
- top: 0;
6121
6172
  height: 54px;
6122
6173
  background-color: #f7f8fa;
6123
- padding-top: 14px;
6174
+ margin: 15px;
6124
6175
  }
6125
6176
  .amb-design-tool {
6126
6177
  position: relative;
@@ -6166,21 +6217,24 @@ fieldset.amb-design-item-selected {
6166
6217
  position: relative;
6167
6218
  cursor: pointer;
6168
6219
  }
6220
+ .el-scrollbar__view:has(.amb-design-board) {
6221
+ padding: 0 15px;
6222
+ height: 100%;
6223
+ }
6169
6224
  .amb-design-board {
6225
+ min-height: 100%;
6170
6226
  margin: 0 auto;
6171
- margin-top: 12px;
6172
- overflow-y: hidden;
6173
- overflow-x: auto;
6174
6227
  background: #ffffff;
6175
6228
  border-radius: 2px 2px 2px 2px;
6176
6229
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
6177
6230
  padding-bottom: 100px;
6178
6231
  }
6179
6232
  .amb-item-ghost {
6180
- background-color: #5893ef;
6181
- height: 5px;
6182
- line-height: 5px;
6233
+ background-color: rgba(64, 158, 255, .1);
6183
6234
  overflow: hidden;
6235
+ }
6236
+ .amb-item-ghost > * {
6237
+ opacity: 0;
6184
6238
  }
6185
6239
  /* 将你的自定义样式添加到这里 */
6186
6240
  .draggable-placeholder {
@@ -6388,24 +6442,23 @@ fieldset.amb-design-item-selected {
6388
6442
  }
6389
6443
  /* 用于占位 */
6390
6444
  .amb-widget-tools-parent {
6391
- width: 100%;
6392
- min-height: 58px;
6393
- margin-bottom: 18px;
6445
+ width: 100%;
6394
6446
  }
6395
6447
  .amb-widget-tools {
6396
6448
  display: flex;
6449
+ flex-wrap: wrap;
6397
6450
  /* 垂直居中 */
6398
6451
  align-items: center;
6399
6452
  background: #fafafa;
6400
6453
  /* background:#FAFAFA; */
6401
6454
  /* background-color: var(--el-card-bg-color); */
6402
6455
  /* border:1px solid #e4e7ed; */
6403
- height: 58px;
6404
6456
  border-radius: 4px;
6405
6457
  width: transparent;
6406
6458
  padding-left: 20px;
6407
6459
  padding-right: 20px;
6408
6460
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
6461
+ min-height: 58px;
6409
6462
  /* --el-card-border-color: var(--el-border-color-light);
6410
6463
  --el-card-border-radius: 4px;
6411
6464
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -6537,8 +6590,7 @@ fieldset.amb-design-item-selected {
6537
6590
  color: var(--el-text-color-primary);
6538
6591
  overflow: hidden;
6539
6592
  transition: var(--el-transition-duration);
6540
- box-shadow: var(--el-box-shadow-light);
6541
- margin-bottom: 18px;
6593
+ box-shadow: var(--el-box-shadow-light);
6542
6594
  }
6543
6595
  .amb-widget-chart-header {
6544
6596
  border-bottom: 1px solid var(--el-card-border-color);
@@ -6556,9 +6608,6 @@ fieldset.amb-design-item-selected {
6556
6608
  vertical-align: middle;
6557
6609
  justify-content: center;
6558
6610
  }
6559
- .el-card {
6560
- margin-bottom: 18px;
6561
- }
6562
6611
  .el-collapse {
6563
6612
  margin-bottom: 18px;
6564
6613
  }
@@ -6583,9 +6632,6 @@ fieldset.amb-design-item-selected {
6583
6632
  }
6584
6633
  .el-button-group > .el-button {
6585
6634
  margin-right: 0px;
6586
- }
6587
- .el-form-item > .el-form-item__content {
6588
- padding-right: 18px;
6589
6635
  }
6590
6636
  /* 设计时样式 */
6591
6637
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -6618,7 +6664,8 @@ fieldset.amb-design-item-selected {
6618
6664
  line-height: 60px;
6619
6665
  background-color: #ffffff;
6620
6666
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
6621
- text-align: center;
6667
+ text-align: center;
6668
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
6622
6669
  }
6623
6670
  .amb-page-container-header-page {
6624
6671
  position: fixed;
@@ -6645,24 +6692,30 @@ fieldset.amb-design-item-selected {
6645
6692
  background: #5893ef;
6646
6693
  color: #ffffff;
6647
6694
  }
6695
+ .amb-page-container-header ~ .amb-page-container-main {
6696
+ height: calc(100vh - 60px);
6697
+ }
6648
6698
  .amb-page-container-main {
6649
6699
  position: relative;
6650
6700
  overflow: auto;
6651
6701
  }
6702
+ .amb-page-container-main > .el-container {
6703
+ height: 100%;
6704
+ }
6652
6705
  .amb-container-left {
6653
- padding-right: 20px;
6706
+ width: 280px !important;
6654
6707
  overflow-y: auto;
6655
6708
  }
6656
6709
  .amb-container-main {
6657
6710
  padding: 0px !important;
6658
- user-select: none;
6711
+ user-select: none;
6712
+ overflow: hidden;
6659
6713
  }
6660
6714
  .amb-container-main::-webkit-scrollbar {
6661
6715
  width: 1px;
6662
6716
  }
6663
6717
  .amb-container-attr {
6664
- width: 300px;
6665
- padding-left: 20px;
6718
+ width: 280px !important;
6666
6719
  }
6667
6720
  .amb-design-attr-base-content {
6668
6721
  background: #ffffff;
@@ -6695,21 +6748,20 @@ fieldset.amb-design-item-selected {
6695
6748
  }
6696
6749
  .amb-design-content {
6697
6750
  overflow: auto;
6698
- display: block;
6751
+ display: flex;
6752
+ flex-direction: column;
6699
6753
  flex: none;
6700
6754
  position: relative;
6701
- width: 100%;
6755
+ width: 100%;
6756
+ height: 100%;
6702
6757
  }
6703
6758
  .amb-design-content::-webkit-scrollbar {
6704
6759
  width: 1px;
6705
6760
  }
6706
6761
  .amb-design-content-center-header {
6707
- position: sticky;
6708
- z-index: 4;
6709
- top: 0;
6710
6762
  height: 54px;
6711
6763
  background-color: #f7f8fa;
6712
- padding-top: 14px;
6764
+ margin: 15px;
6713
6765
  }
6714
6766
  .amb-design-tool {
6715
6767
  position: relative;
@@ -6755,21 +6807,24 @@ fieldset.amb-design-item-selected {
6755
6807
  position: relative;
6756
6808
  cursor: pointer;
6757
6809
  }
6810
+ .el-scrollbar__view:has(.amb-design-board) {
6811
+ padding: 0 15px;
6812
+ height: 100%;
6813
+ }
6758
6814
  .amb-design-board {
6815
+ min-height: 100%;
6759
6816
  margin: 0 auto;
6760
- margin-top: 12px;
6761
- overflow-y: hidden;
6762
- overflow-x: auto;
6763
6817
  background: #ffffff;
6764
6818
  border-radius: 2px 2px 2px 2px;
6765
6819
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
6766
6820
  padding-bottom: 100px;
6767
6821
  }
6768
6822
  .amb-item-ghost {
6769
- background-color: #5893ef;
6770
- height: 5px;
6771
- line-height: 5px;
6823
+ background-color: rgba(64, 158, 255, .1);
6772
6824
  overflow: hidden;
6825
+ }
6826
+ .amb-item-ghost > * {
6827
+ opacity: 0;
6773
6828
  }
6774
6829
  /* 将你的自定义样式添加到这里 */
6775
6830
  .draggable-placeholder {
@@ -6977,24 +7032,23 @@ fieldset.amb-design-item-selected {
6977
7032
  }
6978
7033
  /* 用于占位 */
6979
7034
  .amb-widget-tools-parent {
6980
- width: 100%;
6981
- min-height: 58px;
6982
- margin-bottom: 18px;
7035
+ width: 100%;
6983
7036
  }
6984
7037
  .amb-widget-tools {
6985
7038
  display: flex;
7039
+ flex-wrap: wrap;
6986
7040
  /* 垂直居中 */
6987
7041
  align-items: center;
6988
7042
  background: #fafafa;
6989
7043
  /* background:#FAFAFA; */
6990
7044
  /* background-color: var(--el-card-bg-color); */
6991
7045
  /* border:1px solid #e4e7ed; */
6992
- height: 58px;
6993
7046
  border-radius: 4px;
6994
7047
  width: transparent;
6995
7048
  padding-left: 20px;
6996
7049
  padding-right: 20px;
6997
7050
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
7051
+ min-height: 58px;
6998
7052
  /* --el-card-border-color: var(--el-border-color-light);
6999
7053
  --el-card-border-radius: 4px;
7000
7054
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -7126,8 +7180,7 @@ fieldset.amb-design-item-selected {
7126
7180
  color: var(--el-text-color-primary);
7127
7181
  overflow: hidden;
7128
7182
  transition: var(--el-transition-duration);
7129
- box-shadow: var(--el-box-shadow-light);
7130
- margin-bottom: 18px;
7183
+ box-shadow: var(--el-box-shadow-light);
7131
7184
  }
7132
7185
  .amb-widget-chart-header {
7133
7186
  border-bottom: 1px solid var(--el-card-border-color);
@@ -7145,9 +7198,6 @@ fieldset.amb-design-item-selected {
7145
7198
  vertical-align: middle;
7146
7199
  justify-content: center;
7147
7200
  }
7148
- .el-card {
7149
- margin-bottom: 18px;
7150
- }
7151
7201
  .el-collapse {
7152
7202
  margin-bottom: 18px;
7153
7203
  }
@@ -7172,9 +7222,6 @@ fieldset.amb-design-item-selected {
7172
7222
  }
7173
7223
  .el-button-group > .el-button {
7174
7224
  margin-right: 0px;
7175
- }
7176
- .el-form-item > .el-form-item__content {
7177
- padding-right: 18px;
7178
7225
  }
7179
7226
  /* 设计时样式 */
7180
7227
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -7207,7 +7254,8 @@ fieldset.amb-design-item-selected {
7207
7254
  line-height: 60px;
7208
7255
  background-color: #ffffff;
7209
7256
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
7210
- text-align: center;
7257
+ text-align: center;
7258
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
7211
7259
  }
7212
7260
  .amb-page-container-header-page {
7213
7261
  position: fixed;
@@ -7234,24 +7282,30 @@ fieldset.amb-design-item-selected {
7234
7282
  background: #5893ef;
7235
7283
  color: #ffffff;
7236
7284
  }
7285
+ .amb-page-container-header ~ .amb-page-container-main {
7286
+ height: calc(100vh - 60px);
7287
+ }
7237
7288
  .amb-page-container-main {
7238
7289
  position: relative;
7239
7290
  overflow: auto;
7240
7291
  }
7292
+ .amb-page-container-main > .el-container {
7293
+ height: 100%;
7294
+ }
7241
7295
  .amb-container-left {
7242
- padding-right: 20px;
7296
+ width: 280px !important;
7243
7297
  overflow-y: auto;
7244
7298
  }
7245
7299
  .amb-container-main {
7246
7300
  padding: 0px !important;
7247
- user-select: none;
7301
+ user-select: none;
7302
+ overflow: hidden;
7248
7303
  }
7249
7304
  .amb-container-main::-webkit-scrollbar {
7250
7305
  width: 1px;
7251
7306
  }
7252
7307
  .amb-container-attr {
7253
- width: 300px;
7254
- padding-left: 20px;
7308
+ width: 280px !important;
7255
7309
  }
7256
7310
  .amb-design-attr-base-content {
7257
7311
  background: #ffffff;
@@ -7284,21 +7338,20 @@ fieldset.amb-design-item-selected {
7284
7338
  }
7285
7339
  .amb-design-content {
7286
7340
  overflow: auto;
7287
- display: block;
7341
+ display: flex;
7342
+ flex-direction: column;
7288
7343
  flex: none;
7289
7344
  position: relative;
7290
- width: 100%;
7345
+ width: 100%;
7346
+ height: 100%;
7291
7347
  }
7292
7348
  .amb-design-content::-webkit-scrollbar {
7293
7349
  width: 1px;
7294
7350
  }
7295
7351
  .amb-design-content-center-header {
7296
- position: sticky;
7297
- z-index: 4;
7298
- top: 0;
7299
7352
  height: 54px;
7300
7353
  background-color: #f7f8fa;
7301
- padding-top: 14px;
7354
+ margin: 15px;
7302
7355
  }
7303
7356
  .amb-design-tool {
7304
7357
  position: relative;
@@ -7344,21 +7397,24 @@ fieldset.amb-design-item-selected {
7344
7397
  position: relative;
7345
7398
  cursor: pointer;
7346
7399
  }
7400
+ .el-scrollbar__view:has(.amb-design-board) {
7401
+ padding: 0 15px;
7402
+ height: 100%;
7403
+ }
7347
7404
  .amb-design-board {
7405
+ min-height: 100%;
7348
7406
  margin: 0 auto;
7349
- margin-top: 12px;
7350
- overflow-y: hidden;
7351
- overflow-x: auto;
7352
7407
  background: #ffffff;
7353
7408
  border-radius: 2px 2px 2px 2px;
7354
7409
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
7355
7410
  padding-bottom: 100px;
7356
7411
  }
7357
7412
  .amb-item-ghost {
7358
- background-color: #5893ef;
7359
- height: 5px;
7360
- line-height: 5px;
7413
+ background-color: rgba(64, 158, 255, .1);
7361
7414
  overflow: hidden;
7415
+ }
7416
+ .amb-item-ghost > * {
7417
+ opacity: 0;
7362
7418
  }
7363
7419
  /* 将你的自定义样式添加到这里 */
7364
7420
  .draggable-placeholder {
@@ -7566,24 +7622,23 @@ fieldset.amb-design-item-selected {
7566
7622
  }
7567
7623
  /* 用于占位 */
7568
7624
  .amb-widget-tools-parent {
7569
- width: 100%;
7570
- min-height: 58px;
7571
- margin-bottom: 18px;
7625
+ width: 100%;
7572
7626
  }
7573
7627
  .amb-widget-tools {
7574
7628
  display: flex;
7629
+ flex-wrap: wrap;
7575
7630
  /* 垂直居中 */
7576
7631
  align-items: center;
7577
7632
  background: #fafafa;
7578
7633
  /* background:#FAFAFA; */
7579
7634
  /* background-color: var(--el-card-bg-color); */
7580
7635
  /* border:1px solid #e4e7ed; */
7581
- height: 58px;
7582
7636
  border-radius: 4px;
7583
7637
  width: transparent;
7584
7638
  padding-left: 20px;
7585
7639
  padding-right: 20px;
7586
7640
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
7641
+ min-height: 58px;
7587
7642
  /* --el-card-border-color: var(--el-border-color-light);
7588
7643
  --el-card-border-radius: 4px;
7589
7644
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -7715,8 +7770,7 @@ fieldset.amb-design-item-selected {
7715
7770
  color: var(--el-text-color-primary);
7716
7771
  overflow: hidden;
7717
7772
  transition: var(--el-transition-duration);
7718
- box-shadow: var(--el-box-shadow-light);
7719
- margin-bottom: 18px;
7773
+ box-shadow: var(--el-box-shadow-light);
7720
7774
  }
7721
7775
  .amb-widget-chart-header {
7722
7776
  border-bottom: 1px solid var(--el-card-border-color);
@@ -7734,9 +7788,6 @@ fieldset.amb-design-item-selected {
7734
7788
  vertical-align: middle;
7735
7789
  justify-content: center;
7736
7790
  }
7737
- .el-card {
7738
- margin-bottom: 18px;
7739
- }
7740
7791
  .el-collapse {
7741
7792
  margin-bottom: 18px;
7742
7793
  }
@@ -7761,9 +7812,6 @@ fieldset.amb-design-item-selected {
7761
7812
  }
7762
7813
  .el-button-group > .el-button {
7763
7814
  margin-right: 0px;
7764
- }
7765
- .el-form-item > .el-form-item__content {
7766
- padding-right: 18px;
7767
7815
  }
7768
7816
  /* 设计时样式 */
7769
7817
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -7796,7 +7844,8 @@ fieldset.amb-design-item-selected {
7796
7844
  line-height: 60px;
7797
7845
  background-color: #ffffff;
7798
7846
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
7799
- text-align: center;
7847
+ text-align: center;
7848
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
7800
7849
  }
7801
7850
  .amb-page-container-header-page {
7802
7851
  position: fixed;
@@ -7823,24 +7872,30 @@ fieldset.amb-design-item-selected {
7823
7872
  background: #5893ef;
7824
7873
  color: #ffffff;
7825
7874
  }
7875
+ .amb-page-container-header ~ .amb-page-container-main {
7876
+ height: calc(100vh - 60px);
7877
+ }
7826
7878
  .amb-page-container-main {
7827
7879
  position: relative;
7828
7880
  overflow: auto;
7829
7881
  }
7882
+ .amb-page-container-main > .el-container {
7883
+ height: 100%;
7884
+ }
7830
7885
  .amb-container-left {
7831
- padding-right: 20px;
7886
+ width: 280px !important;
7832
7887
  overflow-y: auto;
7833
7888
  }
7834
7889
  .amb-container-main {
7835
7890
  padding: 0px !important;
7836
- user-select: none;
7891
+ user-select: none;
7892
+ overflow: hidden;
7837
7893
  }
7838
7894
  .amb-container-main::-webkit-scrollbar {
7839
7895
  width: 1px;
7840
7896
  }
7841
7897
  .amb-container-attr {
7842
- width: 300px;
7843
- padding-left: 20px;
7898
+ width: 280px !important;
7844
7899
  }
7845
7900
  .amb-design-attr-base-content {
7846
7901
  background: #ffffff;
@@ -7873,21 +7928,20 @@ fieldset.amb-design-item-selected {
7873
7928
  }
7874
7929
  .amb-design-content {
7875
7930
  overflow: auto;
7876
- display: block;
7931
+ display: flex;
7932
+ flex-direction: column;
7877
7933
  flex: none;
7878
7934
  position: relative;
7879
- width: 100%;
7935
+ width: 100%;
7936
+ height: 100%;
7880
7937
  }
7881
7938
  .amb-design-content::-webkit-scrollbar {
7882
7939
  width: 1px;
7883
7940
  }
7884
7941
  .amb-design-content-center-header {
7885
- position: sticky;
7886
- z-index: 4;
7887
- top: 0;
7888
7942
  height: 54px;
7889
7943
  background-color: #f7f8fa;
7890
- padding-top: 14px;
7944
+ margin: 15px;
7891
7945
  }
7892
7946
  .amb-design-tool {
7893
7947
  position: relative;
@@ -7933,21 +7987,24 @@ fieldset.amb-design-item-selected {
7933
7987
  position: relative;
7934
7988
  cursor: pointer;
7935
7989
  }
7990
+ .el-scrollbar__view:has(.amb-design-board) {
7991
+ padding: 0 15px;
7992
+ height: 100%;
7993
+ }
7936
7994
  .amb-design-board {
7995
+ min-height: 100%;
7937
7996
  margin: 0 auto;
7938
- margin-top: 12px;
7939
- overflow-y: hidden;
7940
- overflow-x: auto;
7941
7997
  background: #ffffff;
7942
7998
  border-radius: 2px 2px 2px 2px;
7943
7999
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
7944
8000
  padding-bottom: 100px;
7945
8001
  }
7946
8002
  .amb-item-ghost {
7947
- background-color: #5893ef;
7948
- height: 5px;
7949
- line-height: 5px;
8003
+ background-color: rgba(64, 158, 255, .1);
7950
8004
  overflow: hidden;
8005
+ }
8006
+ .amb-item-ghost > * {
8007
+ opacity: 0;
7951
8008
  }
7952
8009
  /* 将你的自定义样式添加到这里 */
7953
8010
  .draggable-placeholder {
@@ -8155,24 +8212,23 @@ fieldset.amb-design-item-selected {
8155
8212
  }
8156
8213
  /* 用于占位 */
8157
8214
  .amb-widget-tools-parent {
8158
- width: 100%;
8159
- min-height: 58px;
8160
- margin-bottom: 18px;
8215
+ width: 100%;
8161
8216
  }
8162
8217
  .amb-widget-tools {
8163
8218
  display: flex;
8219
+ flex-wrap: wrap;
8164
8220
  /* 垂直居中 */
8165
8221
  align-items: center;
8166
8222
  background: #fafafa;
8167
8223
  /* background:#FAFAFA; */
8168
8224
  /* background-color: var(--el-card-bg-color); */
8169
8225
  /* border:1px solid #e4e7ed; */
8170
- height: 58px;
8171
8226
  border-radius: 4px;
8172
8227
  width: transparent;
8173
8228
  padding-left: 20px;
8174
8229
  padding-right: 20px;
8175
8230
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
8231
+ min-height: 58px;
8176
8232
  /* --el-card-border-color: var(--el-border-color-light);
8177
8233
  --el-card-border-radius: 4px;
8178
8234
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -8304,8 +8360,7 @@ fieldset.amb-design-item-selected {
8304
8360
  color: var(--el-text-color-primary);
8305
8361
  overflow: hidden;
8306
8362
  transition: var(--el-transition-duration);
8307
- box-shadow: var(--el-box-shadow-light);
8308
- margin-bottom: 18px;
8363
+ box-shadow: var(--el-box-shadow-light);
8309
8364
  }
8310
8365
  .amb-widget-chart-header {
8311
8366
  border-bottom: 1px solid var(--el-card-border-color);
@@ -8323,9 +8378,6 @@ fieldset.amb-design-item-selected {
8323
8378
  vertical-align: middle;
8324
8379
  justify-content: center;
8325
8380
  }
8326
- .el-card {
8327
- margin-bottom: 18px;
8328
- }
8329
8381
  .el-collapse {
8330
8382
  margin-bottom: 18px;
8331
8383
  }
@@ -8350,9 +8402,6 @@ fieldset.amb-design-item-selected {
8350
8402
  }
8351
8403
  .el-button-group > .el-button {
8352
8404
  margin-right: 0px;
8353
- }
8354
- .el-form-item > .el-form-item__content {
8355
- padding-right: 18px;
8356
8405
  }
8357
8406
  /* 设计时样式 */
8358
8407
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -8422,7 +8471,8 @@ fieldset.amb-design-item-selected {
8422
8471
  line-height: 60px;
8423
8472
  background-color: #ffffff;
8424
8473
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
8425
- text-align: center;
8474
+ text-align: center;
8475
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
8426
8476
  }
8427
8477
  .amb-page-container-header-page {
8428
8478
  position: fixed;
@@ -8449,24 +8499,30 @@ fieldset.amb-design-item-selected {
8449
8499
  background: #5893ef;
8450
8500
  color: #ffffff;
8451
8501
  }
8502
+ .amb-page-container-header ~ .amb-page-container-main {
8503
+ height: calc(100vh - 60px);
8504
+ }
8452
8505
  .amb-page-container-main {
8453
8506
  position: relative;
8454
8507
  overflow: auto;
8455
8508
  }
8509
+ .amb-page-container-main > .el-container {
8510
+ height: 100%;
8511
+ }
8456
8512
  .amb-container-left {
8457
- padding-right: 20px;
8513
+ width: 280px !important;
8458
8514
  overflow-y: auto;
8459
8515
  }
8460
8516
  .amb-container-main {
8461
8517
  padding: 0px !important;
8462
- user-select: none;
8518
+ user-select: none;
8519
+ overflow: hidden;
8463
8520
  }
8464
8521
  .amb-container-main::-webkit-scrollbar {
8465
8522
  width: 1px;
8466
8523
  }
8467
8524
  .amb-container-attr {
8468
- width: 300px;
8469
- padding-left: 20px;
8525
+ width: 280px !important;
8470
8526
  }
8471
8527
  .amb-design-attr-base-content {
8472
8528
  background: #ffffff;
@@ -8499,21 +8555,20 @@ fieldset.amb-design-item-selected {
8499
8555
  }
8500
8556
  .amb-design-content {
8501
8557
  overflow: auto;
8502
- display: block;
8558
+ display: flex;
8559
+ flex-direction: column;
8503
8560
  flex: none;
8504
8561
  position: relative;
8505
- width: 100%;
8562
+ width: 100%;
8563
+ height: 100%;
8506
8564
  }
8507
8565
  .amb-design-content::-webkit-scrollbar {
8508
8566
  width: 1px;
8509
8567
  }
8510
8568
  .amb-design-content-center-header {
8511
- position: sticky;
8512
- z-index: 4;
8513
- top: 0;
8514
8569
  height: 54px;
8515
8570
  background-color: #f7f8fa;
8516
- padding-top: 14px;
8571
+ margin: 15px;
8517
8572
  }
8518
8573
  .amb-design-tool {
8519
8574
  position: relative;
@@ -8559,21 +8614,24 @@ fieldset.amb-design-item-selected {
8559
8614
  position: relative;
8560
8615
  cursor: pointer;
8561
8616
  }
8617
+ .el-scrollbar__view:has(.amb-design-board) {
8618
+ padding: 0 15px;
8619
+ height: 100%;
8620
+ }
8562
8621
  .amb-design-board {
8622
+ min-height: 100%;
8563
8623
  margin: 0 auto;
8564
- margin-top: 12px;
8565
- overflow-y: hidden;
8566
- overflow-x: auto;
8567
8624
  background: #ffffff;
8568
8625
  border-radius: 2px 2px 2px 2px;
8569
8626
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
8570
8627
  padding-bottom: 100px;
8571
8628
  }
8572
8629
  .amb-item-ghost {
8573
- background-color: #5893ef;
8574
- height: 5px;
8575
- line-height: 5px;
8630
+ background-color: rgba(64, 158, 255, .1);
8576
8631
  overflow: hidden;
8632
+ }
8633
+ .amb-item-ghost > * {
8634
+ opacity: 0;
8577
8635
  }
8578
8636
  /* 将你的自定义样式添加到这里 */
8579
8637
  .draggable-placeholder {
@@ -8781,24 +8839,23 @@ fieldset.amb-design-item-selected {
8781
8839
  }
8782
8840
  /* 用于占位 */
8783
8841
  .amb-widget-tools-parent {
8784
- width: 100%;
8785
- min-height: 58px;
8786
- margin-bottom: 18px;
8842
+ width: 100%;
8787
8843
  }
8788
8844
  .amb-widget-tools {
8789
8845
  display: flex;
8846
+ flex-wrap: wrap;
8790
8847
  /* 垂直居中 */
8791
8848
  align-items: center;
8792
8849
  background: #fafafa;
8793
8850
  /* background:#FAFAFA; */
8794
8851
  /* background-color: var(--el-card-bg-color); */
8795
8852
  /* border:1px solid #e4e7ed; */
8796
- height: 58px;
8797
8853
  border-radius: 4px;
8798
8854
  width: transparent;
8799
8855
  padding-left: 20px;
8800
8856
  padding-right: 20px;
8801
8857
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
8858
+ min-height: 58px;
8802
8859
  /* --el-card-border-color: var(--el-border-color-light);
8803
8860
  --el-card-border-radius: 4px;
8804
8861
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -8930,8 +8987,7 @@ fieldset.amb-design-item-selected {
8930
8987
  color: var(--el-text-color-primary);
8931
8988
  overflow: hidden;
8932
8989
  transition: var(--el-transition-duration);
8933
- box-shadow: var(--el-box-shadow-light);
8934
- margin-bottom: 18px;
8990
+ box-shadow: var(--el-box-shadow-light);
8935
8991
  }
8936
8992
  .amb-widget-chart-header {
8937
8993
  border-bottom: 1px solid var(--el-card-border-color);
@@ -8949,9 +9005,6 @@ fieldset.amb-design-item-selected {
8949
9005
  vertical-align: middle;
8950
9006
  justify-content: center;
8951
9007
  }
8952
- .el-card {
8953
- margin-bottom: 18px;
8954
- }
8955
9008
  .el-collapse {
8956
9009
  margin-bottom: 18px;
8957
9010
  }
@@ -8976,9 +9029,6 @@ fieldset.amb-design-item-selected {
8976
9029
  }
8977
9030
  .el-button-group > .el-button {
8978
9031
  margin-right: 0px;
8979
- }
8980
- .el-form-item > .el-form-item__content {
8981
- padding-right: 18px;
8982
9032
  }
8983
9033
  /* 设计时样式 */
8984
9034
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -9125,7 +9175,8 @@ li[data-v-dbd1c08b] {
9125
9175
  line-height: 60px;
9126
9176
  background-color: #ffffff;
9127
9177
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
9128
- text-align: center;
9178
+ text-align: center;
9179
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
9129
9180
  }
9130
9181
  .amb-page-container-header-page {
9131
9182
  position: fixed;
@@ -9152,24 +9203,30 @@ li[data-v-dbd1c08b] {
9152
9203
  background: #5893ef;
9153
9204
  color: #ffffff;
9154
9205
  }
9206
+ .amb-page-container-header ~ .amb-page-container-main {
9207
+ height: calc(100vh - 60px);
9208
+ }
9155
9209
  .amb-page-container-main {
9156
9210
  position: relative;
9157
9211
  overflow: auto;
9158
9212
  }
9213
+ .amb-page-container-main > .el-container {
9214
+ height: 100%;
9215
+ }
9159
9216
  .amb-container-left {
9160
- padding-right: 20px;
9217
+ width: 280px !important;
9161
9218
  overflow-y: auto;
9162
9219
  }
9163
9220
  .amb-container-main {
9164
9221
  padding: 0px !important;
9165
- user-select: none;
9222
+ user-select: none;
9223
+ overflow: hidden;
9166
9224
  }
9167
9225
  .amb-container-main::-webkit-scrollbar {
9168
9226
  width: 1px;
9169
9227
  }
9170
9228
  .amb-container-attr {
9171
- width: 300px;
9172
- padding-left: 20px;
9229
+ width: 280px !important;
9173
9230
  }
9174
9231
  .amb-design-attr-base-content {
9175
9232
  background: #ffffff;
@@ -9202,21 +9259,20 @@ li[data-v-dbd1c08b] {
9202
9259
  }
9203
9260
  .amb-design-content {
9204
9261
  overflow: auto;
9205
- display: block;
9262
+ display: flex;
9263
+ flex-direction: column;
9206
9264
  flex: none;
9207
9265
  position: relative;
9208
- width: 100%;
9266
+ width: 100%;
9267
+ height: 100%;
9209
9268
  }
9210
9269
  .amb-design-content::-webkit-scrollbar {
9211
9270
  width: 1px;
9212
9271
  }
9213
9272
  .amb-design-content-center-header {
9214
- position: sticky;
9215
- z-index: 4;
9216
- top: 0;
9217
9273
  height: 54px;
9218
9274
  background-color: #f7f8fa;
9219
- padding-top: 14px;
9275
+ margin: 15px;
9220
9276
  }
9221
9277
  .amb-design-tool {
9222
9278
  position: relative;
@@ -9262,21 +9318,24 @@ li[data-v-dbd1c08b] {
9262
9318
  position: relative;
9263
9319
  cursor: pointer;
9264
9320
  }
9321
+ .el-scrollbar__view:has(.amb-design-board) {
9322
+ padding: 0 15px;
9323
+ height: 100%;
9324
+ }
9265
9325
  .amb-design-board {
9326
+ min-height: 100%;
9266
9327
  margin: 0 auto;
9267
- margin-top: 12px;
9268
- overflow-y: hidden;
9269
- overflow-x: auto;
9270
9328
  background: #ffffff;
9271
9329
  border-radius: 2px 2px 2px 2px;
9272
9330
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
9273
9331
  padding-bottom: 100px;
9274
9332
  }
9275
9333
  .amb-item-ghost {
9276
- background-color: #5893ef;
9277
- height: 5px;
9278
- line-height: 5px;
9334
+ background-color: rgba(64, 158, 255, .1);
9279
9335
  overflow: hidden;
9336
+ }
9337
+ .amb-item-ghost > * {
9338
+ opacity: 0;
9280
9339
  }
9281
9340
  /* 将你的自定义样式添加到这里 */
9282
9341
  .draggable-placeholder {
@@ -9484,24 +9543,23 @@ li[data-v-dbd1c08b] {
9484
9543
  }
9485
9544
  /* 用于占位 */
9486
9545
  .amb-widget-tools-parent {
9487
- width: 100%;
9488
- min-height: 58px;
9489
- margin-bottom: 18px;
9546
+ width: 100%;
9490
9547
  }
9491
9548
  .amb-widget-tools {
9492
9549
  display: flex;
9550
+ flex-wrap: wrap;
9493
9551
  /* 垂直居中 */
9494
9552
  align-items: center;
9495
9553
  background: #fafafa;
9496
9554
  /* background:#FAFAFA; */
9497
9555
  /* background-color: var(--el-card-bg-color); */
9498
9556
  /* border:1px solid #e4e7ed; */
9499
- height: 58px;
9500
9557
  border-radius: 4px;
9501
9558
  width: transparent;
9502
9559
  padding-left: 20px;
9503
9560
  padding-right: 20px;
9504
9561
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
9562
+ min-height: 58px;
9505
9563
  /* --el-card-border-color: var(--el-border-color-light);
9506
9564
  --el-card-border-radius: 4px;
9507
9565
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -9633,8 +9691,7 @@ fieldset.amb-design-item-selected {
9633
9691
  color: var(--el-text-color-primary);
9634
9692
  overflow: hidden;
9635
9693
  transition: var(--el-transition-duration);
9636
- box-shadow: var(--el-box-shadow-light);
9637
- margin-bottom: 18px;
9694
+ box-shadow: var(--el-box-shadow-light);
9638
9695
  }
9639
9696
  .amb-widget-chart-header {
9640
9697
  border-bottom: 1px solid var(--el-card-border-color);
@@ -9652,9 +9709,6 @@ fieldset.amb-design-item-selected {
9652
9709
  vertical-align: middle;
9653
9710
  justify-content: center;
9654
9711
  }
9655
- .el-card {
9656
- margin-bottom: 18px;
9657
- }
9658
9712
  .el-collapse {
9659
9713
  margin-bottom: 18px;
9660
9714
  }
@@ -9679,9 +9733,6 @@ fieldset.amb-design-item-selected {
9679
9733
  }
9680
9734
  .el-button-group > .el-button {
9681
9735
  margin-right: 0px;
9682
- }
9683
- .el-form-item > .el-form-item__content {
9684
- padding-right: 18px;
9685
9736
  }
9686
9737
  /* 设计时样式 */
9687
9738
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -9707,12 +9758,12 @@ fieldset.amb-design-item-selected {
9707
9758
  font-weight: bold;
9708
9759
  }
9709
9760
 
9710
- .seleteSort[data-v-1fd3d630] {
9711
- border-radius: 5px;
9712
- border: 1px solid rgba(88, 147, 239);
9761
+ .seleteSort[data-v-c07fe584] {
9762
+ border-radius: 5px;
9763
+ border: 1px solid rgba(88, 147, 239);
9713
9764
  }
9714
- [data-v-1fd3d630] .el-select__selection{
9715
- display: inline-block;
9765
+ [data-v-c07fe584] .el-select__selection {
9766
+ display: inline-block;
9716
9767
  }
9717
9768
  .el-tree-node__content {
9718
9769
  height: 34px !important;
@@ -9722,7 +9773,8 @@ fieldset.amb-design-item-selected {
9722
9773
  line-height: 60px;
9723
9774
  background-color: #ffffff;
9724
9775
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
9725
- text-align: center;
9776
+ text-align: center;
9777
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
9726
9778
  }
9727
9779
  .amb-page-container-header-page {
9728
9780
  position: fixed;
@@ -9749,24 +9801,30 @@ fieldset.amb-design-item-selected {
9749
9801
  background: #5893ef;
9750
9802
  color: #ffffff;
9751
9803
  }
9804
+ .amb-page-container-header ~ .amb-page-container-main {
9805
+ height: calc(100vh - 60px);
9806
+ }
9752
9807
  .amb-page-container-main {
9753
9808
  position: relative;
9754
9809
  overflow: auto;
9755
9810
  }
9811
+ .amb-page-container-main > .el-container {
9812
+ height: 100%;
9813
+ }
9756
9814
  .amb-container-left {
9757
- padding-right: 20px;
9815
+ width: 280px !important;
9758
9816
  overflow-y: auto;
9759
9817
  }
9760
9818
  .amb-container-main {
9761
9819
  padding: 0px !important;
9762
- user-select: none;
9820
+ user-select: none;
9821
+ overflow: hidden;
9763
9822
  }
9764
9823
  .amb-container-main::-webkit-scrollbar {
9765
9824
  width: 1px;
9766
9825
  }
9767
9826
  .amb-container-attr {
9768
- width: 300px;
9769
- padding-left: 20px;
9827
+ width: 280px !important;
9770
9828
  }
9771
9829
  .amb-design-attr-base-content {
9772
9830
  background: #ffffff;
@@ -9799,21 +9857,20 @@ fieldset.amb-design-item-selected {
9799
9857
  }
9800
9858
  .amb-design-content {
9801
9859
  overflow: auto;
9802
- display: block;
9860
+ display: flex;
9861
+ flex-direction: column;
9803
9862
  flex: none;
9804
9863
  position: relative;
9805
- width: 100%;
9864
+ width: 100%;
9865
+ height: 100%;
9806
9866
  }
9807
9867
  .amb-design-content::-webkit-scrollbar {
9808
9868
  width: 1px;
9809
9869
  }
9810
9870
  .amb-design-content-center-header {
9811
- position: sticky;
9812
- z-index: 4;
9813
- top: 0;
9814
9871
  height: 54px;
9815
9872
  background-color: #f7f8fa;
9816
- padding-top: 14px;
9873
+ margin: 15px;
9817
9874
  }
9818
9875
  .amb-design-tool {
9819
9876
  position: relative;
@@ -9859,21 +9916,24 @@ fieldset.amb-design-item-selected {
9859
9916
  position: relative;
9860
9917
  cursor: pointer;
9861
9918
  }
9919
+ .el-scrollbar__view:has(.amb-design-board) {
9920
+ padding: 0 15px;
9921
+ height: 100%;
9922
+ }
9862
9923
  .amb-design-board {
9924
+ min-height: 100%;
9863
9925
  margin: 0 auto;
9864
- margin-top: 12px;
9865
- overflow-y: hidden;
9866
- overflow-x: auto;
9867
9926
  background: #ffffff;
9868
9927
  border-radius: 2px 2px 2px 2px;
9869
9928
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
9870
9929
  padding-bottom: 100px;
9871
9930
  }
9872
9931
  .amb-item-ghost {
9873
- background-color: #5893ef;
9874
- height: 5px;
9875
- line-height: 5px;
9932
+ background-color: rgba(64, 158, 255, .1);
9876
9933
  overflow: hidden;
9934
+ }
9935
+ .amb-item-ghost > * {
9936
+ opacity: 0;
9877
9937
  }
9878
9938
  /* 将你的自定义样式添加到这里 */
9879
9939
  .draggable-placeholder {
@@ -10081,24 +10141,23 @@ fieldset.amb-design-item-selected {
10081
10141
  }
10082
10142
  /* 用于占位 */
10083
10143
  .amb-widget-tools-parent {
10084
- width: 100%;
10085
- min-height: 58px;
10086
- margin-bottom: 18px;
10144
+ width: 100%;
10087
10145
  }
10088
10146
  .amb-widget-tools {
10089
10147
  display: flex;
10148
+ flex-wrap: wrap;
10090
10149
  /* 垂直居中 */
10091
10150
  align-items: center;
10092
10151
  background: #fafafa;
10093
10152
  /* background:#FAFAFA; */
10094
10153
  /* background-color: var(--el-card-bg-color); */
10095
10154
  /* border:1px solid #e4e7ed; */
10096
- height: 58px;
10097
10155
  border-radius: 4px;
10098
10156
  width: transparent;
10099
10157
  padding-left: 20px;
10100
10158
  padding-right: 20px;
10101
10159
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
10160
+ min-height: 58px;
10102
10161
  /* --el-card-border-color: var(--el-border-color-light);
10103
10162
  --el-card-border-radius: 4px;
10104
10163
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -10230,8 +10289,7 @@ fieldset.amb-design-item-selected {
10230
10289
  color: var(--el-text-color-primary);
10231
10290
  overflow: hidden;
10232
10291
  transition: var(--el-transition-duration);
10233
- box-shadow: var(--el-box-shadow-light);
10234
- margin-bottom: 18px;
10292
+ box-shadow: var(--el-box-shadow-light);
10235
10293
  }
10236
10294
  .amb-widget-chart-header {
10237
10295
  border-bottom: 1px solid var(--el-card-border-color);
@@ -10249,9 +10307,6 @@ fieldset.amb-design-item-selected {
10249
10307
  vertical-align: middle;
10250
10308
  justify-content: center;
10251
10309
  }
10252
- .el-card {
10253
- margin-bottom: 18px;
10254
- }
10255
10310
  .el-collapse {
10256
10311
  margin-bottom: 18px;
10257
10312
  }
@@ -10276,9 +10331,6 @@ fieldset.amb-design-item-selected {
10276
10331
  }
10277
10332
  .el-button-group > .el-button {
10278
10333
  margin-right: 0px;
10279
- }
10280
- .el-form-item > .el-form-item__content {
10281
- padding-right: 18px;
10282
10334
  }
10283
10335
  /* 设计时样式 */
10284
10336
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -10311,7 +10363,8 @@ fieldset.amb-design-item-selected {
10311
10363
  line-height: 60px;
10312
10364
  background-color: #ffffff;
10313
10365
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
10314
- text-align: center;
10366
+ text-align: center;
10367
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
10315
10368
  }
10316
10369
  .amb-page-container-header-page {
10317
10370
  position: fixed;
@@ -10338,24 +10391,30 @@ fieldset.amb-design-item-selected {
10338
10391
  background: #5893ef;
10339
10392
  color: #ffffff;
10340
10393
  }
10394
+ .amb-page-container-header ~ .amb-page-container-main {
10395
+ height: calc(100vh - 60px);
10396
+ }
10341
10397
  .amb-page-container-main {
10342
10398
  position: relative;
10343
10399
  overflow: auto;
10344
10400
  }
10401
+ .amb-page-container-main > .el-container {
10402
+ height: 100%;
10403
+ }
10345
10404
  .amb-container-left {
10346
- padding-right: 20px;
10405
+ width: 280px !important;
10347
10406
  overflow-y: auto;
10348
10407
  }
10349
10408
  .amb-container-main {
10350
10409
  padding: 0px !important;
10351
- user-select: none;
10410
+ user-select: none;
10411
+ overflow: hidden;
10352
10412
  }
10353
10413
  .amb-container-main::-webkit-scrollbar {
10354
10414
  width: 1px;
10355
10415
  }
10356
10416
  .amb-container-attr {
10357
- width: 300px;
10358
- padding-left: 20px;
10417
+ width: 280px !important;
10359
10418
  }
10360
10419
  .amb-design-attr-base-content {
10361
10420
  background: #ffffff;
@@ -10388,21 +10447,20 @@ fieldset.amb-design-item-selected {
10388
10447
  }
10389
10448
  .amb-design-content {
10390
10449
  overflow: auto;
10391
- display: block;
10450
+ display: flex;
10451
+ flex-direction: column;
10392
10452
  flex: none;
10393
10453
  position: relative;
10394
- width: 100%;
10454
+ width: 100%;
10455
+ height: 100%;
10395
10456
  }
10396
10457
  .amb-design-content::-webkit-scrollbar {
10397
10458
  width: 1px;
10398
10459
  }
10399
10460
  .amb-design-content-center-header {
10400
- position: sticky;
10401
- z-index: 4;
10402
- top: 0;
10403
10461
  height: 54px;
10404
10462
  background-color: #f7f8fa;
10405
- padding-top: 14px;
10463
+ margin: 15px;
10406
10464
  }
10407
10465
  .amb-design-tool {
10408
10466
  position: relative;
@@ -10448,21 +10506,24 @@ fieldset.amb-design-item-selected {
10448
10506
  position: relative;
10449
10507
  cursor: pointer;
10450
10508
  }
10509
+ .el-scrollbar__view:has(.amb-design-board) {
10510
+ padding: 0 15px;
10511
+ height: 100%;
10512
+ }
10451
10513
  .amb-design-board {
10514
+ min-height: 100%;
10452
10515
  margin: 0 auto;
10453
- margin-top: 12px;
10454
- overflow-y: hidden;
10455
- overflow-x: auto;
10456
10516
  background: #ffffff;
10457
10517
  border-radius: 2px 2px 2px 2px;
10458
10518
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
10459
10519
  padding-bottom: 100px;
10460
10520
  }
10461
10521
  .amb-item-ghost {
10462
- background-color: #5893ef;
10463
- height: 5px;
10464
- line-height: 5px;
10522
+ background-color: rgba(64, 158, 255, .1);
10465
10523
  overflow: hidden;
10524
+ }
10525
+ .amb-item-ghost > * {
10526
+ opacity: 0;
10466
10527
  }
10467
10528
  /* 将你的自定义样式添加到这里 */
10468
10529
  .draggable-placeholder {
@@ -10670,24 +10731,23 @@ fieldset.amb-design-item-selected {
10670
10731
  }
10671
10732
  /* 用于占位 */
10672
10733
  .amb-widget-tools-parent {
10673
- width: 100%;
10674
- min-height: 58px;
10675
- margin-bottom: 18px;
10734
+ width: 100%;
10676
10735
  }
10677
10736
  .amb-widget-tools {
10678
10737
  display: flex;
10738
+ flex-wrap: wrap;
10679
10739
  /* 垂直居中 */
10680
10740
  align-items: center;
10681
10741
  background: #fafafa;
10682
10742
  /* background:#FAFAFA; */
10683
10743
  /* background-color: var(--el-card-bg-color); */
10684
10744
  /* border:1px solid #e4e7ed; */
10685
- height: 58px;
10686
10745
  border-radius: 4px;
10687
10746
  width: transparent;
10688
10747
  padding-left: 20px;
10689
10748
  padding-right: 20px;
10690
10749
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
10750
+ min-height: 58px;
10691
10751
  /* --el-card-border-color: var(--el-border-color-light);
10692
10752
  --el-card-border-radius: 4px;
10693
10753
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -10819,8 +10879,7 @@ fieldset.amb-design-item-selected {
10819
10879
  color: var(--el-text-color-primary);
10820
10880
  overflow: hidden;
10821
10881
  transition: var(--el-transition-duration);
10822
- box-shadow: var(--el-box-shadow-light);
10823
- margin-bottom: 18px;
10882
+ box-shadow: var(--el-box-shadow-light);
10824
10883
  }
10825
10884
  .amb-widget-chart-header {
10826
10885
  border-bottom: 1px solid var(--el-card-border-color);
@@ -10838,9 +10897,6 @@ fieldset.amb-design-item-selected {
10838
10897
  vertical-align: middle;
10839
10898
  justify-content: center;
10840
10899
  }
10841
- .el-card {
10842
- margin-bottom: 18px;
10843
- }
10844
10900
  .el-collapse {
10845
10901
  margin-bottom: 18px;
10846
10902
  }
@@ -10865,9 +10921,6 @@ fieldset.amb-design-item-selected {
10865
10921
  }
10866
10922
  .el-button-group > .el-button {
10867
10923
  margin-right: 0px;
10868
- }
10869
- .el-form-item > .el-form-item__content {
10870
- padding-right: 18px;
10871
10924
  }
10872
10925
  /* 设计时样式 */
10873
10926
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -10908,7 +10961,8 @@ fieldset.amb-design-item-selected {
10908
10961
  line-height: 60px;
10909
10962
  background-color: #ffffff;
10910
10963
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
10911
- text-align: center;
10964
+ text-align: center;
10965
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
10912
10966
  }
10913
10967
  .amb-page-container-header-page {
10914
10968
  position: fixed;
@@ -10935,24 +10989,30 @@ fieldset.amb-design-item-selected {
10935
10989
  background: #5893ef;
10936
10990
  color: #ffffff;
10937
10991
  }
10992
+ .amb-page-container-header ~ .amb-page-container-main {
10993
+ height: calc(100vh - 60px);
10994
+ }
10938
10995
  .amb-page-container-main {
10939
10996
  position: relative;
10940
10997
  overflow: auto;
10941
10998
  }
10999
+ .amb-page-container-main > .el-container {
11000
+ height: 100%;
11001
+ }
10942
11002
  .amb-container-left {
10943
- padding-right: 20px;
11003
+ width: 280px !important;
10944
11004
  overflow-y: auto;
10945
11005
  }
10946
11006
  .amb-container-main {
10947
11007
  padding: 0px !important;
10948
- user-select: none;
11008
+ user-select: none;
11009
+ overflow: hidden;
10949
11010
  }
10950
11011
  .amb-container-main::-webkit-scrollbar {
10951
11012
  width: 1px;
10952
11013
  }
10953
11014
  .amb-container-attr {
10954
- width: 300px;
10955
- padding-left: 20px;
11015
+ width: 280px !important;
10956
11016
  }
10957
11017
  .amb-design-attr-base-content {
10958
11018
  background: #ffffff;
@@ -10985,21 +11045,20 @@ fieldset.amb-design-item-selected {
10985
11045
  }
10986
11046
  .amb-design-content {
10987
11047
  overflow: auto;
10988
- display: block;
11048
+ display: flex;
11049
+ flex-direction: column;
10989
11050
  flex: none;
10990
11051
  position: relative;
10991
- width: 100%;
11052
+ width: 100%;
11053
+ height: 100%;
10992
11054
  }
10993
11055
  .amb-design-content::-webkit-scrollbar {
10994
11056
  width: 1px;
10995
11057
  }
10996
11058
  .amb-design-content-center-header {
10997
- position: sticky;
10998
- z-index: 4;
10999
- top: 0;
11000
11059
  height: 54px;
11001
11060
  background-color: #f7f8fa;
11002
- padding-top: 14px;
11061
+ margin: 15px;
11003
11062
  }
11004
11063
  .amb-design-tool {
11005
11064
  position: relative;
@@ -11045,21 +11104,24 @@ fieldset.amb-design-item-selected {
11045
11104
  position: relative;
11046
11105
  cursor: pointer;
11047
11106
  }
11107
+ .el-scrollbar__view:has(.amb-design-board) {
11108
+ padding: 0 15px;
11109
+ height: 100%;
11110
+ }
11048
11111
  .amb-design-board {
11112
+ min-height: 100%;
11049
11113
  margin: 0 auto;
11050
- margin-top: 12px;
11051
- overflow-y: hidden;
11052
- overflow-x: auto;
11053
11114
  background: #ffffff;
11054
11115
  border-radius: 2px 2px 2px 2px;
11055
11116
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
11056
11117
  padding-bottom: 100px;
11057
11118
  }
11058
11119
  .amb-item-ghost {
11059
- background-color: #5893ef;
11060
- height: 5px;
11061
- line-height: 5px;
11120
+ background-color: rgba(64, 158, 255, .1);
11062
11121
  overflow: hidden;
11122
+ }
11123
+ .amb-item-ghost > * {
11124
+ opacity: 0;
11063
11125
  }
11064
11126
  /* 将你的自定义样式添加到这里 */
11065
11127
  .draggable-placeholder {
@@ -11267,24 +11329,23 @@ fieldset.amb-design-item-selected {
11267
11329
  }
11268
11330
  /* 用于占位 */
11269
11331
  .amb-widget-tools-parent {
11270
- width: 100%;
11271
- min-height: 58px;
11272
- margin-bottom: 18px;
11332
+ width: 100%;
11273
11333
  }
11274
11334
  .amb-widget-tools {
11275
11335
  display: flex;
11336
+ flex-wrap: wrap;
11276
11337
  /* 垂直居中 */
11277
11338
  align-items: center;
11278
11339
  background: #fafafa;
11279
11340
  /* background:#FAFAFA; */
11280
11341
  /* background-color: var(--el-card-bg-color); */
11281
11342
  /* border:1px solid #e4e7ed; */
11282
- height: 58px;
11283
11343
  border-radius: 4px;
11284
11344
  width: transparent;
11285
11345
  padding-left: 20px;
11286
11346
  padding-right: 20px;
11287
11347
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
11348
+ min-height: 58px;
11288
11349
  /* --el-card-border-color: var(--el-border-color-light);
11289
11350
  --el-card-border-radius: 4px;
11290
11351
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -11416,8 +11477,7 @@ fieldset.amb-design-item-selected {
11416
11477
  color: var(--el-text-color-primary);
11417
11478
  overflow: hidden;
11418
11479
  transition: var(--el-transition-duration);
11419
- box-shadow: var(--el-box-shadow-light);
11420
- margin-bottom: 18px;
11480
+ box-shadow: var(--el-box-shadow-light);
11421
11481
  }
11422
11482
  .amb-widget-chart-header {
11423
11483
  border-bottom: 1px solid var(--el-card-border-color);
@@ -11435,9 +11495,6 @@ fieldset.amb-design-item-selected {
11435
11495
  vertical-align: middle;
11436
11496
  justify-content: center;
11437
11497
  }
11438
- .el-card {
11439
- margin-bottom: 18px;
11440
- }
11441
11498
  .el-collapse {
11442
11499
  margin-bottom: 18px;
11443
11500
  }
@@ -11462,9 +11519,6 @@ fieldset.amb-design-item-selected {
11462
11519
  }
11463
11520
  .el-button-group > .el-button {
11464
11521
  margin-right: 0px;
11465
- }
11466
- .el-form-item > .el-form-item__content {
11467
- padding-right: 18px;
11468
11522
  }
11469
11523
  /* 设计时样式 */
11470
11524
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -11497,7 +11551,8 @@ fieldset.amb-design-item-selected {
11497
11551
  line-height: 60px;
11498
11552
  background-color: #ffffff;
11499
11553
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
11500
- text-align: center;
11554
+ text-align: center;
11555
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
11501
11556
  }
11502
11557
  .amb-page-container-header-page {
11503
11558
  position: fixed;
@@ -11524,24 +11579,30 @@ fieldset.amb-design-item-selected {
11524
11579
  background: #5893ef;
11525
11580
  color: #ffffff;
11526
11581
  }
11582
+ .amb-page-container-header ~ .amb-page-container-main {
11583
+ height: calc(100vh - 60px);
11584
+ }
11527
11585
  .amb-page-container-main {
11528
11586
  position: relative;
11529
11587
  overflow: auto;
11530
11588
  }
11589
+ .amb-page-container-main > .el-container {
11590
+ height: 100%;
11591
+ }
11531
11592
  .amb-container-left {
11532
- padding-right: 20px;
11593
+ width: 280px !important;
11533
11594
  overflow-y: auto;
11534
11595
  }
11535
11596
  .amb-container-main {
11536
11597
  padding: 0px !important;
11537
- user-select: none;
11598
+ user-select: none;
11599
+ overflow: hidden;
11538
11600
  }
11539
11601
  .amb-container-main::-webkit-scrollbar {
11540
11602
  width: 1px;
11541
11603
  }
11542
11604
  .amb-container-attr {
11543
- width: 300px;
11544
- padding-left: 20px;
11605
+ width: 280px !important;
11545
11606
  }
11546
11607
  .amb-design-attr-base-content {
11547
11608
  background: #ffffff;
@@ -11574,21 +11635,20 @@ fieldset.amb-design-item-selected {
11574
11635
  }
11575
11636
  .amb-design-content {
11576
11637
  overflow: auto;
11577
- display: block;
11638
+ display: flex;
11639
+ flex-direction: column;
11578
11640
  flex: none;
11579
11641
  position: relative;
11580
- width: 100%;
11642
+ width: 100%;
11643
+ height: 100%;
11581
11644
  }
11582
11645
  .amb-design-content::-webkit-scrollbar {
11583
11646
  width: 1px;
11584
11647
  }
11585
- .amb-design-content-center-header {
11586
- position: sticky;
11587
- z-index: 4;
11588
- top: 0;
11648
+ .amb-design-content-center-header {
11589
11649
  height: 54px;
11590
11650
  background-color: #f7f8fa;
11591
- padding-top: 14px;
11651
+ margin: 15px;
11592
11652
  }
11593
11653
  .amb-design-tool {
11594
11654
  position: relative;
@@ -11634,21 +11694,24 @@ fieldset.amb-design-item-selected {
11634
11694
  position: relative;
11635
11695
  cursor: pointer;
11636
11696
  }
11697
+ .el-scrollbar__view:has(.amb-design-board) {
11698
+ padding: 0 15px;
11699
+ height: 100%;
11700
+ }
11637
11701
  .amb-design-board {
11702
+ min-height: 100%;
11638
11703
  margin: 0 auto;
11639
- margin-top: 12px;
11640
- overflow-y: hidden;
11641
- overflow-x: auto;
11642
11704
  background: #ffffff;
11643
11705
  border-radius: 2px 2px 2px 2px;
11644
11706
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
11645
11707
  padding-bottom: 100px;
11646
11708
  }
11647
11709
  .amb-item-ghost {
11648
- background-color: #5893ef;
11649
- height: 5px;
11650
- line-height: 5px;
11710
+ background-color: rgba(64, 158, 255, .1);
11651
11711
  overflow: hidden;
11712
+ }
11713
+ .amb-item-ghost > * {
11714
+ opacity: 0;
11652
11715
  }
11653
11716
  /* 将你的自定义样式添加到这里 */
11654
11717
  .draggable-placeholder {
@@ -11856,24 +11919,23 @@ fieldset.amb-design-item-selected {
11856
11919
  }
11857
11920
  /* 用于占位 */
11858
11921
  .amb-widget-tools-parent {
11859
- width: 100%;
11860
- min-height: 58px;
11861
- margin-bottom: 18px;
11922
+ width: 100%;
11862
11923
  }
11863
11924
  .amb-widget-tools {
11864
11925
  display: flex;
11926
+ flex-wrap: wrap;
11865
11927
  /* 垂直居中 */
11866
11928
  align-items: center;
11867
11929
  background: #fafafa;
11868
11930
  /* background:#FAFAFA; */
11869
11931
  /* background-color: var(--el-card-bg-color); */
11870
11932
  /* border:1px solid #e4e7ed; */
11871
- height: 58px;
11872
11933
  border-radius: 4px;
11873
11934
  width: transparent;
11874
11935
  padding-left: 20px;
11875
11936
  padding-right: 20px;
11876
11937
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
11938
+ min-height: 58px;
11877
11939
  /* --el-card-border-color: var(--el-border-color-light);
11878
11940
  --el-card-border-radius: 4px;
11879
11941
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -12005,8 +12067,7 @@ fieldset.amb-design-item-selected {
12005
12067
  color: var(--el-text-color-primary);
12006
12068
  overflow: hidden;
12007
12069
  transition: var(--el-transition-duration);
12008
- box-shadow: var(--el-box-shadow-light);
12009
- margin-bottom: 18px;
12070
+ box-shadow: var(--el-box-shadow-light);
12010
12071
  }
12011
12072
  .amb-widget-chart-header {
12012
12073
  border-bottom: 1px solid var(--el-card-border-color);
@@ -12024,9 +12085,6 @@ fieldset.amb-design-item-selected {
12024
12085
  vertical-align: middle;
12025
12086
  justify-content: center;
12026
12087
  }
12027
- .el-card {
12028
- margin-bottom: 18px;
12029
- }
12030
12088
  .el-collapse {
12031
12089
  margin-bottom: 18px;
12032
12090
  }
@@ -12051,9 +12109,6 @@ fieldset.amb-design-item-selected {
12051
12109
  }
12052
12110
  .el-button-group > .el-button {
12053
12111
  margin-right: 0px;
12054
- }
12055
- .el-form-item > .el-form-item__content {
12056
- padding-right: 18px;
12057
12112
  }
12058
12113
  /* 设计时样式 */
12059
12114
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -12086,7 +12141,8 @@ fieldset.amb-design-item-selected {
12086
12141
  line-height: 60px;
12087
12142
  background-color: #ffffff;
12088
12143
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
12089
- text-align: center;
12144
+ text-align: center;
12145
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
12090
12146
  }
12091
12147
  .amb-page-container-header-page {
12092
12148
  position: fixed;
@@ -12113,24 +12169,30 @@ fieldset.amb-design-item-selected {
12113
12169
  background: #5893ef;
12114
12170
  color: #ffffff;
12115
12171
  }
12172
+ .amb-page-container-header ~ .amb-page-container-main {
12173
+ height: calc(100vh - 60px);
12174
+ }
12116
12175
  .amb-page-container-main {
12117
12176
  position: relative;
12118
12177
  overflow: auto;
12119
12178
  }
12179
+ .amb-page-container-main > .el-container {
12180
+ height: 100%;
12181
+ }
12120
12182
  .amb-container-left {
12121
- padding-right: 20px;
12183
+ width: 280px !important;
12122
12184
  overflow-y: auto;
12123
12185
  }
12124
12186
  .amb-container-main {
12125
12187
  padding: 0px !important;
12126
- user-select: none;
12188
+ user-select: none;
12189
+ overflow: hidden;
12127
12190
  }
12128
12191
  .amb-container-main::-webkit-scrollbar {
12129
12192
  width: 1px;
12130
12193
  }
12131
12194
  .amb-container-attr {
12132
- width: 300px;
12133
- padding-left: 20px;
12195
+ width: 280px !important;
12134
12196
  }
12135
12197
  .amb-design-attr-base-content {
12136
12198
  background: #ffffff;
@@ -12163,21 +12225,20 @@ fieldset.amb-design-item-selected {
12163
12225
  }
12164
12226
  .amb-design-content {
12165
12227
  overflow: auto;
12166
- display: block;
12228
+ display: flex;
12229
+ flex-direction: column;
12167
12230
  flex: none;
12168
12231
  position: relative;
12169
- width: 100%;
12232
+ width: 100%;
12233
+ height: 100%;
12170
12234
  }
12171
12235
  .amb-design-content::-webkit-scrollbar {
12172
12236
  width: 1px;
12173
12237
  }
12174
12238
  .amb-design-content-center-header {
12175
- position: sticky;
12176
- z-index: 4;
12177
- top: 0;
12178
12239
  height: 54px;
12179
12240
  background-color: #f7f8fa;
12180
- padding-top: 14px;
12241
+ margin: 15px;
12181
12242
  }
12182
12243
  .amb-design-tool {
12183
12244
  position: relative;
@@ -12223,21 +12284,24 @@ fieldset.amb-design-item-selected {
12223
12284
  position: relative;
12224
12285
  cursor: pointer;
12225
12286
  }
12287
+ .el-scrollbar__view:has(.amb-design-board) {
12288
+ padding: 0 15px;
12289
+ height: 100%;
12290
+ }
12226
12291
  .amb-design-board {
12292
+ min-height: 100%;
12227
12293
  margin: 0 auto;
12228
- margin-top: 12px;
12229
- overflow-y: hidden;
12230
- overflow-x: auto;
12231
12294
  background: #ffffff;
12232
12295
  border-radius: 2px 2px 2px 2px;
12233
12296
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
12234
12297
  padding-bottom: 100px;
12235
12298
  }
12236
12299
  .amb-item-ghost {
12237
- background-color: #5893ef;
12238
- height: 5px;
12239
- line-height: 5px;
12300
+ background-color: rgba(64, 158, 255, .1);
12240
12301
  overflow: hidden;
12302
+ }
12303
+ .amb-item-ghost > * {
12304
+ opacity: 0;
12241
12305
  }
12242
12306
  /* 将你的自定义样式添加到这里 */
12243
12307
  .draggable-placeholder {
@@ -12445,24 +12509,23 @@ fieldset.amb-design-item-selected {
12445
12509
  }
12446
12510
  /* 用于占位 */
12447
12511
  .amb-widget-tools-parent {
12448
- width: 100%;
12449
- min-height: 58px;
12450
- margin-bottom: 18px;
12512
+ width: 100%;
12451
12513
  }
12452
12514
  .amb-widget-tools {
12453
12515
  display: flex;
12516
+ flex-wrap: wrap;
12454
12517
  /* 垂直居中 */
12455
12518
  align-items: center;
12456
12519
  background: #fafafa;
12457
12520
  /* background:#FAFAFA; */
12458
12521
  /* background-color: var(--el-card-bg-color); */
12459
12522
  /* border:1px solid #e4e7ed; */
12460
- height: 58px;
12461
12523
  border-radius: 4px;
12462
12524
  width: transparent;
12463
12525
  padding-left: 20px;
12464
12526
  padding-right: 20px;
12465
12527
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
12528
+ min-height: 58px;
12466
12529
  /* --el-card-border-color: var(--el-border-color-light);
12467
12530
  --el-card-border-radius: 4px;
12468
12531
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -12594,8 +12657,7 @@ fieldset.amb-design-item-selected {
12594
12657
  color: var(--el-text-color-primary);
12595
12658
  overflow: hidden;
12596
12659
  transition: var(--el-transition-duration);
12597
- box-shadow: var(--el-box-shadow-light);
12598
- margin-bottom: 18px;
12660
+ box-shadow: var(--el-box-shadow-light);
12599
12661
  }
12600
12662
  .amb-widget-chart-header {
12601
12663
  border-bottom: 1px solid var(--el-card-border-color);
@@ -12613,9 +12675,6 @@ fieldset.amb-design-item-selected {
12613
12675
  vertical-align: middle;
12614
12676
  justify-content: center;
12615
12677
  }
12616
- .el-card {
12617
- margin-bottom: 18px;
12618
- }
12619
12678
  .el-collapse {
12620
12679
  margin-bottom: 18px;
12621
12680
  }
@@ -12640,9 +12699,6 @@ fieldset.amb-design-item-selected {
12640
12699
  }
12641
12700
  .el-button-group > .el-button {
12642
12701
  margin-right: 0px;
12643
- }
12644
- .el-form-item > .el-form-item__content {
12645
- padding-right: 18px;
12646
12702
  }
12647
12703
  /* 设计时样式 */
12648
12704
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -12675,7 +12731,8 @@ fieldset.amb-design-item-selected {
12675
12731
  line-height: 60px;
12676
12732
  background-color: #ffffff;
12677
12733
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
12678
- text-align: center;
12734
+ text-align: center;
12735
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
12679
12736
  }
12680
12737
  .amb-page-container-header-page {
12681
12738
  position: fixed;
@@ -12702,24 +12759,30 @@ fieldset.amb-design-item-selected {
12702
12759
  background: #5893ef;
12703
12760
  color: #ffffff;
12704
12761
  }
12762
+ .amb-page-container-header ~ .amb-page-container-main {
12763
+ height: calc(100vh - 60px);
12764
+ }
12705
12765
  .amb-page-container-main {
12706
12766
  position: relative;
12707
12767
  overflow: auto;
12708
12768
  }
12769
+ .amb-page-container-main > .el-container {
12770
+ height: 100%;
12771
+ }
12709
12772
  .amb-container-left {
12710
- padding-right: 20px;
12773
+ width: 280px !important;
12711
12774
  overflow-y: auto;
12712
12775
  }
12713
12776
  .amb-container-main {
12714
12777
  padding: 0px !important;
12715
- user-select: none;
12778
+ user-select: none;
12779
+ overflow: hidden;
12716
12780
  }
12717
12781
  .amb-container-main::-webkit-scrollbar {
12718
12782
  width: 1px;
12719
12783
  }
12720
12784
  .amb-container-attr {
12721
- width: 300px;
12722
- padding-left: 20px;
12785
+ width: 280px !important;
12723
12786
  }
12724
12787
  .amb-design-attr-base-content {
12725
12788
  background: #ffffff;
@@ -12752,21 +12815,20 @@ fieldset.amb-design-item-selected {
12752
12815
  }
12753
12816
  .amb-design-content {
12754
12817
  overflow: auto;
12755
- display: block;
12818
+ display: flex;
12819
+ flex-direction: column;
12756
12820
  flex: none;
12757
12821
  position: relative;
12758
- width: 100%;
12822
+ width: 100%;
12823
+ height: 100%;
12759
12824
  }
12760
12825
  .amb-design-content::-webkit-scrollbar {
12761
12826
  width: 1px;
12762
12827
  }
12763
12828
  .amb-design-content-center-header {
12764
- position: sticky;
12765
- z-index: 4;
12766
- top: 0;
12767
12829
  height: 54px;
12768
12830
  background-color: #f7f8fa;
12769
- padding-top: 14px;
12831
+ margin: 15px;
12770
12832
  }
12771
12833
  .amb-design-tool {
12772
12834
  position: relative;
@@ -12812,21 +12874,24 @@ fieldset.amb-design-item-selected {
12812
12874
  position: relative;
12813
12875
  cursor: pointer;
12814
12876
  }
12877
+ .el-scrollbar__view:has(.amb-design-board) {
12878
+ padding: 0 15px;
12879
+ height: 100%;
12880
+ }
12815
12881
  .amb-design-board {
12882
+ min-height: 100%;
12816
12883
  margin: 0 auto;
12817
- margin-top: 12px;
12818
- overflow-y: hidden;
12819
- overflow-x: auto;
12820
12884
  background: #ffffff;
12821
12885
  border-radius: 2px 2px 2px 2px;
12822
12886
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
12823
12887
  padding-bottom: 100px;
12824
12888
  }
12825
12889
  .amb-item-ghost {
12826
- background-color: #5893ef;
12827
- height: 5px;
12828
- line-height: 5px;
12890
+ background-color: rgba(64, 158, 255, .1);
12829
12891
  overflow: hidden;
12892
+ }
12893
+ .amb-item-ghost > * {
12894
+ opacity: 0;
12830
12895
  }
12831
12896
  /* 将你的自定义样式添加到这里 */
12832
12897
  .draggable-placeholder {
@@ -13034,24 +13099,23 @@ fieldset.amb-design-item-selected {
13034
13099
  }
13035
13100
  /* 用于占位 */
13036
13101
  .amb-widget-tools-parent {
13037
- width: 100%;
13038
- min-height: 58px;
13039
- margin-bottom: 18px;
13102
+ width: 100%;
13040
13103
  }
13041
13104
  .amb-widget-tools {
13042
13105
  display: flex;
13106
+ flex-wrap: wrap;
13043
13107
  /* 垂直居中 */
13044
13108
  align-items: center;
13045
13109
  background: #fafafa;
13046
13110
  /* background:#FAFAFA; */
13047
13111
  /* background-color: var(--el-card-bg-color); */
13048
13112
  /* border:1px solid #e4e7ed; */
13049
- height: 58px;
13050
13113
  border-radius: 4px;
13051
13114
  width: transparent;
13052
13115
  padding-left: 20px;
13053
13116
  padding-right: 20px;
13054
13117
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
13118
+ min-height: 58px;
13055
13119
  /* --el-card-border-color: var(--el-border-color-light);
13056
13120
  --el-card-border-radius: 4px;
13057
13121
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -13183,8 +13247,7 @@ fieldset.amb-design-item-selected {
13183
13247
  color: var(--el-text-color-primary);
13184
13248
  overflow: hidden;
13185
13249
  transition: var(--el-transition-duration);
13186
- box-shadow: var(--el-box-shadow-light);
13187
- margin-bottom: 18px;
13250
+ box-shadow: var(--el-box-shadow-light);
13188
13251
  }
13189
13252
  .amb-widget-chart-header {
13190
13253
  border-bottom: 1px solid var(--el-card-border-color);
@@ -13202,9 +13265,6 @@ fieldset.amb-design-item-selected {
13202
13265
  vertical-align: middle;
13203
13266
  justify-content: center;
13204
13267
  }
13205
- .el-card {
13206
- margin-bottom: 18px;
13207
- }
13208
13268
  .el-collapse {
13209
13269
  margin-bottom: 18px;
13210
13270
  }
@@ -13229,9 +13289,6 @@ fieldset.amb-design-item-selected {
13229
13289
  }
13230
13290
  .el-button-group > .el-button {
13231
13291
  margin-right: 0px;
13232
- }
13233
- .el-form-item > .el-form-item__content {
13234
- padding-right: 18px;
13235
13292
  }
13236
13293
  /* 设计时样式 */
13237
13294
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -13264,7 +13321,8 @@ fieldset.amb-design-item-selected {
13264
13321
  line-height: 60px;
13265
13322
  background-color: #ffffff;
13266
13323
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
13267
- text-align: center;
13324
+ text-align: center;
13325
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
13268
13326
  }
13269
13327
  .amb-page-container-header-page {
13270
13328
  position: fixed;
@@ -13291,24 +13349,30 @@ fieldset.amb-design-item-selected {
13291
13349
  background: #5893ef;
13292
13350
  color: #ffffff;
13293
13351
  }
13352
+ .amb-page-container-header ~ .amb-page-container-main {
13353
+ height: calc(100vh - 60px);
13354
+ }
13294
13355
  .amb-page-container-main {
13295
13356
  position: relative;
13296
13357
  overflow: auto;
13297
13358
  }
13359
+ .amb-page-container-main > .el-container {
13360
+ height: 100%;
13361
+ }
13298
13362
  .amb-container-left {
13299
- padding-right: 20px;
13363
+ width: 280px !important;
13300
13364
  overflow-y: auto;
13301
13365
  }
13302
13366
  .amb-container-main {
13303
13367
  padding: 0px !important;
13304
- user-select: none;
13368
+ user-select: none;
13369
+ overflow: hidden;
13305
13370
  }
13306
13371
  .amb-container-main::-webkit-scrollbar {
13307
13372
  width: 1px;
13308
13373
  }
13309
13374
  .amb-container-attr {
13310
- width: 300px;
13311
- padding-left: 20px;
13375
+ width: 280px !important;
13312
13376
  }
13313
13377
  .amb-design-attr-base-content {
13314
13378
  background: #ffffff;
@@ -13341,21 +13405,20 @@ fieldset.amb-design-item-selected {
13341
13405
  }
13342
13406
  .amb-design-content {
13343
13407
  overflow: auto;
13344
- display: block;
13408
+ display: flex;
13409
+ flex-direction: column;
13345
13410
  flex: none;
13346
13411
  position: relative;
13347
- width: 100%;
13412
+ width: 100%;
13413
+ height: 100%;
13348
13414
  }
13349
13415
  .amb-design-content::-webkit-scrollbar {
13350
13416
  width: 1px;
13351
13417
  }
13352
13418
  .amb-design-content-center-header {
13353
- position: sticky;
13354
- z-index: 4;
13355
- top: 0;
13356
13419
  height: 54px;
13357
13420
  background-color: #f7f8fa;
13358
- padding-top: 14px;
13421
+ margin: 15px;
13359
13422
  }
13360
13423
  .amb-design-tool {
13361
13424
  position: relative;
@@ -13401,21 +13464,24 @@ fieldset.amb-design-item-selected {
13401
13464
  position: relative;
13402
13465
  cursor: pointer;
13403
13466
  }
13467
+ .el-scrollbar__view:has(.amb-design-board) {
13468
+ padding: 0 15px;
13469
+ height: 100%;
13470
+ }
13404
13471
  .amb-design-board {
13472
+ min-height: 100%;
13405
13473
  margin: 0 auto;
13406
- margin-top: 12px;
13407
- overflow-y: hidden;
13408
- overflow-x: auto;
13409
13474
  background: #ffffff;
13410
13475
  border-radius: 2px 2px 2px 2px;
13411
13476
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
13412
13477
  padding-bottom: 100px;
13413
13478
  }
13414
13479
  .amb-item-ghost {
13415
- background-color: #5893ef;
13416
- height: 5px;
13417
- line-height: 5px;
13480
+ background-color: rgba(64, 158, 255, .1);
13418
13481
  overflow: hidden;
13482
+ }
13483
+ .amb-item-ghost > * {
13484
+ opacity: 0;
13419
13485
  }
13420
13486
  /* 将你的自定义样式添加到这里 */
13421
13487
  .draggable-placeholder {
@@ -13623,24 +13689,23 @@ fieldset.amb-design-item-selected {
13623
13689
  }
13624
13690
  /* 用于占位 */
13625
13691
  .amb-widget-tools-parent {
13626
- width: 100%;
13627
- min-height: 58px;
13628
- margin-bottom: 18px;
13692
+ width: 100%;
13629
13693
  }
13630
13694
  .amb-widget-tools {
13631
13695
  display: flex;
13696
+ flex-wrap: wrap;
13632
13697
  /* 垂直居中 */
13633
13698
  align-items: center;
13634
13699
  background: #fafafa;
13635
13700
  /* background:#FAFAFA; */
13636
13701
  /* background-color: var(--el-card-bg-color); */
13637
13702
  /* border:1px solid #e4e7ed; */
13638
- height: 58px;
13639
13703
  border-radius: 4px;
13640
13704
  width: transparent;
13641
13705
  padding-left: 20px;
13642
13706
  padding-right: 20px;
13643
13707
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
13708
+ min-height: 58px;
13644
13709
  /* --el-card-border-color: var(--el-border-color-light);
13645
13710
  --el-card-border-radius: 4px;
13646
13711
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -13772,8 +13837,7 @@ fieldset.amb-design-item-selected {
13772
13837
  color: var(--el-text-color-primary);
13773
13838
  overflow: hidden;
13774
13839
  transition: var(--el-transition-duration);
13775
- box-shadow: var(--el-box-shadow-light);
13776
- margin-bottom: 18px;
13840
+ box-shadow: var(--el-box-shadow-light);
13777
13841
  }
13778
13842
  .amb-widget-chart-header {
13779
13843
  border-bottom: 1px solid var(--el-card-border-color);
@@ -13791,9 +13855,6 @@ fieldset.amb-design-item-selected {
13791
13855
  vertical-align: middle;
13792
13856
  justify-content: center;
13793
13857
  }
13794
- .el-card {
13795
- margin-bottom: 18px;
13796
- }
13797
13858
  .el-collapse {
13798
13859
  margin-bottom: 18px;
13799
13860
  }
@@ -13818,9 +13879,6 @@ fieldset.amb-design-item-selected {
13818
13879
  }
13819
13880
  .el-button-group > .el-button {
13820
13881
  margin-right: 0px;
13821
- }
13822
- .el-form-item > .el-form-item__content {
13823
- padding-right: 18px;
13824
13882
  }
13825
13883
  /* 设计时样式 */
13826
13884
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -13853,7 +13911,8 @@ fieldset.amb-design-item-selected {
13853
13911
  line-height: 60px;
13854
13912
  background-color: #ffffff;
13855
13913
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
13856
- text-align: center;
13914
+ text-align: center;
13915
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
13857
13916
  }
13858
13917
  .amb-page-container-header-page {
13859
13918
  position: fixed;
@@ -13880,24 +13939,30 @@ fieldset.amb-design-item-selected {
13880
13939
  background: #5893ef;
13881
13940
  color: #ffffff;
13882
13941
  }
13942
+ .amb-page-container-header ~ .amb-page-container-main {
13943
+ height: calc(100vh - 60px);
13944
+ }
13883
13945
  .amb-page-container-main {
13884
13946
  position: relative;
13885
13947
  overflow: auto;
13886
13948
  }
13949
+ .amb-page-container-main > .el-container {
13950
+ height: 100%;
13951
+ }
13887
13952
  .amb-container-left {
13888
- padding-right: 20px;
13953
+ width: 280px !important;
13889
13954
  overflow-y: auto;
13890
13955
  }
13891
13956
  .amb-container-main {
13892
13957
  padding: 0px !important;
13893
- user-select: none;
13958
+ user-select: none;
13959
+ overflow: hidden;
13894
13960
  }
13895
13961
  .amb-container-main::-webkit-scrollbar {
13896
13962
  width: 1px;
13897
13963
  }
13898
13964
  .amb-container-attr {
13899
- width: 300px;
13900
- padding-left: 20px;
13965
+ width: 280px !important;
13901
13966
  }
13902
13967
  .amb-design-attr-base-content {
13903
13968
  background: #ffffff;
@@ -13930,21 +13995,20 @@ fieldset.amb-design-item-selected {
13930
13995
  }
13931
13996
  .amb-design-content {
13932
13997
  overflow: auto;
13933
- display: block;
13998
+ display: flex;
13999
+ flex-direction: column;
13934
14000
  flex: none;
13935
14001
  position: relative;
13936
- width: 100%;
14002
+ width: 100%;
14003
+ height: 100%;
13937
14004
  }
13938
14005
  .amb-design-content::-webkit-scrollbar {
13939
14006
  width: 1px;
13940
14007
  }
13941
14008
  .amb-design-content-center-header {
13942
- position: sticky;
13943
- z-index: 4;
13944
- top: 0;
13945
14009
  height: 54px;
13946
14010
  background-color: #f7f8fa;
13947
- padding-top: 14px;
14011
+ margin: 15px;
13948
14012
  }
13949
14013
  .amb-design-tool {
13950
14014
  position: relative;
@@ -13990,21 +14054,24 @@ fieldset.amb-design-item-selected {
13990
14054
  position: relative;
13991
14055
  cursor: pointer;
13992
14056
  }
14057
+ .el-scrollbar__view:has(.amb-design-board) {
14058
+ padding: 0 15px;
14059
+ height: 100%;
14060
+ }
13993
14061
  .amb-design-board {
14062
+ min-height: 100%;
13994
14063
  margin: 0 auto;
13995
- margin-top: 12px;
13996
- overflow-y: hidden;
13997
- overflow-x: auto;
13998
14064
  background: #ffffff;
13999
14065
  border-radius: 2px 2px 2px 2px;
14000
14066
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
14001
14067
  padding-bottom: 100px;
14002
14068
  }
14003
14069
  .amb-item-ghost {
14004
- background-color: #5893ef;
14005
- height: 5px;
14006
- line-height: 5px;
14070
+ background-color: rgba(64, 158, 255, .1);
14007
14071
  overflow: hidden;
14072
+ }
14073
+ .amb-item-ghost > * {
14074
+ opacity: 0;
14008
14075
  }
14009
14076
  /* 将你的自定义样式添加到这里 */
14010
14077
  .draggable-placeholder {
@@ -14212,24 +14279,23 @@ fieldset.amb-design-item-selected {
14212
14279
  }
14213
14280
  /* 用于占位 */
14214
14281
  .amb-widget-tools-parent {
14215
- width: 100%;
14216
- min-height: 58px;
14217
- margin-bottom: 18px;
14282
+ width: 100%;
14218
14283
  }
14219
14284
  .amb-widget-tools {
14220
14285
  display: flex;
14286
+ flex-wrap: wrap;
14221
14287
  /* 垂直居中 */
14222
14288
  align-items: center;
14223
14289
  background: #fafafa;
14224
14290
  /* background:#FAFAFA; */
14225
14291
  /* background-color: var(--el-card-bg-color); */
14226
14292
  /* border:1px solid #e4e7ed; */
14227
- height: 58px;
14228
14293
  border-radius: 4px;
14229
14294
  width: transparent;
14230
14295
  padding-left: 20px;
14231
14296
  padding-right: 20px;
14232
14297
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
14298
+ min-height: 58px;
14233
14299
  /* --el-card-border-color: var(--el-border-color-light);
14234
14300
  --el-card-border-radius: 4px;
14235
14301
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -14361,8 +14427,7 @@ fieldset.amb-design-item-selected {
14361
14427
  color: var(--el-text-color-primary);
14362
14428
  overflow: hidden;
14363
14429
  transition: var(--el-transition-duration);
14364
- box-shadow: var(--el-box-shadow-light);
14365
- margin-bottom: 18px;
14430
+ box-shadow: var(--el-box-shadow-light);
14366
14431
  }
14367
14432
  .amb-widget-chart-header {
14368
14433
  border-bottom: 1px solid var(--el-card-border-color);
@@ -14380,9 +14445,6 @@ fieldset.amb-design-item-selected {
14380
14445
  vertical-align: middle;
14381
14446
  justify-content: center;
14382
14447
  }
14383
- .el-card {
14384
- margin-bottom: 18px;
14385
- }
14386
14448
  .el-collapse {
14387
14449
  margin-bottom: 18px;
14388
14450
  }
@@ -14407,9 +14469,6 @@ fieldset.amb-design-item-selected {
14407
14469
  }
14408
14470
  .el-button-group > .el-button {
14409
14471
  margin-right: 0px;
14410
- }
14411
- .el-form-item > .el-form-item__content {
14412
- padding-right: 18px;
14413
14472
  }
14414
14473
  /* 设计时样式 */
14415
14474
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -14442,7 +14501,8 @@ fieldset.amb-design-item-selected {
14442
14501
  line-height: 60px;
14443
14502
  background-color: #ffffff;
14444
14503
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
14445
- text-align: center;
14504
+ text-align: center;
14505
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
14446
14506
  }
14447
14507
  .amb-page-container-header-page {
14448
14508
  position: fixed;
@@ -14469,24 +14529,30 @@ fieldset.amb-design-item-selected {
14469
14529
  background: #5893ef;
14470
14530
  color: #ffffff;
14471
14531
  }
14532
+ .amb-page-container-header ~ .amb-page-container-main {
14533
+ height: calc(100vh - 60px);
14534
+ }
14472
14535
  .amb-page-container-main {
14473
14536
  position: relative;
14474
14537
  overflow: auto;
14475
14538
  }
14539
+ .amb-page-container-main > .el-container {
14540
+ height: 100%;
14541
+ }
14476
14542
  .amb-container-left {
14477
- padding-right: 20px;
14543
+ width: 280px !important;
14478
14544
  overflow-y: auto;
14479
14545
  }
14480
14546
  .amb-container-main {
14481
14547
  padding: 0px !important;
14482
- user-select: none;
14548
+ user-select: none;
14549
+ overflow: hidden;
14483
14550
  }
14484
14551
  .amb-container-main::-webkit-scrollbar {
14485
14552
  width: 1px;
14486
14553
  }
14487
14554
  .amb-container-attr {
14488
- width: 300px;
14489
- padding-left: 20px;
14555
+ width: 280px !important;
14490
14556
  }
14491
14557
  .amb-design-attr-base-content {
14492
14558
  background: #ffffff;
@@ -14519,21 +14585,20 @@ fieldset.amb-design-item-selected {
14519
14585
  }
14520
14586
  .amb-design-content {
14521
14587
  overflow: auto;
14522
- display: block;
14588
+ display: flex;
14589
+ flex-direction: column;
14523
14590
  flex: none;
14524
14591
  position: relative;
14525
- width: 100%;
14592
+ width: 100%;
14593
+ height: 100%;
14526
14594
  }
14527
14595
  .amb-design-content::-webkit-scrollbar {
14528
14596
  width: 1px;
14529
14597
  }
14530
14598
  .amb-design-content-center-header {
14531
- position: sticky;
14532
- z-index: 4;
14533
- top: 0;
14534
14599
  height: 54px;
14535
14600
  background-color: #f7f8fa;
14536
- padding-top: 14px;
14601
+ margin: 15px;
14537
14602
  }
14538
14603
  .amb-design-tool {
14539
14604
  position: relative;
@@ -14579,21 +14644,24 @@ fieldset.amb-design-item-selected {
14579
14644
  position: relative;
14580
14645
  cursor: pointer;
14581
14646
  }
14647
+ .el-scrollbar__view:has(.amb-design-board) {
14648
+ padding: 0 15px;
14649
+ height: 100%;
14650
+ }
14582
14651
  .amb-design-board {
14652
+ min-height: 100%;
14583
14653
  margin: 0 auto;
14584
- margin-top: 12px;
14585
- overflow-y: hidden;
14586
- overflow-x: auto;
14587
14654
  background: #ffffff;
14588
14655
  border-radius: 2px 2px 2px 2px;
14589
14656
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
14590
14657
  padding-bottom: 100px;
14591
14658
  }
14592
14659
  .amb-item-ghost {
14593
- background-color: #5893ef;
14594
- height: 5px;
14595
- line-height: 5px;
14660
+ background-color: rgba(64, 158, 255, .1);
14596
14661
  overflow: hidden;
14662
+ }
14663
+ .amb-item-ghost > * {
14664
+ opacity: 0;
14597
14665
  }
14598
14666
  /* 将你的自定义样式添加到这里 */
14599
14667
  .draggable-placeholder {
@@ -14801,24 +14869,23 @@ fieldset.amb-design-item-selected {
14801
14869
  }
14802
14870
  /* 用于占位 */
14803
14871
  .amb-widget-tools-parent {
14804
- width: 100%;
14805
- min-height: 58px;
14806
- margin-bottom: 18px;
14872
+ width: 100%;
14807
14873
  }
14808
14874
  .amb-widget-tools {
14809
14875
  display: flex;
14876
+ flex-wrap: wrap;
14810
14877
  /* 垂直居中 */
14811
14878
  align-items: center;
14812
14879
  background: #fafafa;
14813
14880
  /* background:#FAFAFA; */
14814
14881
  /* background-color: var(--el-card-bg-color); */
14815
14882
  /* border:1px solid #e4e7ed; */
14816
- height: 58px;
14817
14883
  border-radius: 4px;
14818
14884
  width: transparent;
14819
14885
  padding-left: 20px;
14820
14886
  padding-right: 20px;
14821
14887
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
14888
+ min-height: 58px;
14822
14889
  /* --el-card-border-color: var(--el-border-color-light);
14823
14890
  --el-card-border-radius: 4px;
14824
14891
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -14950,8 +15017,7 @@ fieldset.amb-design-item-selected {
14950
15017
  color: var(--el-text-color-primary);
14951
15018
  overflow: hidden;
14952
15019
  transition: var(--el-transition-duration);
14953
- box-shadow: var(--el-box-shadow-light);
14954
- margin-bottom: 18px;
15020
+ box-shadow: var(--el-box-shadow-light);
14955
15021
  }
14956
15022
  .amb-widget-chart-header {
14957
15023
  border-bottom: 1px solid var(--el-card-border-color);
@@ -14969,9 +15035,6 @@ fieldset.amb-design-item-selected {
14969
15035
  vertical-align: middle;
14970
15036
  justify-content: center;
14971
15037
  }
14972
- .el-card {
14973
- margin-bottom: 18px;
14974
- }
14975
15038
  .el-collapse {
14976
15039
  margin-bottom: 18px;
14977
15040
  }
@@ -14996,9 +15059,6 @@ fieldset.amb-design-item-selected {
14996
15059
  }
14997
15060
  .el-button-group > .el-button {
14998
15061
  margin-right: 0px;
14999
- }
15000
- .el-form-item > .el-form-item__content {
15001
- padding-right: 18px;
15002
15062
  }
15003
15063
  /* 设计时样式 */
15004
15064
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -15031,7 +15091,8 @@ fieldset.amb-design-item-selected {
15031
15091
  line-height: 60px;
15032
15092
  background-color: #ffffff;
15033
15093
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
15034
- text-align: center;
15094
+ text-align: center;
15095
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
15035
15096
  }
15036
15097
  .amb-page-container-header-page {
15037
15098
  position: fixed;
@@ -15058,24 +15119,30 @@ fieldset.amb-design-item-selected {
15058
15119
  background: #5893ef;
15059
15120
  color: #ffffff;
15060
15121
  }
15122
+ .amb-page-container-header ~ .amb-page-container-main {
15123
+ height: calc(100vh - 60px);
15124
+ }
15061
15125
  .amb-page-container-main {
15062
15126
  position: relative;
15063
15127
  overflow: auto;
15064
15128
  }
15129
+ .amb-page-container-main > .el-container {
15130
+ height: 100%;
15131
+ }
15065
15132
  .amb-container-left {
15066
- padding-right: 20px;
15133
+ width: 280px !important;
15067
15134
  overflow-y: auto;
15068
15135
  }
15069
15136
  .amb-container-main {
15070
15137
  padding: 0px !important;
15071
- user-select: none;
15138
+ user-select: none;
15139
+ overflow: hidden;
15072
15140
  }
15073
15141
  .amb-container-main::-webkit-scrollbar {
15074
15142
  width: 1px;
15075
15143
  }
15076
15144
  .amb-container-attr {
15077
- width: 300px;
15078
- padding-left: 20px;
15145
+ width: 280px !important;
15079
15146
  }
15080
15147
  .amb-design-attr-base-content {
15081
15148
  background: #ffffff;
@@ -15108,21 +15175,20 @@ fieldset.amb-design-item-selected {
15108
15175
  }
15109
15176
  .amb-design-content {
15110
15177
  overflow: auto;
15111
- display: block;
15178
+ display: flex;
15179
+ flex-direction: column;
15112
15180
  flex: none;
15113
15181
  position: relative;
15114
- width: 100%;
15182
+ width: 100%;
15183
+ height: 100%;
15115
15184
  }
15116
15185
  .amb-design-content::-webkit-scrollbar {
15117
15186
  width: 1px;
15118
15187
  }
15119
15188
  .amb-design-content-center-header {
15120
- position: sticky;
15121
- z-index: 4;
15122
- top: 0;
15123
15189
  height: 54px;
15124
15190
  background-color: #f7f8fa;
15125
- padding-top: 14px;
15191
+ margin: 15px;
15126
15192
  }
15127
15193
  .amb-design-tool {
15128
15194
  position: relative;
@@ -15168,21 +15234,24 @@ fieldset.amb-design-item-selected {
15168
15234
  position: relative;
15169
15235
  cursor: pointer;
15170
15236
  }
15237
+ .el-scrollbar__view:has(.amb-design-board) {
15238
+ padding: 0 15px;
15239
+ height: 100%;
15240
+ }
15171
15241
  .amb-design-board {
15242
+ min-height: 100%;
15172
15243
  margin: 0 auto;
15173
- margin-top: 12px;
15174
- overflow-y: hidden;
15175
- overflow-x: auto;
15176
15244
  background: #ffffff;
15177
15245
  border-radius: 2px 2px 2px 2px;
15178
15246
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
15179
15247
  padding-bottom: 100px;
15180
15248
  }
15181
15249
  .amb-item-ghost {
15182
- background-color: #5893ef;
15183
- height: 5px;
15184
- line-height: 5px;
15250
+ background-color: rgba(64, 158, 255, .1);
15185
15251
  overflow: hidden;
15252
+ }
15253
+ .amb-item-ghost > * {
15254
+ opacity: 0;
15186
15255
  }
15187
15256
  /* 将你的自定义样式添加到这里 */
15188
15257
  .draggable-placeholder {
@@ -15390,24 +15459,23 @@ fieldset.amb-design-item-selected {
15390
15459
  }
15391
15460
  /* 用于占位 */
15392
15461
  .amb-widget-tools-parent {
15393
- width: 100%;
15394
- min-height: 58px;
15395
- margin-bottom: 18px;
15462
+ width: 100%;
15396
15463
  }
15397
15464
  .amb-widget-tools {
15398
15465
  display: flex;
15466
+ flex-wrap: wrap;
15399
15467
  /* 垂直居中 */
15400
15468
  align-items: center;
15401
15469
  background: #fafafa;
15402
15470
  /* background:#FAFAFA; */
15403
15471
  /* background-color: var(--el-card-bg-color); */
15404
15472
  /* border:1px solid #e4e7ed; */
15405
- height: 58px;
15406
15473
  border-radius: 4px;
15407
15474
  width: transparent;
15408
15475
  padding-left: 20px;
15409
15476
  padding-right: 20px;
15410
15477
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
15478
+ min-height: 58px;
15411
15479
  /* --el-card-border-color: var(--el-border-color-light);
15412
15480
  --el-card-border-radius: 4px;
15413
15481
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -15539,8 +15607,7 @@ fieldset.amb-design-item-selected {
15539
15607
  color: var(--el-text-color-primary);
15540
15608
  overflow: hidden;
15541
15609
  transition: var(--el-transition-duration);
15542
- box-shadow: var(--el-box-shadow-light);
15543
- margin-bottom: 18px;
15610
+ box-shadow: var(--el-box-shadow-light);
15544
15611
  }
15545
15612
  .amb-widget-chart-header {
15546
15613
  border-bottom: 1px solid var(--el-card-border-color);
@@ -15558,9 +15625,6 @@ fieldset.amb-design-item-selected {
15558
15625
  vertical-align: middle;
15559
15626
  justify-content: center;
15560
15627
  }
15561
- .el-card {
15562
- margin-bottom: 18px;
15563
- }
15564
15628
  .el-collapse {
15565
15629
  margin-bottom: 18px;
15566
15630
  }
@@ -15585,9 +15649,6 @@ fieldset.amb-design-item-selected {
15585
15649
  }
15586
15650
  .el-button-group > .el-button {
15587
15651
  margin-right: 0px;
15588
- }
15589
- .el-form-item > .el-form-item__content {
15590
- padding-right: 18px;
15591
15652
  }
15592
15653
  /* 设计时样式 */
15593
15654
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -15685,7 +15746,8 @@ li[data-v-21af26bc] {
15685
15746
  line-height: 60px;
15686
15747
  background-color: #ffffff;
15687
15748
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
15688
- text-align: center;
15749
+ text-align: center;
15750
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
15689
15751
  }
15690
15752
  .amb-page-container-header-page {
15691
15753
  position: fixed;
@@ -15712,24 +15774,30 @@ li[data-v-21af26bc] {
15712
15774
  background: #5893ef;
15713
15775
  color: #ffffff;
15714
15776
  }
15777
+ .amb-page-container-header ~ .amb-page-container-main {
15778
+ height: calc(100vh - 60px);
15779
+ }
15715
15780
  .amb-page-container-main {
15716
15781
  position: relative;
15717
15782
  overflow: auto;
15718
15783
  }
15784
+ .amb-page-container-main > .el-container {
15785
+ height: 100%;
15786
+ }
15719
15787
  .amb-container-left {
15720
- padding-right: 20px;
15788
+ width: 280px !important;
15721
15789
  overflow-y: auto;
15722
15790
  }
15723
15791
  .amb-container-main {
15724
15792
  padding: 0px !important;
15725
- user-select: none;
15793
+ user-select: none;
15794
+ overflow: hidden;
15726
15795
  }
15727
15796
  .amb-container-main::-webkit-scrollbar {
15728
15797
  width: 1px;
15729
15798
  }
15730
15799
  .amb-container-attr {
15731
- width: 300px;
15732
- padding-left: 20px;
15800
+ width: 280px !important;
15733
15801
  }
15734
15802
  .amb-design-attr-base-content {
15735
15803
  background: #ffffff;
@@ -15762,21 +15830,20 @@ li[data-v-21af26bc] {
15762
15830
  }
15763
15831
  .amb-design-content {
15764
15832
  overflow: auto;
15765
- display: block;
15833
+ display: flex;
15834
+ flex-direction: column;
15766
15835
  flex: none;
15767
15836
  position: relative;
15768
- width: 100%;
15837
+ width: 100%;
15838
+ height: 100%;
15769
15839
  }
15770
15840
  .amb-design-content::-webkit-scrollbar {
15771
15841
  width: 1px;
15772
15842
  }
15773
15843
  .amb-design-content-center-header {
15774
- position: sticky;
15775
- z-index: 4;
15776
- top: 0;
15777
15844
  height: 54px;
15778
15845
  background-color: #f7f8fa;
15779
- padding-top: 14px;
15846
+ margin: 15px;
15780
15847
  }
15781
15848
  .amb-design-tool {
15782
15849
  position: relative;
@@ -15822,21 +15889,24 @@ li[data-v-21af26bc] {
15822
15889
  position: relative;
15823
15890
  cursor: pointer;
15824
15891
  }
15892
+ .el-scrollbar__view:has(.amb-design-board) {
15893
+ padding: 0 15px;
15894
+ height: 100%;
15895
+ }
15825
15896
  .amb-design-board {
15897
+ min-height: 100%;
15826
15898
  margin: 0 auto;
15827
- margin-top: 12px;
15828
- overflow-y: hidden;
15829
- overflow-x: auto;
15830
15899
  background: #ffffff;
15831
15900
  border-radius: 2px 2px 2px 2px;
15832
15901
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
15833
15902
  padding-bottom: 100px;
15834
15903
  }
15835
15904
  .amb-item-ghost {
15836
- background-color: #5893ef;
15837
- height: 5px;
15838
- line-height: 5px;
15905
+ background-color: rgba(64, 158, 255, .1);
15839
15906
  overflow: hidden;
15907
+ }
15908
+ .amb-item-ghost > * {
15909
+ opacity: 0;
15840
15910
  }
15841
15911
  /* 将你的自定义样式添加到这里 */
15842
15912
  .draggable-placeholder {
@@ -16044,24 +16114,23 @@ li[data-v-21af26bc] {
16044
16114
  }
16045
16115
  /* 用于占位 */
16046
16116
  .amb-widget-tools-parent {
16047
- width: 100%;
16048
- min-height: 58px;
16049
- margin-bottom: 18px;
16117
+ width: 100%;
16050
16118
  }
16051
16119
  .amb-widget-tools {
16052
16120
  display: flex;
16121
+ flex-wrap: wrap;
16053
16122
  /* 垂直居中 */
16054
16123
  align-items: center;
16055
16124
  background: #fafafa;
16056
16125
  /* background:#FAFAFA; */
16057
16126
  /* background-color: var(--el-card-bg-color); */
16058
16127
  /* border:1px solid #e4e7ed; */
16059
- height: 58px;
16060
16128
  border-radius: 4px;
16061
16129
  width: transparent;
16062
16130
  padding-left: 20px;
16063
16131
  padding-right: 20px;
16064
16132
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
16133
+ min-height: 58px;
16065
16134
  /* --el-card-border-color: var(--el-border-color-light);
16066
16135
  --el-card-border-radius: 4px;
16067
16136
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -16193,8 +16262,7 @@ fieldset.amb-design-item-selected {
16193
16262
  color: var(--el-text-color-primary);
16194
16263
  overflow: hidden;
16195
16264
  transition: var(--el-transition-duration);
16196
- box-shadow: var(--el-box-shadow-light);
16197
- margin-bottom: 18px;
16265
+ box-shadow: var(--el-box-shadow-light);
16198
16266
  }
16199
16267
  .amb-widget-chart-header {
16200
16268
  border-bottom: 1px solid var(--el-card-border-color);
@@ -16212,9 +16280,6 @@ fieldset.amb-design-item-selected {
16212
16280
  vertical-align: middle;
16213
16281
  justify-content: center;
16214
16282
  }
16215
- .el-card {
16216
- margin-bottom: 18px;
16217
- }
16218
16283
  .el-collapse {
16219
16284
  margin-bottom: 18px;
16220
16285
  }
@@ -16239,9 +16304,6 @@ fieldset.amb-design-item-selected {
16239
16304
  }
16240
16305
  .el-button-group > .el-button {
16241
16306
  margin-right: 0px;
16242
- }
16243
- .el-form-item > .el-form-item__content {
16244
- padding-right: 18px;
16245
16307
  }
16246
16308
  /* 设计时样式 */
16247
16309
  .amb-design-item > .el-dropdown > .el-button-group {
@@ -16278,7 +16340,8 @@ fieldset.amb-design-item-selected {
16278
16340
  line-height: 60px;
16279
16341
  background-color: #ffffff;
16280
16342
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
16281
- text-align: center;
16343
+ text-align: center;
16344
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
16282
16345
  }
16283
16346
  .amb-page-container-header-page {
16284
16347
  position: fixed;
@@ -16305,24 +16368,30 @@ fieldset.amb-design-item-selected {
16305
16368
  background: #5893ef;
16306
16369
  color: #ffffff;
16307
16370
  }
16371
+ .amb-page-container-header ~ .amb-page-container-main {
16372
+ height: calc(100vh - 60px);
16373
+ }
16308
16374
  .amb-page-container-main {
16309
16375
  position: relative;
16310
16376
  overflow: auto;
16311
16377
  }
16378
+ .amb-page-container-main > .el-container {
16379
+ height: 100%;
16380
+ }
16312
16381
  .amb-container-left {
16313
- padding-right: 20px;
16382
+ width: 280px !important;
16314
16383
  overflow-y: auto;
16315
16384
  }
16316
16385
  .amb-container-main {
16317
16386
  padding: 0px !important;
16318
- user-select: none;
16387
+ user-select: none;
16388
+ overflow: hidden;
16319
16389
  }
16320
16390
  .amb-container-main::-webkit-scrollbar {
16321
16391
  width: 1px;
16322
16392
  }
16323
16393
  .amb-container-attr {
16324
- width: 300px;
16325
- padding-left: 20px;
16394
+ width: 280px !important;
16326
16395
  }
16327
16396
  .amb-design-attr-base-content {
16328
16397
  background: #ffffff;
@@ -16355,21 +16424,20 @@ fieldset.amb-design-item-selected {
16355
16424
  }
16356
16425
  .amb-design-content {
16357
16426
  overflow: auto;
16358
- display: block;
16427
+ display: flex;
16428
+ flex-direction: column;
16359
16429
  flex: none;
16360
16430
  position: relative;
16361
- width: 100%;
16431
+ width: 100%;
16432
+ height: 100%;
16362
16433
  }
16363
16434
  .amb-design-content::-webkit-scrollbar {
16364
16435
  width: 1px;
16365
16436
  }
16366
16437
  .amb-design-content-center-header {
16367
- position: sticky;
16368
- z-index: 4;
16369
- top: 0;
16370
16438
  height: 54px;
16371
16439
  background-color: #f7f8fa;
16372
- padding-top: 14px;
16440
+ margin: 15px;
16373
16441
  }
16374
16442
  .amb-design-tool {
16375
16443
  position: relative;
@@ -16415,21 +16483,24 @@ fieldset.amb-design-item-selected {
16415
16483
  position: relative;
16416
16484
  cursor: pointer;
16417
16485
  }
16486
+ .el-scrollbar__view:has(.amb-design-board) {
16487
+ padding: 0 15px;
16488
+ height: 100%;
16489
+ }
16418
16490
  .amb-design-board {
16491
+ min-height: 100%;
16419
16492
  margin: 0 auto;
16420
- margin-top: 12px;
16421
- overflow-y: hidden;
16422
- overflow-x: auto;
16423
16493
  background: #ffffff;
16424
16494
  border-radius: 2px 2px 2px 2px;
16425
16495
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
16426
16496
  padding-bottom: 100px;
16427
16497
  }
16428
16498
  .amb-item-ghost {
16429
- background-color: #5893ef;
16430
- height: 5px;
16431
- line-height: 5px;
16499
+ background-color: rgba(64, 158, 255, .1);
16432
16500
  overflow: hidden;
16501
+ }
16502
+ .amb-item-ghost > * {
16503
+ opacity: 0;
16433
16504
  }
16434
16505
  /* 将你的自定义样式添加到这里 */
16435
16506
  .draggable-placeholder {
@@ -16637,24 +16708,23 @@ fieldset.amb-design-item-selected {
16637
16708
  }
16638
16709
  /* 用于占位 */
16639
16710
  .amb-widget-tools-parent {
16640
- width: 100%;
16641
- min-height: 58px;
16642
- margin-bottom: 18px;
16711
+ width: 100%;
16643
16712
  }
16644
16713
  .amb-widget-tools {
16645
16714
  display: flex;
16715
+ flex-wrap: wrap;
16646
16716
  /* 垂直居中 */
16647
16717
  align-items: center;
16648
16718
  background: #fafafa;
16649
16719
  /* background:#FAFAFA; */
16650
16720
  /* background-color: var(--el-card-bg-color); */
16651
16721
  /* border:1px solid #e4e7ed; */
16652
- height: 58px;
16653
16722
  border-radius: 4px;
16654
16723
  width: transparent;
16655
16724
  padding-left: 20px;
16656
16725
  padding-right: 20px;
16657
16726
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
16727
+ min-height: 58px;
16658
16728
  /* --el-card-border-color: var(--el-border-color-light);
16659
16729
  --el-card-border-radius: 4px;
16660
16730
  --el-card-bg-color: var(--el-fill-color-blank);
@@ -16786,8 +16856,7 @@ fieldset.amb-design-item-selected {
16786
16856
  color: var(--el-text-color-primary);
16787
16857
  overflow: hidden;
16788
16858
  transition: var(--el-transition-duration);
16789
- box-shadow: var(--el-box-shadow-light);
16790
- margin-bottom: 18px;
16859
+ box-shadow: var(--el-box-shadow-light);
16791
16860
  }
16792
16861
  .amb-widget-chart-header {
16793
16862
  border-bottom: 1px solid var(--el-card-border-color);
@@ -16805,9 +16874,6 @@ fieldset.amb-design-item-selected {
16805
16874
  vertical-align: middle;
16806
16875
  justify-content: center;
16807
16876
  }
16808
- .el-card {
16809
- margin-bottom: 18px;
16810
- }
16811
16877
  .el-collapse {
16812
16878
  margin-bottom: 18px;
16813
16879
  }
@@ -16832,9 +16898,6 @@ fieldset.amb-design-item-selected {
16832
16898
  }
16833
16899
  .el-button-group > .el-button {
16834
16900
  margin-right: 0px;
16835
- }
16836
- .el-form-item > .el-form-item__content {
16837
- padding-right: 18px;
16838
16901
  }
16839
16902
  /* 设计时样式 */
16840
16903
  .amb-design-item > .el-dropdown > .el-button-group {