@tmagic/editor 1.8.0-beta.8 → 1.8.0-manmanyu.10

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 (169) hide show
  1. package/dist/es/Editor.vue_vue_type_script_setup_true_lang.js +15 -5
  2. package/dist/es/components/CodeBlockEditor.vue_vue_type_script_setup_true_lang.js +3 -3
  3. package/dist/es/components/CodeParams.vue_vue_type_script_setup_true_lang.js +1 -1
  4. package/dist/es/components/CompareForm.vue_vue_type_script_setup_true_lang.js +1 -1
  5. package/dist/es/components/ContentMenu.vue_vue_type_script_setup_true_lang.js +12 -5
  6. package/dist/es/components/FloatingBox.vue_vue_type_script_setup_true_lang.js +11 -6
  7. package/dist/es/components/Icon.vue_vue_type_script_setup_true_lang.js +1 -1
  8. package/dist/es/components/Resizer.vue_vue_type_script_setup_true_lang.js +1 -1
  9. package/dist/es/components/ScrollBar.vue_vue_type_script_setup_true_lang.js +1 -1
  10. package/dist/es/components/ScrollViewer.vue_vue_type_script_setup_true_lang.js +1 -1
  11. package/dist/es/components/SearchInput.vue_vue_type_script_setup_true_lang.js +1 -1
  12. package/dist/es/components/SplitView.vue_vue_type_script_setup_true_lang.js +1 -1
  13. package/dist/es/components/ToolButton.vue_vue_type_script_setup_true_lang.js +1 -1
  14. package/dist/es/components/Tree.vue_vue_type_script_setup_true_lang.js +1 -1
  15. package/dist/es/components/TreeNode.vue_vue_type_script_setup_true_lang.js +1 -1
  16. package/dist/es/fields/Code.vue_vue_type_script_setup_true_lang.js +5 -2
  17. package/dist/es/fields/CodeLink.vue_vue_type_script_setup_true_lang.js +5 -2
  18. package/dist/es/fields/CodeSelect.vue_vue_type_script_setup_true_lang.js +69 -44
  19. package/dist/es/fields/CodeSelectCol.vue_vue_type_script_setup_true_lang.js +6 -2
  20. package/dist/es/fields/CondOpSelect.vue_vue_type_script_setup_true_lang.js +5 -2
  21. package/dist/es/fields/DataSourceFieldSelect/FieldSelect.vue_vue_type_script_setup_true_lang.js +3 -3
  22. package/dist/es/fields/DataSourceFieldSelect/Index.vue_vue_type_script_setup_true_lang.js +11 -8
  23. package/dist/es/fields/DataSourceFields.vue_vue_type_script_setup_true_lang.js +7 -4
  24. package/dist/es/fields/DataSourceInput.vue_vue_type_script_setup_true_lang.js +5 -2
  25. package/dist/es/fields/DataSourceMethodSelect.vue_vue_type_script_setup_true_name_true_lang.js +5 -2
  26. package/dist/es/fields/DataSourceMethods.vue_vue_type_script_setup_true_lang.js +5 -2
  27. package/dist/es/fields/DataSourceMocks.vue_vue_type_script_setup_true_lang.js +7 -4
  28. package/dist/es/fields/DataSourceSelect.vue_vue_type_script_setup_true_lang.js +5 -2
  29. package/dist/es/fields/DisplayConds.vue_vue_type_script_setup_true_lang.js +9 -3
  30. package/dist/es/fields/EventSelect.vue_vue_type_script_setup_true_lang.js +102 -65
  31. package/dist/es/fields/KeyValue.vue_vue_type_script_setup_true_lang.js +5 -2
  32. package/dist/es/fields/PageFragmentSelect.vue_vue_type_script_setup_true_lang.js +5 -2
  33. package/dist/es/fields/StyleSetter/Index.vue_vue_type_script_setup_true_lang.js +6 -5
  34. package/dist/es/fields/StyleSetter/components/BackgroundPosition.vue_vue_type_script_setup_true_lang.js +5 -2
  35. package/dist/es/fields/StyleSetter/components/Border.vue_vue_type_script_setup_true_lang.js +2 -2
  36. package/dist/es/fields/StyleSetter/components/Box.vue_vue_type_script_setup_true_lang.js +1 -1
  37. package/dist/es/fields/StyleSetter/icons/align-items/Center.js +31 -0
  38. package/dist/es/fields/StyleSetter/icons/align-items/FlexEnd.js +31 -0
  39. package/dist/es/fields/StyleSetter/icons/align-items/FlexStart.js +31 -0
  40. package/dist/es/fields/StyleSetter/icons/align-items/SpaceAround.js +50 -0
  41. package/dist/es/fields/StyleSetter/icons/align-items/SpaceBetween.js +50 -0
  42. package/dist/es/fields/StyleSetter/icons/background-repeat/NoRepeat.js +7 -7
  43. package/dist/es/fields/StyleSetter/icons/background-repeat/Repeat.js +6 -3
  44. package/dist/es/fields/StyleSetter/icons/background-repeat/RepeatX.js +29 -6
  45. package/dist/es/fields/StyleSetter/icons/background-repeat/RepeatY.js +32 -6
  46. package/dist/es/fields/StyleSetter/icons/display/Block.js +1 -1
  47. package/dist/es/fields/StyleSetter/icons/display/Flex.js +1 -1
  48. package/dist/es/fields/StyleSetter/icons/display/Inline.js +1 -1
  49. package/dist/es/fields/StyleSetter/icons/display/InlineBlock.js +1 -1
  50. package/dist/es/fields/StyleSetter/icons/display/None.js +1 -1
  51. package/dist/es/fields/StyleSetter/icons/flex-direction/Column.js +11 -3
  52. package/dist/es/fields/StyleSetter/icons/flex-direction/ColumnReverse.js +11 -3
  53. package/dist/es/fields/StyleSetter/icons/flex-direction/Row.js +11 -3
  54. package/dist/es/fields/StyleSetter/icons/flex-direction/RowReverse.js +11 -3
  55. package/dist/es/fields/StyleSetter/icons/justify-content/Center.js +17 -3
  56. package/dist/es/fields/StyleSetter/icons/justify-content/FlexEnd.js +19 -3
  57. package/dist/es/fields/StyleSetter/icons/justify-content/FlexStart.js +19 -3
  58. package/dist/es/fields/StyleSetter/icons/justify-content/SpaceAround.js +37 -3
  59. package/dist/es/fields/StyleSetter/icons/justify-content/SpaceBetween.js +33 -3
  60. package/dist/es/fields/StyleSetter/icons/text-align/Center.js +1 -1
  61. package/dist/es/fields/StyleSetter/icons/text-align/Left.js +1 -1
  62. package/dist/es/fields/StyleSetter/icons/text-align/Right.js +1 -1
  63. package/dist/es/fields/StyleSetter/pro/Background.vue_vue_type_script_setup_true_lang.js +12 -7
  64. package/dist/es/fields/StyleSetter/pro/Border.vue_vue_type_script_setup_true_lang.js +1 -1
  65. package/dist/es/fields/StyleSetter/pro/Font.vue_vue_type_script_setup_true_lang.js +7 -4
  66. package/dist/es/fields/StyleSetter/pro/Layout.vue_vue_type_script_setup_true_lang.js +83 -47
  67. package/dist/es/fields/StyleSetter/pro/Position.vue_vue_type_script_setup_true_lang.js +1 -1
  68. package/dist/es/fields/StyleSetter/pro/Transform.vue_vue_type_script_setup_true_lang.js +1 -1
  69. package/dist/es/fields/UISelect.vue_vue_type_script_setup_true_lang.js +5 -2
  70. package/dist/es/icons/CenterIcon.vue_vue_type_script_setup_true_lang.js +1 -1
  71. package/dist/es/icons/CodeIcon.vue_vue_type_script_setup_true_lang.js +1 -1
  72. package/dist/es/icons/DatasourceIcon.js +17 -0
  73. package/dist/es/icons/FolderMinusIcon.vue_vue_type_script_setup_true_lang.js +1 -1
  74. package/dist/es/layouts/AddPageBox.vue_vue_type_script_setup_true_lang.js +1 -1
  75. package/dist/es/layouts/CodeEditor.vue_vue_type_script_setup_true_lang.js +1 -1
  76. package/dist/es/layouts/Framework.vue_vue_type_script_setup_true_lang.js +15 -11
  77. package/dist/es/layouts/NavMenu.vue_vue_type_script_setup_true_lang.js +1 -1
  78. package/dist/es/layouts/NavMenuColumn.vue_vue_type_script_setup_true_lang.js +1 -1
  79. package/dist/es/layouts/history-list/Bucket.vue_vue_type_script_setup_true_lang.js +1 -1
  80. package/dist/es/layouts/history-list/BucketTab.vue_vue_type_script_setup_true_lang.js +1 -1
  81. package/dist/es/layouts/history-list/GroupRow.vue_vue_type_script_setup_true_lang.js +1 -1
  82. package/dist/es/layouts/history-list/HistoryDiffDialog.vue_vue_type_script_setup_true_lang.js +1 -1
  83. package/dist/es/layouts/history-list/HistoryListPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  84. package/dist/es/layouts/history-list/InitialRow.vue_vue_type_script_setup_true_lang.js +1 -1
  85. package/dist/es/layouts/history-list/PageTab.vue_vue_type_script_setup_true_lang.js +1 -1
  86. package/dist/es/layouts/page-bar/AddButton.vue_vue_type_script_setup_true_lang.js +1 -1
  87. package/dist/es/layouts/page-bar/PageBar.vue_vue_type_script_setup_true_lang.js +1 -1
  88. package/dist/es/layouts/page-bar/PageBarScrollContainer.vue_vue_type_script_setup_true_lang.js +1 -1
  89. package/dist/es/layouts/page-bar/PageList.vue_vue_type_script_setup_true_lang.js +1 -1
  90. package/dist/es/layouts/page-bar/Search.vue_vue_type_script_setup_true_lang.js +2 -2
  91. package/dist/es/layouts/props-panel/FormPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  92. package/dist/es/layouts/props-panel/PropsPanel.vue_vue_type_script_setup_true_lang.js +11 -2
  93. package/dist/es/layouts/sidebar/ComponentListPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  94. package/dist/es/layouts/sidebar/Sidebar.vue_vue_type_script_setup_true_lang.js +1 -1
  95. package/dist/es/layouts/sidebar/code-block/CodeBlockList.vue_vue_type_script_setup_true_lang.js +1 -1
  96. package/dist/es/layouts/sidebar/code-block/CodeBlockListPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  97. package/dist/es/layouts/sidebar/data-source/DataSourceAddButton.vue_vue_type_script_setup_true_lang.js +1 -1
  98. package/dist/es/layouts/sidebar/data-source/DataSourceConfigPanel.vue_vue_type_script_setup_true_lang.js +3 -3
  99. package/dist/es/layouts/sidebar/data-source/DataSourceList.vue_vue_type_script_setup_true_lang.js +1 -1
  100. package/dist/es/layouts/sidebar/data-source/DataSourceListPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  101. package/dist/es/layouts/sidebar/layer/LayerMenu.vue_vue_type_script_setup_true_lang.js +1 -1
  102. package/dist/es/layouts/sidebar/layer/LayerNodeTool.vue_vue_type_script_setup_true_lang.js +1 -1
  103. package/dist/es/layouts/sidebar/layer/LayerPanel.vue_vue_type_script_setup_true_lang.js +1 -1
  104. package/dist/es/layouts/workspace/Breadcrumb.vue_vue_type_script_setup_true_lang.js +1 -1
  105. package/dist/es/layouts/workspace/Workspace.vue_vue_type_script_setup_true_lang.js +1 -1
  106. package/dist/es/layouts/workspace/viewer/NodeListMenu.vue_vue_type_script_setup_true_lang.js +1 -1
  107. package/dist/es/layouts/workspace/viewer/Stage.vue_vue_type_script_setup_true_lang.js +1 -1
  108. package/dist/es/layouts/workspace/viewer/StageOverlay.vue_vue_type_script_setup_true_lang.js +1 -1
  109. package/dist/es/layouts/workspace/viewer/ViewerMenu.vue_vue_type_script_setup_true_lang.js +1 -1
  110. package/dist/es/style.css +294 -37
  111. package/dist/es/utils/const.js +1 -1
  112. package/dist/es/utils/dep/worker.js +1 -1
  113. package/dist/es/utils/props.js +48 -29
  114. package/dist/style.css +294 -37
  115. package/dist/themes/magic-admin.css +2805 -0
  116. package/dist/tmagic-editor.umd.cjs +3658 -3153
  117. package/package.json +8 -8
  118. package/src/Editor.vue +13 -1
  119. package/src/components/ContentMenu.vue +10 -2
  120. package/src/components/FloatingBox.vue +13 -2
  121. package/src/editorProps.ts +9 -0
  122. package/src/fields/CodeSelect.vue +51 -40
  123. package/src/fields/CodeSelectCol.vue +1 -0
  124. package/src/fields/DataSourceFieldSelect/Index.vue +14 -5
  125. package/src/fields/DisplayConds.vue +4 -1
  126. package/src/fields/EventSelect.vue +58 -32
  127. package/src/fields/StyleSetter/Index.vue +1 -4
  128. package/src/fields/StyleSetter/components/Border.vue +1 -1
  129. package/src/fields/StyleSetter/icons/align-items/Center.vue +19 -0
  130. package/src/fields/StyleSetter/icons/align-items/FlexEnd.vue +19 -0
  131. package/src/fields/StyleSetter/icons/align-items/FlexStart.vue +19 -0
  132. package/src/fields/StyleSetter/icons/align-items/SpaceAround.vue +34 -0
  133. package/src/fields/StyleSetter/icons/align-items/SpaceBetween.vue +34 -0
  134. package/src/fields/StyleSetter/icons/align-items/index copy.ts +5 -0
  135. package/src/fields/StyleSetter/icons/align-items/index.ts +5 -0
  136. package/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue +20 -4
  137. package/src/fields/StyleSetter/icons/background-repeat/Repeat.vue +10 -28
  138. package/src/fields/StyleSetter/icons/background-repeat/RepeatX.vue +4 -5
  139. package/src/fields/StyleSetter/icons/background-repeat/RepeatY.vue +4 -5
  140. package/src/fields/StyleSetter/icons/flex-direction/Column.vue +4 -3
  141. package/src/fields/StyleSetter/icons/flex-direction/ColumnReverse.vue +4 -3
  142. package/src/fields/StyleSetter/icons/flex-direction/Row.vue +4 -3
  143. package/src/fields/StyleSetter/icons/flex-direction/RowReverse.vue +4 -3
  144. package/src/fields/StyleSetter/icons/justify-content/Center.vue +5 -2
  145. package/src/fields/StyleSetter/icons/justify-content/FlexEnd.vue +15 -2
  146. package/src/fields/StyleSetter/icons/justify-content/FlexStart.vue +15 -2
  147. package/src/fields/StyleSetter/icons/justify-content/SpaceAround.vue +28 -3
  148. package/src/fields/StyleSetter/icons/justify-content/SpaceBetween.vue +28 -2
  149. package/src/fields/StyleSetter/pro/Background.vue +11 -5
  150. package/src/fields/StyleSetter/pro/Font.vue +3 -3
  151. package/src/fields/StyleSetter/pro/Layout.vue +105 -28
  152. package/src/fields/UISelect.vue +1 -1
  153. package/src/icons/DatasourceIcon.vue +7 -0
  154. package/src/layouts/Framework.vue +7 -1
  155. package/src/layouts/props-panel/PropsPanel.vue +19 -1
  156. package/src/theme/code-block.scss +37 -0
  157. package/src/theme/common/var.scss +1 -1
  158. package/src/theme/component-list-panel.scss +2 -2
  159. package/src/theme/data-source-field.scss +4 -0
  160. package/src/theme/display-conds.scss +11 -0
  161. package/src/theme/event.scss +55 -1
  162. package/src/theme/history-list-panel.scss +9 -9
  163. package/src/theme/props-panel.scss +2 -1
  164. package/src/theme/style-setter/border.scss +14 -5
  165. package/src/theme/theme.scss +1 -0
  166. package/src/theme/themes/magic-admin/index.scss +124 -0
  167. package/src/utils/const.ts +2 -1
  168. package/src/utils/props.ts +30 -9
  169. package/types/index.d.ts +42 -6
@@ -0,0 +1,2805 @@
1
+ @charset "UTF-8";
2
+ .tmagic-design-popper {
3
+ min-width: 150px;
4
+ line-height: 1.4;
5
+ background-color: #fff;
6
+ box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
7
+ color: #606266;
8
+ border: 1px solid #e4e7ed;
9
+ border-radius: 4px;
10
+ font-size: 14px;
11
+ overflow-wrap: break-word;
12
+ box-sizing: border-box;
13
+ padding: 10px;
14
+ }
15
+ .tmagic-design-popper:focus {
16
+ outline: none;
17
+ }
18
+
19
+ .tmagic-design-popper[data-popper-placement^=top] > .tmagic-design-popper-arrow {
20
+ bottom: -4px;
21
+ }
22
+
23
+ .tmagic-design-popper[data-popper-placement^=bottom] > .tmagic-design-popper-arrow {
24
+ top: -4px;
25
+ }
26
+
27
+ .tmagic-design-popper[data-popper-placement^=left] > .tmagic-design-popper-arrow {
28
+ right: -4px;
29
+ }
30
+
31
+ .tmagic-design-popper[data-popper-placement^=right] > .tmagic-design-popper-arrow {
32
+ left: -4px;
33
+ }
34
+
35
+ .tmagic-design-popper-arrow,
36
+ .tmagic-design-popper-arrow::before {
37
+ position: absolute;
38
+ width: 8px;
39
+ height: 8px;
40
+ background: inherit;
41
+ }
42
+
43
+ .tmagic-design-popper-arrow {
44
+ visibility: hidden;
45
+ }
46
+
47
+ .tmagic-design-popper-arrow::before {
48
+ visibility: visible;
49
+ content: "";
50
+ transform: rotate(45deg);
51
+ }
52
+
53
+ .tmagic-design-card.tmagic-design-card--flat {
54
+ background: #fff;
55
+ box-shadow: none !important;
56
+ border-top: 0;
57
+ border-left: 0;
58
+ border-right: 0;
59
+ border-radius: 0;
60
+ border-bottom: 0;
61
+ }
62
+ .tmagic-design-card.tmagic-design-card--flat.m-fields-group-list-item {
63
+ margin-bottom: 0;
64
+ }
65
+ .tmagic-design-card.tmagic-design-card--flat.is-always-shadow {
66
+ box-shadow: none;
67
+ }
68
+ .tmagic-design-card.tmagic-design-card--flat .el-card__header {
69
+ border-bottom: none;
70
+ padding: 16px;
71
+ }
72
+ .tmagic-design-card.tmagic-design-card--flat .el-card__header:hover {
73
+ background: transparent;
74
+ box-shadow: none;
75
+ cursor: default;
76
+ }
77
+ .tmagic-design-card.tmagic-design-card--flat .el-card__body {
78
+ padding: 0 16px 0 16px;
79
+ }
80
+ .tmagic-design-card.tmagic-design-card--flat .el-card__body .tmagic-design-form-item:not(tbody .tmagic-design-form-item) {
81
+ margin-bottom: 16px;
82
+ }
83
+ .tmagic-design-card.tmagic-design-card--flat .el-card__body > .m-container-row {
84
+ overflow-x: hidden;
85
+ }
86
+ .m-split-title-card-container > .tmagic-design-card.tmagic-design-card--flat {
87
+ background-color: transparent;
88
+ }
89
+ .m-split-title-card-container > .tmagic-design-card.tmagic-design-card--flat > .el-card__header {
90
+ margin-bottom: 10px;
91
+ padding: 0;
92
+ font-size: 16px;
93
+ font-weight: 500;
94
+ line-height: 24px;
95
+ }
96
+ .m-split-title-card-container > .tmagic-design-card.tmagic-design-card--flat > .el-card__body {
97
+ background-color: #fff;
98
+ padding-top: 16px;
99
+ }
100
+
101
+ .m-form.m-form--magic-admin .el-collapse-item__header {
102
+ background-color: transparent;
103
+ padding: 0;
104
+ border: 0;
105
+ padding-left: 0;
106
+ font-size: 16px;
107
+ font-weight: 500;
108
+ line-height: 24px;
109
+ margin-top: 8px;
110
+ margin-bottom: 8px;
111
+ }
112
+
113
+ .m-table .el-button.action-btn + .el-button.action-btn {
114
+ margin-left: 0;
115
+ }
116
+ .m-table .keep-all {
117
+ word-break: keep-all;
118
+ }
119
+ .m-table .el-table .cell > div {
120
+ display: inline-block;
121
+ vertical-align: middle;
122
+ }
123
+ .m-table .el-table__row.el-table__row--level-1 {
124
+ color: #999;
125
+ }
126
+
127
+ .tmagic-design-form-inline .m-form-container {
128
+ display: inline-flex;
129
+ }
130
+
131
+ .m-form-container.has-tip {
132
+ display: flex;
133
+ align-items: baseline;
134
+ }
135
+ .m-form-container.has-tip .tmagic-design-form-item {
136
+ flex: 1;
137
+ }
138
+ .m-form-container .tmagic-design-form-item.show-after-diff {
139
+ background: rgb(225, 243, 216);
140
+ }
141
+ .m-form-container .tmagic-design-form-item.show-before-diff {
142
+ background: #f7dadd;
143
+ }
144
+ .m-form-container .m-form-title-extra {
145
+ margin-left: 8px;
146
+ }
147
+
148
+ .m-form-dialog .el-dialog__body {
149
+ padding: 0 !important;
150
+ }
151
+ .m-form-dialog .m-dialog-body {
152
+ padding: 0 20px;
153
+ }
154
+ .m-form-dialog .el-table .m-form-item .el-form-item {
155
+ margin-bottom: 0;
156
+ }
157
+
158
+ .m-form-drawer .el-drawer__header {
159
+ margin: 0;
160
+ }
161
+ .m-form-drawer .m-drawer-body {
162
+ height: 100%;
163
+ overflow-y: auto;
164
+ overflow-x: hidden;
165
+ }
166
+
167
+ .fade-enter-active,
168
+ .fade-leave-active {
169
+ transition: opacity 0.5s;
170
+ }
171
+
172
+ .fade-enter, .fade-leave-to {
173
+ opacity: 0;
174
+ }
175
+
176
+ .m-form .m-form-tip {
177
+ color: rgba(0, 0, 0, 0.45);
178
+ font-size: 12px;
179
+ transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
180
+ }
181
+ .m-form .m-form-schematic {
182
+ max-width: 50%;
183
+ height: 100%;
184
+ }
185
+ .m-form .tmagic-design-table .cell > div.m-form-container {
186
+ display: block;
187
+ }
188
+ .m-form .tmagic-design-table .cell > div.m-form-container.has-tip {
189
+ display: flex;
190
+ }
191
+ .m-form .tmagic-design-tabs {
192
+ margin-bottom: 10px;
193
+ }
194
+ .m-form .tmagic-design-form-item.tmagic-form-hidden > .el-form-item__label {
195
+ display: none;
196
+ }
197
+ .m-form .t-form__item.tmagic-form-hidden > .t-form__label {
198
+ display: none;
199
+ }
200
+ .m-form .t-form__item.tmagic-form-hidden > .t-form__controls {
201
+ margin-left: 0 !important;
202
+ }
203
+ .m-form.t-form:not(.t-form-inline) .t-form__item:last-of-type {
204
+ margin-bottom: var(--td-comp-margin-xxl);
205
+ }
206
+
207
+ .m-form-container .m-form-container-expand {
208
+ text-align: center;
209
+ }
210
+
211
+ .magic-datetime-picker-popper .el-picker-panel__footer button:first-child {
212
+ display: none;
213
+ }
214
+
215
+ .m-fields-text {
216
+ display: flex;
217
+ align-items: center;
218
+ width: 100%;
219
+ }
220
+ .m-fields-text--static {
221
+ gap: 6px;
222
+ min-height: 32px;
223
+ }
224
+ .m-fields-text--static .m-fields-text__prepend {
225
+ color: var(--el-text-color-secondary, #909399);
226
+ }
227
+ .m-fields-text--static .m-fields-text__value {
228
+ color: var(--el-text-color-regular, #606266);
229
+ overflow: hidden;
230
+ text-overflow: ellipsis;
231
+ white-space: nowrap;
232
+ }
233
+ .m-fields-text--static .m-fields-text__icon {
234
+ width: 16px;
235
+ height: 16px;
236
+ cursor: pointer;
237
+ }
238
+
239
+ .m-form-validate__warning {
240
+ color: var(--el-color-warning);
241
+ font-size: 12px;
242
+ width: 100%;
243
+ line-height: 1.4;
244
+ }
245
+
246
+ .tmagic-form-text-popper {
247
+ min-width: 150px;
248
+ line-height: 1.4;
249
+ background-color: #fff;
250
+ box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
251
+ color: #606266;
252
+ border: 1px solid #e4e7ed;
253
+ border-radius: 4px;
254
+ font-size: 14px;
255
+ overflow-wrap: break-word;
256
+ box-sizing: border-box;
257
+ padding: 10px;
258
+ }
259
+ .tmagic-form-text-popper:focus {
260
+ outline: none;
261
+ }
262
+
263
+ .m-container-text.m-fields-title-container .tmagic-design-form-item .el-form-item__label {
264
+ color: #0f1113;
265
+ font-weight: 500;
266
+ font-size: 16px;
267
+ }
268
+ .m-container-text.m-fields-title-container .tmagic-design-form-item {
269
+ line-height: 24px;
270
+ margin-bottom: 16px;
271
+ }
272
+
273
+ .tmagic-form-text-popper[data-popper-placement^=top] > .tmagic-form-text-popper-arrow {
274
+ bottom: -4px;
275
+ }
276
+
277
+ .tmagic-form-text-popper[data-popper-placement^=bottom] > .tmagic-form-text-popper-arrow {
278
+ top: -4px;
279
+ }
280
+
281
+ .tmagic-form-text-popper[data-popper-placement^=left] > .tmagic-form-text-popper-arrow {
282
+ right: -4px;
283
+ }
284
+
285
+ .tmagic-form-text-popper[data-popper-placement^=right] > .tmagic-form-text-popper-arrow {
286
+ left: -4px;
287
+ }
288
+
289
+ .tmagic-form-text-popper-arrow,
290
+ .tmagic-form-text-popper-arrow::before {
291
+ position: absolute;
292
+ width: 8px;
293
+ height: 8px;
294
+ background: inherit;
295
+ }
296
+
297
+ .tmagic-form-text-popper-arrow {
298
+ visibility: hidden;
299
+ }
300
+
301
+ .tmagic-form-text-popper-arrow::before {
302
+ visibility: visible;
303
+ content: "";
304
+ transform: rotate(45deg);
305
+ }
306
+
307
+ div.m-fields-link {
308
+ width: fit-content;
309
+ }
310
+
311
+ a.magic-admin-link {
312
+ width: 100%;
313
+ box-sizing: border-box;
314
+ border-radius: 4px;
315
+ border: 1px solid #e6e6e6;
316
+ background-color: #fafafa;
317
+ padding: 0 8px;
318
+ height: 28px;
319
+ display: inline-flex;
320
+ gap: 4px;
321
+ align-items: center;
322
+ text-decoration: none;
323
+ }
324
+ a.magic-admin-link i {
325
+ margin-right: 4px;
326
+ }
327
+
328
+ .m-container-fieldset.no-border-fieldset.fieldset-in-row > fieldset.m-fieldset legend {
329
+ left: 0;
330
+ }
331
+ .m-container-fieldset.no-border-fieldset > fieldset.m-fieldset {
332
+ border: 0;
333
+ }
334
+ .m-container-fieldset.no-border-fieldset > fieldset.m-fieldset legend {
335
+ position: relative;
336
+ left: -5px;
337
+ font-size: 16px;
338
+ font-weight: 500;
339
+ line-height: 24px;
340
+ padding: 0;
341
+ }
342
+ .m-container-fieldset.fieldset-in-card-fit {
343
+ border-bottom: 1px solid #e6e6e6;
344
+ }
345
+ .m-container-fieldset.fieldset-in-card-fit > fieldset.m-fieldset {
346
+ padding: 16px 0 16px 0 !important;
347
+ border: 0;
348
+ margin-top: 0;
349
+ margin-bottom: 0;
350
+ }
351
+ .m-container-fieldset.fieldset-in-card-fit > fieldset.m-fieldset legend {
352
+ position: relative;
353
+ top: 10px;
354
+ }
355
+ .m-container-fieldset.fieldset-in-card-fit.fieldset-in-card-fit-last {
356
+ padding-bottom: 0 !important;
357
+ border-bottom: 0;
358
+ }
359
+ .m-container-fieldset.fieldset-in-card-fit.fieldset-in-card-fit-first {
360
+ padding-top: 0 !important;
361
+ }
362
+ .m-container-fieldset.fieldset-in-card-fit:last-child {
363
+ padding-bottom: 0 !important;
364
+ border-bottom: 0;
365
+ }
366
+ .m-container-fieldset.fieldset-in-card-fit:first {
367
+ padding-top: 0 !important;
368
+ }
369
+
370
+ fieldset.m-fieldset {
371
+ position: relative;
372
+ border: 1px solid rgb(229, 229, 229);
373
+ margin-top: 10px;
374
+ margin-bottom: 10px;
375
+ min-inline-size: auto;
376
+ }
377
+ fieldset.m-fieldset .el-checkbox {
378
+ height: 22px;
379
+ }
380
+ fieldset.m-fieldset legend {
381
+ font-size: 14px;
382
+ position: absolute;
383
+ border: 0;
384
+ top: -10px;
385
+ left: 20px;
386
+ background: rgb(255, 255, 255);
387
+ width: auto;
388
+ padding: 0px 3px;
389
+ font-weight: bold;
390
+ line-height: 20px;
391
+ }
392
+ fieldset.m-fieldset .m-form-tip {
393
+ margin-left: 5px;
394
+ }
395
+
396
+ .m-fields-group-list .m-fields-group-list-item.tmagic-design-card--flat:last-child {
397
+ border: 0;
398
+ }
399
+ .m-fields-group-list .el-button--text {
400
+ padding: 0;
401
+ margin-bottom: 7px;
402
+ }
403
+ .m-fields-group-list .el-tree-node__expand-icon {
404
+ padding: 0;
405
+ margin-bottom: 7px;
406
+ }
407
+ .m-fields-group-list .el-tree-node__expand-icon.expand {
408
+ transform: rotate(90deg);
409
+ }
410
+ .m-fields-group-list .m-fields-group-list-item {
411
+ border-bottom: 1px solid #ebeef5;
412
+ margin-bottom: 7px;
413
+ }
414
+ .m-fields-group-list .m-fields-group-list-item:last-of-type {
415
+ border-bottom: 0;
416
+ }
417
+ .m-fields-group-list .m-fields-group-list-item .m-fields-group-list-item-header {
418
+ display: flex;
419
+ align-items: center;
420
+ gap: 8px;
421
+ }
422
+ .m-fields-group-list .m-fields-group-list-footer {
423
+ display: flex;
424
+ justify-content: space-between;
425
+ margin-top: 10px;
426
+ }
427
+
428
+ .m-form-panel .el-card__header:hover {
429
+ background: #f2f6fc;
430
+ }
431
+ .m-form-panel .el-card__header a {
432
+ color: var(--el-color-primary, #409eff);
433
+ }
434
+ .m-form-panel .el-card__body {
435
+ padding: 10px;
436
+ }
437
+ .m-form-panel .m-form-tip {
438
+ margin-left: 5px;
439
+ }
440
+
441
+ .m-container-panel:not(:last-of-type) {
442
+ margin-bottom: 20px;
443
+ }
444
+
445
+ .m-fields-table-wrap {
446
+ width: 100%;
447
+ }
448
+ .m-fields-table-wrap.fixed {
449
+ position: fixed;
450
+ height: 100%;
451
+ overflow: auto;
452
+ top: 0;
453
+ right: 0;
454
+ left: 0;
455
+ bottom: 0;
456
+ z-index: 100;
457
+ background: rgba(0, 0, 0, 0.5);
458
+ align-items: center;
459
+ display: flex;
460
+ }
461
+ .m-fields-table-wrap.fixed > .el-form-item__content {
462
+ z-index: 101;
463
+ position: relative;
464
+ margin: 10vh auto;
465
+ max-width: fit-content;
466
+ }
467
+ .m-fields-table-wrap.fixed table {
468
+ width: 95vw !important;
469
+ }
470
+
471
+ .m-fields-table {
472
+ width: 100%;
473
+ }
474
+ .m-fields-table th {
475
+ background-color: #f2f2f2 !important;
476
+ color: #333 !important;
477
+ }
478
+ .m-fields-table .el-table th {
479
+ padding: 0 !important;
480
+ }
481
+ .m-fields-table .el-table__column--dropable {
482
+ cursor: move;
483
+ }
484
+ .m-fields-table .el-form-item__content .el-input-group {
485
+ vertical-align: middle;
486
+ }
487
+ .m-fields-table.m-fields-table-item-extra tr.expanded td {
488
+ border-bottom: 0;
489
+ }
490
+ .m-fields-table .el-table__expanded-cell .m-form-tip {
491
+ margin-left: 80px;
492
+ }
493
+ .m-fields-table .el-form-item {
494
+ margin-bottom: 0;
495
+ }
496
+ .m-fields-table .tmagic-form-table-drag-target {
497
+ cursor: move;
498
+ }
499
+
500
+ .m-select {
501
+ width: 100%;
502
+ }
503
+
504
+ .magic-form-dynamic-tab .el-tabs__header.is-top {
505
+ padding-right: 8px;
506
+ }
507
+ .magic-form-dynamic-tab .el-tabs__header.is-top .el-tabs__new-tab {
508
+ margin-right: auto;
509
+ min-width: 50px;
510
+ outline: none;
511
+ border-color: var(--el-color-primary, #409eff);
512
+ color: var(--el-color-primary, #409eff);
513
+ width: 10px;
514
+ }
515
+ .magic-form-dynamic-tab .el-tabs__header.is-top .el-tabs__new-tab::before {
516
+ content: "添加";
517
+ }
518
+ .magic-form-dynamic-tab .el-tabs__header.is-top .el-tabs__new-tab .el-icon-plus {
519
+ display: none;
520
+ }
521
+
522
+ .magic-form-tab {
523
+ margin-bottom: 10px;
524
+ }
525
+
526
+ .diff-count-badge {
527
+ top: -10px;
528
+ }
529
+
530
+ .m-fields-number-range {
531
+ display: flex;
532
+ align-items: center;
533
+ }
534
+ .m-fields-number-range .split-tag {
535
+ margin: 0 5px;
536
+ }
537
+
538
+ .m-form-box {
539
+ display: flex;
540
+ flex-direction: column;
541
+ }
542
+ .m-form-box .el-box__header {
543
+ margin: 0;
544
+ }
545
+ .m-form-box .dialog-footer {
546
+ display: flex;
547
+ align-items: center;
548
+ justify-content: space-between;
549
+ }
550
+
551
+ .m-fields-radio-group__option {
552
+ display: flex;
553
+ align-items: center;
554
+ }
555
+
556
+ .m-fields-radio-group__text {
557
+ display: inline-block;
558
+ vertical-align: middle;
559
+ white-space: pre-line;
560
+ line-height: 20px;
561
+ }
562
+
563
+ .m-fields-radio-group__icon_with_text {
564
+ margin-right: 8px;
565
+ }
566
+
567
+ .m-form.m-form--magic-admin .m-container-tab:not(.magic-right-panel-tabs-top):not(.magic-form-dynamic-tab) > .tmagic-design-tabs:not(.el-tabs--border-card) > .el-tabs__content {
568
+ background-color: #fff;
569
+ padding: 16px 16px 0 16px;
570
+ border-radius: 4px;
571
+ }
572
+ .m-form.m-form--magic-admin .m-form-tip {
573
+ color: rgba(0, 0, 0, 0.55);
574
+ }
575
+ .m-form.m-form--magic-admin .tmagic-design-form-item.show-after-diff {
576
+ background: #d4edbc;
577
+ }
578
+ .m-form.m-form--magic-admin .tmagic-design-form-item.show-before-diff {
579
+ background: #fad2cf;
580
+ }
581
+ .m-form.m-form--magic-admin .m-fields-radio-group__text {
582
+ white-space: pre-line;
583
+ line-height: 20px;
584
+ }
585
+ .m-form.m-form--magic-admin .el-form-item__content .tmagic-design-radio-group .tmagic-design-radio-button {
586
+ margin-right: 8px;
587
+ height: 32px;
588
+ }
589
+ .m-form.m-form--magic-admin .el-form-item__content .tmagic-design-radio-group .tmagic-design-radio-button .el-radio-button__inner {
590
+ outline: none !important;
591
+ border: 0 !important;
592
+ height: 32px;
593
+ height: 32px;
594
+ border-radius: 16px;
595
+ padding: 0 16px;
596
+ display: inline-flex;
597
+ align-items: center;
598
+ justify-content: center;
599
+ }
600
+ .m-form.m-form--magic-admin .m-fields-data-source-field-select .tmagic-design-button {
601
+ margin-left: 8px;
602
+ }
603
+ .m-form.m-form--magic-admin .m-fields-data-source-field-select .tmagic-design-button span {
604
+ font-size: 16px;
605
+ }
606
+ .m-form.m-form--magic-admin .m-fields-group-list-item.tmagic-design-card--flat .el-card__body .m-fields-table-wrap .m-fields-table .el-table__header-wrapper thead {
607
+ height: 48px;
608
+ }
609
+ .m-form.m-form--magic-admin .m-fields-group-list-item.tmagic-design-card--flat .m-fields-group-list-item-header {
610
+ position: relative;
611
+ }
612
+ .m-form.m-form--magic-admin .m-fields-group-list-item.tmagic-design-card--flat .m-fields-group-list-item-header .delete-button {
613
+ position: absolute;
614
+ right: 0;
615
+ color: #0f1113;
616
+ }
617
+ .m-form.m-form--magic-admin .m-form-container .m-form-container-expand {
618
+ text-align: left;
619
+ }
620
+
621
+ .tmagic-design-input.search-input {
622
+ background: #fff;
623
+ color: #bbbbbb;
624
+ padding: 10px;
625
+ position: absolute;
626
+ top: 0;
627
+ left: 0;
628
+ box-sizing: border-box;
629
+ z-index: 1;
630
+ background: transparent;
631
+ }
632
+ .tmagic-design-input.search-input .el-input__prefix {
633
+ padding: 7px;
634
+ }
635
+
636
+ .m-editor-nav-menu {
637
+ display: flex;
638
+ z-index: 5;
639
+ -webkit-box-pack: justify;
640
+ justify-content: space-between;
641
+ -webkit-box-align: center;
642
+ align-items: center;
643
+ background-color: #ffffff;
644
+ font-size: 19.2px;
645
+ color: #313a40;
646
+ font-weight: 400;
647
+ box-sizing: border-box;
648
+ margin: 0px;
649
+ flex: 0 0 35px;
650
+ border-bottom: 1px solid #d8dee8;
651
+ }
652
+ .m-editor-nav-menu > div {
653
+ display: flex;
654
+ gap: 3px;
655
+ height: 100%;
656
+ z-index: 1;
657
+ align-items: center;
658
+ flex-wrap: nowrap;
659
+ overflow: hidden;
660
+ position: relative;
661
+ min-width: 0;
662
+ }
663
+ .m-editor-nav-menu .menu-center {
664
+ justify-content: center;
665
+ }
666
+ .m-editor-nav-menu .menu-right {
667
+ justify-content: flex-end;
668
+ }
669
+ .m-editor-nav-menu .m-editor-nav-menu-slot-hidden {
670
+ position: absolute;
671
+ left: -99999px;
672
+ top: 0;
673
+ visibility: hidden;
674
+ pointer-events: none;
675
+ }
676
+ .m-editor-nav-menu .m-editor-nav-menu-more-wrapper {
677
+ flex: 0 0 auto;
678
+ display: flex;
679
+ align-items: center;
680
+ height: 100%;
681
+ }
682
+ .m-editor-nav-menu .m-editor-nav-menu-more-wrapper.m-editor-nav-menu-more-wrapper-hidden {
683
+ visibility: hidden;
684
+ pointer-events: none;
685
+ }
686
+ .m-editor-nav-menu .m-editor-nav-menu-more {
687
+ flex: 0 0 auto;
688
+ }
689
+ .m-editor-nav-menu .menu-item {
690
+ flex-direction: row;
691
+ flex: 0 0 auto;
692
+ -webkit-box-align: center;
693
+ align-items: center;
694
+ vertical-align: middle;
695
+ font-size: 14px;
696
+ line-height: 1;
697
+ height: 100%;
698
+ color: rgba(255, 255, 255, 0.7);
699
+ box-sizing: inherit;
700
+ z-index: 1;
701
+ display: flex !important;
702
+ transition: all 0.3s ease 0s;
703
+ border-bottom: 2px solid transparent;
704
+ margin: 0;
705
+ white-space: nowrap;
706
+ }
707
+ .m-editor-nav-menu .menu-item .is-disabled {
708
+ opacity: 0.5;
709
+ }
710
+ .m-editor-nav-menu .menu-item .is-text {
711
+ padding: 5px;
712
+ }
713
+ .m-editor-nav-menu .menu-item .is-text > i {
714
+ color: #313a40;
715
+ }
716
+ .m-editor-nav-menu .menu-item .icon {
717
+ display: flex;
718
+ -webkit-box-align: center;
719
+ align-items: center;
720
+ height: 100%;
721
+ padding: 0px 8px;
722
+ }
723
+ .m-editor-nav-menu .menu-item .menu-item-text {
724
+ color: #313a40;
725
+ white-space: nowrap;
726
+ }
727
+ .m-editor-nav-menu .menu-item.rule .el-icon {
728
+ transform: rotate(-90deg);
729
+ }
730
+ .m-editor-nav-menu .menu-item .t-button {
731
+ padding-left: 1px;
732
+ padding-right: 1px;
733
+ }
734
+
735
+ .m-editor-nav-menu-popover .m-editor-nav-menu-overflow-list {
736
+ display: flex;
737
+ flex-direction: column;
738
+ gap: 4px;
739
+ padding: 4px 0;
740
+ }
741
+ .m-editor-nav-menu-popover .m-editor-nav-menu-overflow-list .menu-item {
742
+ display: flex;
743
+ align-items: center;
744
+ padding: 4px 8px;
745
+ cursor: pointer;
746
+ border-radius: 4px;
747
+ }
748
+ .m-editor-nav-menu-popover .m-editor-nav-menu-overflow-list .menu-item:hover {
749
+ background-color: rgba(0, 0, 0, 0.05);
750
+ }
751
+ .m-editor-nav-menu-popover .m-editor-nav-menu-overflow-list .menu-item.divider {
752
+ padding: 0;
753
+ cursor: default;
754
+ }
755
+ .m-editor-nav-menu-popover .m-editor-nav-menu-overflow-list .menu-item.divider:hover {
756
+ background-color: transparent;
757
+ }
758
+
759
+ .m-editor-history-list-popover {
760
+ padding: 0 !important;
761
+ }
762
+ .m-editor-history-list-popover .m-editor-history-list {
763
+ position: relative;
764
+ padding: 4px 8px 8px;
765
+ }
766
+ .m-editor-history-list-popover .m-editor-history-list-close {
767
+ position: absolute;
768
+ top: 4px;
769
+ right: 4px;
770
+ z-index: 2;
771
+ display: flex;
772
+ align-items: center;
773
+ height: 40px;
774
+ margin: 0;
775
+ color: #909399;
776
+ }
777
+ .m-editor-history-list-popover .m-editor-history-list-close:hover {
778
+ color: var(--el-color-primary, #409eff);
779
+ }
780
+ .m-editor-history-list-popover .m-editor-history-list-tabs .el-tabs__header,
781
+ .m-editor-history-list-popover .m-editor-history-list-tabs .t-tabs__header {
782
+ margin-bottom: 4px;
783
+ }
784
+ .m-editor-history-list-popover .m-editor-history-list-empty {
785
+ padding: 24px 0;
786
+ text-align: center;
787
+ color: #909399;
788
+ font-size: 12px;
789
+ }
790
+ .m-editor-history-list-popover .m-editor-history-list-ul {
791
+ margin: 0;
792
+ padding: 0;
793
+ list-style: none;
794
+ }
795
+ .m-editor-history-list-popover .m-editor-history-list-toolbar {
796
+ display: flex;
797
+ align-items: center;
798
+ justify-content: flex-end;
799
+ padding: 0 4px 4px;
800
+ }
801
+ .m-editor-history-list-popover .m-editor-history-list-clear {
802
+ padding: 2px 8px;
803
+ border-radius: 4px;
804
+ font-size: 12px;
805
+ color: #f56c6c;
806
+ cursor: pointer;
807
+ user-select: none;
808
+ }
809
+ .m-editor-history-list-popover .m-editor-history-list-clear:hover {
810
+ background-color: rgba(245, 108, 108, 0.12);
811
+ }
812
+ .m-editor-history-list-popover .m-editor-history-list-item {
813
+ display: flex;
814
+ align-items: center;
815
+ gap: 6px;
816
+ padding: 6px 8px;
817
+ border-radius: 4px;
818
+ font-size: 12px;
819
+ line-height: 1.4;
820
+ color: #303133;
821
+ cursor: default;
822
+ }
823
+ .m-editor-history-list-popover .m-editor-history-list-item:not(.m-editor-history-list-group.is-merged):hover {
824
+ background-color: rgba(0, 0, 0, 0.04);
825
+ }
826
+ .m-editor-history-list-popover .m-editor-history-list-item.is-undone {
827
+ color: #c0c4cc;
828
+ }
829
+ .m-editor-history-list-popover .m-editor-history-list-item.is-undone .m-editor-history-list-item-op {
830
+ opacity: 0.5;
831
+ }
832
+ .m-editor-history-list-popover .m-editor-history-list-item.is-current:not(.m-editor-history-list-group.is-merged) {
833
+ background-color: rgba(64, 158, 255, 0.1);
834
+ box-shadow: inset 2px 0 0 var(--el-color-primary, #409eff);
835
+ }
836
+ .m-editor-history-list-popover .m-editor-history-list-item.is-current:not(.m-editor-history-list-group.is-merged):hover {
837
+ background-color: rgba(64, 158, 255, 0.16);
838
+ }
839
+ .m-editor-history-list-popover .m-editor-history-list-item.is-current:not(.m-editor-history-list-group.is-merged) .m-editor-history-list-item-desc {
840
+ font-weight: 600;
841
+ color: var(--el-color-primary, #409eff);
842
+ }
843
+ .m-editor-history-list-popover .m-editor-history-list-group {
844
+ flex-direction: column;
845
+ align-items: stretch;
846
+ gap: 0;
847
+ }
848
+ .m-editor-history-list-popover .m-editor-history-list-group .m-editor-history-list-group-head {
849
+ display: flex;
850
+ align-items: center;
851
+ gap: 6px;
852
+ cursor: default;
853
+ }
854
+ .m-editor-history-list-popover .m-editor-history-list-group .m-editor-history-list-group-head.is-clickable {
855
+ cursor: pointer;
856
+ }
857
+ .m-editor-history-list-popover .m-editor-history-list-group .m-editor-history-list-group-toggle {
858
+ flex: 0 0 auto;
859
+ width: 16px;
860
+ text-align: center;
861
+ color: #909399;
862
+ font-size: 12px;
863
+ user-select: none;
864
+ transition: transform 0.15s ease;
865
+ pointer-events: none;
866
+ }
867
+ .m-editor-history-list-popover .m-editor-history-list-group .m-editor-history-list-group-toggle.is-expanded {
868
+ transform: rotate(180deg);
869
+ }
870
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged {
871
+ margin: 4px 0;
872
+ padding: 4px 8px 6px;
873
+ background-color: rgba(47, 84, 235, 0.06);
874
+ border: 1px solid rgba(47, 84, 235, 0.18);
875
+ border-left: 3px solid #2f54eb;
876
+ border-radius: 4px;
877
+ }
878
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged:hover {
879
+ background-color: rgba(47, 84, 235, 0.1);
880
+ }
881
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged .m-editor-history-list-group-head {
882
+ font-weight: 600;
883
+ color: #1d39c4;
884
+ }
885
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged.is-undone {
886
+ background-color: rgba(192, 196, 204, 0.08);
887
+ border-color: rgba(192, 196, 204, 0.4);
888
+ border-left-color: #c0c4cc;
889
+ }
890
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged.is-undone .m-editor-history-list-group-head {
891
+ color: #c0c4cc;
892
+ }
893
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged.is-current {
894
+ background-color: rgba(64, 158, 255, 0.08);
895
+ border-color: rgba(64, 158, 255, 0.3);
896
+ border-left-color: var(--el-color-primary, #409eff);
897
+ box-shadow: none;
898
+ }
899
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged.is-current .m-editor-history-list-group-head {
900
+ color: var(--el-color-primary, #409eff);
901
+ }
902
+ .m-editor-history-list-popover .m-editor-history-list-substeps {
903
+ margin: 6px 0 0 6px;
904
+ padding: 0;
905
+ list-style: none;
906
+ border-left: 1px dashed rgba(47, 84, 235, 0.45);
907
+ }
908
+ .m-editor-history-list-popover .m-editor-history-list-substeps li {
909
+ display: flex;
910
+ align-items: center;
911
+ gap: 6px;
912
+ padding: 3px 8px;
913
+ font-size: 11px;
914
+ color: #606266;
915
+ cursor: default;
916
+ border-radius: 3px;
917
+ }
918
+ .m-editor-history-list-popover .m-editor-history-list-substeps li.is-clickable {
919
+ cursor: pointer;
920
+ }
921
+ .m-editor-history-list-popover .m-editor-history-list-substeps li.is-clickable:hover {
922
+ background-color: rgba(47, 84, 235, 0.1);
923
+ }
924
+ .m-editor-history-list-popover .m-editor-history-list-substeps li.is-undone {
925
+ color: #c0c4cc;
926
+ }
927
+ .m-editor-history-list-popover .m-editor-history-list-substeps li.is-current {
928
+ color: var(--el-color-primary, #409eff);
929
+ font-weight: 600;
930
+ background-color: rgba(64, 158, 255, 0.08);
931
+ border-radius: 3px;
932
+ }
933
+ .m-editor-history-list-popover .m-editor-history-list-item-current {
934
+ flex: 0 0 auto;
935
+ padding: 0 6px;
936
+ border-radius: 2px;
937
+ font-size: 10px;
938
+ line-height: 16px;
939
+ color: #fff;
940
+ background-color: var(--el-color-primary, #409eff);
941
+ font-weight: 500;
942
+ }
943
+ .m-editor-history-list-popover .m-editor-history-list-item-index {
944
+ flex: 0 0 auto;
945
+ min-width: 30px;
946
+ text-align: right;
947
+ color: #909399;
948
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
949
+ font-size: 11px;
950
+ font-weight: 400;
951
+ white-space: nowrap;
952
+ }
953
+ .m-editor-history-list-popover .m-editor-history-list-group.is-merged > .m-editor-history-list-group-head > .m-editor-history-list-item-index {
954
+ min-width: 0;
955
+ text-align: left;
956
+ }
957
+ .m-editor-history-list-popover .m-editor-history-list-item-time {
958
+ flex: 0 0 auto;
959
+ color: #a8abb2;
960
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
961
+ font-size: 11px;
962
+ font-weight: 400;
963
+ white-space: nowrap;
964
+ }
965
+ .m-editor-history-list-popover .m-editor-history-list-item-op {
966
+ flex: 0 0 auto;
967
+ padding: 0 6px;
968
+ border-radius: 2px;
969
+ font-size: 11px;
970
+ line-height: 18px;
971
+ color: #fff;
972
+ background-color: #909399;
973
+ }
974
+ .m-editor-history-list-popover .m-editor-history-list-item-op.op-add {
975
+ background-color: #67c23a;
976
+ }
977
+ .m-editor-history-list-popover .m-editor-history-list-item-op.op-remove {
978
+ background-color: #f56c6c;
979
+ }
980
+ .m-editor-history-list-popover .m-editor-history-list-item-op.op-update {
981
+ background-color: #e6a23c;
982
+ }
983
+ .m-editor-history-list-popover .m-editor-history-list-item-op.op-initial {
984
+ background-color: #909399;
985
+ }
986
+ .m-editor-history-list-popover .m-editor-history-list-initial {
987
+ cursor: default;
988
+ color: #606266;
989
+ border-top: 1px dashed #dcdfe6;
990
+ margin-top: 4px;
991
+ padding-top: 8px;
992
+ }
993
+ .m-editor-history-list-popover .m-editor-history-list-initial.is-clickable {
994
+ cursor: pointer;
995
+ }
996
+ .m-editor-history-list-popover .m-editor-history-list-initial .m-editor-history-list-item-desc {
997
+ font-style: italic;
998
+ }
999
+ .m-editor-history-list-popover .m-editor-history-list-item-desc {
1000
+ flex: 1 1 auto;
1001
+ overflow: hidden;
1002
+ text-overflow: ellipsis;
1003
+ white-space: nowrap;
1004
+ }
1005
+ .m-editor-history-list-popover .m-editor-history-list-item-source {
1006
+ flex: 0 0 auto;
1007
+ padding: 0 6px;
1008
+ border: 1px solid #dcdfe6;
1009
+ border-radius: 8px;
1010
+ font-size: 10px;
1011
+ line-height: 14px;
1012
+ color: #909399;
1013
+ background-color: #f4f4f5;
1014
+ white-space: nowrap;
1015
+ font-weight: 400;
1016
+ }
1017
+ .m-editor-history-list-popover .m-editor-history-list-item-operator {
1018
+ flex: 0 0 auto;
1019
+ padding: 0 6px;
1020
+ border: 1px solid #c6e2ff;
1021
+ border-radius: 8px;
1022
+ font-size: 10px;
1023
+ line-height: 14px;
1024
+ color: #409eff;
1025
+ background-color: #ecf5ff;
1026
+ white-space: nowrap;
1027
+ font-weight: 400;
1028
+ }
1029
+ .m-editor-history-list-popover .m-editor-history-list-item-saved {
1030
+ flex: 0 0 auto;
1031
+ padding: 0 6px;
1032
+ border-radius: 8px;
1033
+ font-size: 10px;
1034
+ line-height: 16px;
1035
+ color: #fff;
1036
+ background-color: #67c23a;
1037
+ white-space: nowrap;
1038
+ font-weight: 500;
1039
+ letter-spacing: 0.2px;
1040
+ }
1041
+ .m-editor-history-list-popover .m-editor-history-list-item-merge {
1042
+ flex: 0 0 auto;
1043
+ padding: 0 8px;
1044
+ border-radius: 8px;
1045
+ font-size: 10px;
1046
+ line-height: 16px;
1047
+ color: #fff;
1048
+ background-color: #2f54eb;
1049
+ font-weight: 500;
1050
+ letter-spacing: 0.2px;
1051
+ }
1052
+ .m-editor-history-list-popover .m-editor-history-list-item-actions {
1053
+ display: none;
1054
+ flex: 0 0 auto;
1055
+ align-items: center;
1056
+ gap: 6px;
1057
+ }
1058
+ .m-editor-history-list-popover .m-editor-history-list-group-head:hover > .m-editor-history-list-item-actions,
1059
+ .m-editor-history-list-popover .m-editor-history-list-substeps > li:hover > .m-editor-history-list-item-actions,
1060
+ .m-editor-history-list-popover .m-editor-history-list-initial:hover > .m-editor-history-list-item-actions {
1061
+ display: flex;
1062
+ }
1063
+ .m-editor-history-list-popover .m-editor-history-list-item-diff {
1064
+ flex: 0 0 auto;
1065
+ padding: 0 6px;
1066
+ border-radius: 2px;
1067
+ font-size: 10px;
1068
+ line-height: 16px;
1069
+ color: var(--el-color-primary, #409eff);
1070
+ background-color: rgba(64, 158, 255, 0.1);
1071
+ cursor: pointer;
1072
+ user-select: none;
1073
+ }
1074
+ .m-editor-history-list-popover .m-editor-history-list-item-diff:hover {
1075
+ background-color: rgba(64, 158, 255, 0.2);
1076
+ }
1077
+ .m-editor-history-list-popover .m-editor-history-list-item-goto {
1078
+ flex: 0 0 auto;
1079
+ padding: 0 6px;
1080
+ border-radius: 2px;
1081
+ font-size: 10px;
1082
+ line-height: 16px;
1083
+ color: #529b2e;
1084
+ background-color: rgba(103, 194, 58, 0.12);
1085
+ cursor: pointer;
1086
+ user-select: none;
1087
+ }
1088
+ .m-editor-history-list-popover .m-editor-history-list-item-goto:hover {
1089
+ background-color: rgba(103, 194, 58, 0.24);
1090
+ }
1091
+ .m-editor-history-list-popover .m-editor-history-list-item-revert {
1092
+ flex: 0 0 auto;
1093
+ padding: 0 6px;
1094
+ border-radius: 2px;
1095
+ font-size: 10px;
1096
+ line-height: 16px;
1097
+ color: #f56c6c;
1098
+ background-color: rgba(245, 108, 108, 0.12);
1099
+ cursor: pointer;
1100
+ user-select: none;
1101
+ }
1102
+ .m-editor-history-list-popover .m-editor-history-list-item-revert:hover {
1103
+ background-color: rgba(245, 108, 108, 0.25);
1104
+ }
1105
+ .m-editor-history-list-popover .m-editor-history-list-substep-desc {
1106
+ flex: 1 1 auto;
1107
+ overflow: hidden;
1108
+ text-overflow: ellipsis;
1109
+ white-space: nowrap;
1110
+ }
1111
+ .m-editor-history-list-popover .m-editor-history-list-bucket {
1112
+ margin-bottom: 8px;
1113
+ }
1114
+ .m-editor-history-list-popover .m-editor-history-list-bucket:last-child {
1115
+ margin-bottom: 0;
1116
+ }
1117
+ .m-editor-history-list-popover .m-editor-history-list-bucket-title {
1118
+ display: flex;
1119
+ align-items: center;
1120
+ gap: 6px;
1121
+ padding: 4px 8px;
1122
+ font-size: 12px;
1123
+ font-weight: 500;
1124
+ color: #606266;
1125
+ background-color: #f5f7fa;
1126
+ border-radius: 4px;
1127
+ }
1128
+ .m-editor-history-list-popover .m-editor-history-list-bucket-title code {
1129
+ flex: 1 1 auto;
1130
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1131
+ font-size: 11px;
1132
+ color: var(--el-color-primary, #409eff);
1133
+ overflow: hidden;
1134
+ text-overflow: ellipsis;
1135
+ white-space: nowrap;
1136
+ }
1137
+ .m-editor-history-list-popover .m-editor-history-list-bucket-count {
1138
+ flex: 0 0 auto;
1139
+ color: #909399;
1140
+ font-weight: 400;
1141
+ font-size: 11px;
1142
+ }
1143
+
1144
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-body {
1145
+ display: flex;
1146
+ flex-direction: column;
1147
+ }
1148
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-notice {
1149
+ margin-bottom: 8px;
1150
+ padding: 8px 12px;
1151
+ background-color: #fdf6ec;
1152
+ border: 1px solid #faecd8;
1153
+ border-radius: 4px;
1154
+ color: #e6a23c;
1155
+ font-size: 13px;
1156
+ line-height: 1.5;
1157
+ }
1158
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-header {
1159
+ display: flex;
1160
+ align-items: center;
1161
+ justify-content: space-between;
1162
+ margin-bottom: 8px;
1163
+ padding: 8px 12px;
1164
+ background-color: #f5f7fa;
1165
+ border-radius: 4px;
1166
+ gap: 12px;
1167
+ }
1168
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-controls {
1169
+ display: flex;
1170
+ align-items: center;
1171
+ flex: 0 0 auto;
1172
+ gap: 8px;
1173
+ }
1174
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-view,
1175
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-mode {
1176
+ flex: 0 0 auto;
1177
+ }
1178
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-target {
1179
+ flex: 1 1 auto;
1180
+ font-size: 13px;
1181
+ font-weight: 500;
1182
+ color: #303133;
1183
+ overflow: hidden;
1184
+ text-overflow: ellipsis;
1185
+ white-space: nowrap;
1186
+ }
1187
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-legend {
1188
+ display: flex;
1189
+ align-items: center;
1190
+ gap: 6px;
1191
+ margin-bottom: 12px;
1192
+ padding: 0 4px;
1193
+ }
1194
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-arrow {
1195
+ color: #909399;
1196
+ font-size: 12px;
1197
+ }
1198
+ .m-editor-history-diff-dialog .m-editor-history-diff-dialog-tip {
1199
+ margin-left: 8px;
1200
+ color: #e6a23c;
1201
+ font-size: 12px;
1202
+ }
1203
+
1204
+ .m-editor {
1205
+ display: flex;
1206
+ flex-direction: column;
1207
+ width: 100%;
1208
+ }
1209
+ .m-editor-content {
1210
+ height: calc(100% - 35px);
1211
+ }
1212
+ .m-editor-framework-center {
1213
+ position: relative;
1214
+ transform: translateZ(0);
1215
+ flex: 1;
1216
+ }
1217
+ .m-editor-framework-left {
1218
+ background-color: #ffffff;
1219
+ }
1220
+ .m-editor-framework-center .el-scrollbar__view {
1221
+ height: 100%;
1222
+ min-height: 100%;
1223
+ display: flex;
1224
+ justify-content: center;
1225
+ align-items: center;
1226
+ }
1227
+ .m-editor-empty-panel {
1228
+ display: flex;
1229
+ flex: 1;
1230
+ justify-content: center;
1231
+ align-items: center;
1232
+ flex-direction: column;
1233
+ height: calc(100% - 32px);
1234
+ }
1235
+ .m-editor-empty-content {
1236
+ display: flex;
1237
+ justify-content: space-evenly;
1238
+ flex-direction: row;
1239
+ width: 100%;
1240
+ }
1241
+ .m-editor-empty-button {
1242
+ border: 3px solid rgba(0, 0, 0, 0.2);
1243
+ padding: 10px 40px;
1244
+ color: rgba(0, 0, 0, 0.6);
1245
+ cursor: pointer;
1246
+ }
1247
+ .m-editor-empty-button i {
1248
+ height: 180px;
1249
+ line-height: 180px;
1250
+ font-size: 100px;
1251
+ }
1252
+ .m-editor-empty-button p {
1253
+ text-align: center;
1254
+ font-size: 20px;
1255
+ margin-top: 5px;
1256
+ }
1257
+ .m-editor-empty-button:hover {
1258
+ border-color: var(--el-color-primary, #2882e0);
1259
+ color: var(--el-color-primary, #2882e0);
1260
+ }
1261
+
1262
+ .m-editor-sidebar {
1263
+ display: flex;
1264
+ height: 100%;
1265
+ position: relative;
1266
+ }
1267
+ .m-editor-sidebar .m-editor-sidebar-header {
1268
+ background: var(--el-color-primary, #2882e0);
1269
+ height: 100%;
1270
+ width: 40px;
1271
+ }
1272
+ .m-editor-sidebar .m-editor-sidebar-header .m-editor-sidebar-header-item {
1273
+ line-height: 15px;
1274
+ height: auto;
1275
+ padding: 8px;
1276
+ color: rgb(255, 255, 255);
1277
+ box-sizing: border-box;
1278
+ cursor: pointer;
1279
+ }
1280
+ .m-editor-sidebar .m-editor-sidebar-header .m-editor-sidebar-header-item.is-active {
1281
+ background: #ffffff;
1282
+ }
1283
+ .m-editor-sidebar .m-editor-sidebar-header .m-editor-sidebar-header-item.is-active i {
1284
+ color: #353140;
1285
+ }
1286
+ .m-editor-sidebar .m-editor-sidebar-header .m-editor-sidebar-header-item.is-active .magic-editor-tab-panel-title {
1287
+ color: #353140;
1288
+ }
1289
+ .m-editor-sidebar .m-editor-sidebar-header i {
1290
+ font-size: 25px;
1291
+ color: rgba(255, 255, 255, 0.6);
1292
+ }
1293
+ .m-editor-sidebar .m-editor-sidebar-header i:hover {
1294
+ color: rgb(255, 255, 255);
1295
+ }
1296
+ .m-editor-sidebar .m-editor-sidebar-header .magic-editor-tab-panel-title {
1297
+ font-size: 12px;
1298
+ white-space: normal;
1299
+ user-select: none;
1300
+ }
1301
+ .m-editor-sidebar .m-editor-sidebar-content {
1302
+ height: 100%;
1303
+ width: calc(100% - 40px);
1304
+ overflow: auto;
1305
+ }
1306
+ .m-editor-sidebar .m-editor-sidebar-tips {
1307
+ position: absolute;
1308
+ bottom: 0;
1309
+ left: 40px;
1310
+ width: calc(100% - 40px);
1311
+ text-align: center;
1312
+ background-color: rgba(252.5, 245.7, 235.5, 0.9);
1313
+ color: #e6a23c;
1314
+ padding: 5px 0;
1315
+ font-size: 12px;
1316
+ }
1317
+ .m-editor-sidebar .m-editor-sidebar-tips .close-icon {
1318
+ cursor: pointer;
1319
+ position: absolute;
1320
+ right: 15px;
1321
+ }
1322
+ .m-editor-sidebar .fold-icon {
1323
+ position: absolute;
1324
+ bottom: 8px;
1325
+ left: 0px;
1326
+ width: 45px;
1327
+ padding-left: 8px;
1328
+ color: #fff;
1329
+ font-size: 32px;
1330
+ opacity: 0.8;
1331
+ cursor: pointer;
1332
+ }
1333
+ .m-editor-sidebar .fold-icon:hover {
1334
+ background: rgba(0, 0, 0, 0.2);
1335
+ }
1336
+
1337
+ .m-editor-slide-list-box > div:first-child {
1338
+ min-width: 240px;
1339
+ }
1340
+ .m-editor-slide-list-box .m-form-box {
1341
+ border-left: 1px solid #e0e0e0;
1342
+ }
1343
+
1344
+ .m-editor-layer-panel {
1345
+ background: #ffffff;
1346
+ }
1347
+ .m-editor-layer-panel .m-editor-tree {
1348
+ padding-top: 48px;
1349
+ }
1350
+ .m-editor-layer-panel .m-editor-tree .tree-node-tool {
1351
+ padding-right: 10px;
1352
+ }
1353
+ .m-editor-layer-panel .m-editor-tree .tree-node-tool .tmagic-design-button + .tmagic-design-button {
1354
+ margin-left: 2px;
1355
+ }
1356
+ .m-editor-layer-panel .m-editor-tree .tree-node.selected .tree-node-tool .tmagic-design-button {
1357
+ color: #fff;
1358
+ }
1359
+ .m-editor-layer-panel .search-wrapper {
1360
+ display: flex;
1361
+ align-items: center;
1362
+ justify-content: center;
1363
+ position: absolute;
1364
+ top: 0;
1365
+ width: 100%;
1366
+ z-index: 1;
1367
+ }
1368
+ .m-editor-layer-panel .search-wrapper .search-input {
1369
+ flex: 1;
1370
+ position: relative;
1371
+ }
1372
+ .m-editor-layer-panel .search-wrapper .tmagic-design-button {
1373
+ margin-right: 10px;
1374
+ }
1375
+
1376
+ .ui-component-panel.tmagic-design-collapse {
1377
+ border-top: 0 !important;
1378
+ margin-top: 48px;
1379
+ background-color: #ffffff;
1380
+ }
1381
+ .ui-component-panel.tmagic-design-collapse .tmagic-design-collapse-item > div:first-of-type {
1382
+ border-bottom: 1px solid #d9dbdd;
1383
+ margin-bottom: 10px;
1384
+ }
1385
+ .ui-component-panel.tmagic-design-collapse .tmagic-design-collapse-item > .el-collapse-item__header {
1386
+ padding: 0 10px;
1387
+ box-sizing: border-box;
1388
+ }
1389
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__title {
1390
+ display: flex;
1391
+ align-items: center;
1392
+ gap: 3px;
1393
+ }
1394
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__header,
1395
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__header {
1396
+ background: #ffffff;
1397
+ color: #313a40;
1398
+ height: 25px;
1399
+ line-height: 25px;
1400
+ padding-left: 10px;
1401
+ font-size: 12px;
1402
+ }
1403
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__header i,
1404
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__header i {
1405
+ margin-right: 5px;
1406
+ font-size: 14px;
1407
+ }
1408
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap,
1409
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body {
1410
+ background: #ffffff;
1411
+ border-bottom: 0;
1412
+ }
1413
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .el-collapse-item__content,
1414
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .t-collapse-panel__content,
1415
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .el-collapse-item__content,
1416
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .t-collapse-panel__content {
1417
+ padding: 10px;
1418
+ display: flex;
1419
+ flex-wrap: wrap;
1420
+ }
1421
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .component-item,
1422
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .component-item {
1423
+ display: flex;
1424
+ overflow: hidden;
1425
+ text-overflow: ellipsis;
1426
+ margin: 5px 10px;
1427
+ box-sizing: border-box;
1428
+ color: #313a40;
1429
+ flex-direction: column;
1430
+ width: 42px;
1431
+ cursor: pointer;
1432
+ }
1433
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .component-item i,
1434
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .component-item i {
1435
+ font-size: 20px;
1436
+ background: #fff;
1437
+ height: 40px;
1438
+ width: 40px;
1439
+ line-height: 40px;
1440
+ border-radius: 5px;
1441
+ color: #909090;
1442
+ border: 1px solid #d9dbdd;
1443
+ display: flex;
1444
+ justify-content: space-evenly;
1445
+ align-items: center;
1446
+ margin-bottom: 5px;
1447
+ }
1448
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .component-item i:hover,
1449
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .component-item i:hover {
1450
+ background: var(--el-color-primary, #2882e0);
1451
+ color: #fff;
1452
+ border-color: var(--el-color-primary, #4e8be1);
1453
+ }
1454
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .component-item span,
1455
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .component-item span {
1456
+ font-size: 12px;
1457
+ text-align: center;
1458
+ }
1459
+ .ui-component-panel.tmagic-design-collapse .el-collapse-item__wrap .component-item .el-tooltip,
1460
+ .ui-component-panel.tmagic-design-collapse .t-collapse-panel__body .component-item .el-tooltip {
1461
+ width: 50px;
1462
+ height: 30px;
1463
+ line-height: 15px;
1464
+ display: block;
1465
+ white-space: normal;
1466
+ margin: 0;
1467
+ }
1468
+ .ui-component-panel .t-collapse {
1469
+ margin-top: 0;
1470
+ padding-top: 48px;
1471
+ position: relative;
1472
+ }
1473
+
1474
+ .m-editor-resizer {
1475
+ border-left: 2px solid transparent;
1476
+ border-right: 2px solid transparent;
1477
+ width: 8px;
1478
+ margin: 0 -5px;
1479
+ height: 100%;
1480
+ opacity: 0.8;
1481
+ background: padding-box #d8dee8;
1482
+ box-sizing: border-box;
1483
+ cursor: col-resize;
1484
+ z-index: 1;
1485
+ position: relative;
1486
+ }
1487
+ .m-editor-resizer:hover {
1488
+ border-color: #d8dee8;
1489
+ }
1490
+ .m-editor-resizer:hover .icon-container {
1491
+ visibility: visible;
1492
+ opacity: 1;
1493
+ }
1494
+ .m-editor-resizer.m-editor-resizer-dragging::after {
1495
+ content: "";
1496
+ position: absolute;
1497
+ width: 600px;
1498
+ height: 100%;
1499
+ left: 0;
1500
+ }
1501
+ .m-editor-resizer.m-editor-resizer-dragging::before {
1502
+ content: "";
1503
+ position: absolute;
1504
+ width: 600px;
1505
+ height: 100%;
1506
+ right: 0;
1507
+ }
1508
+ .m-editor-resizer .icon-container {
1509
+ visibility: hidden;
1510
+ opacity: 0;
1511
+ transition: opacity 0.4s;
1512
+ width: 20px;
1513
+ height: 120px;
1514
+ line-height: 120px;
1515
+ text-align: center;
1516
+ background: #d8dee8;
1517
+ position: absolute;
1518
+ top: 50%;
1519
+ left: 50%;
1520
+ transform: translate(-50%, -50%);
1521
+ cursor: pointer;
1522
+ }
1523
+ .m-editor-resizer .icon-container.position-left {
1524
+ transform: translate(calc(-100% - 4px), -50%);
1525
+ }
1526
+ .m-editor-resizer .icon-container.position-right {
1527
+ transform: translate(calc(100% + 4px), -50%);
1528
+ }
1529
+ .m-editor-resizer .icon {
1530
+ color: #fff;
1531
+ font-size: 18px;
1532
+ }
1533
+
1534
+ .m-editor-workspace {
1535
+ height: 100%;
1536
+ width: 100%;
1537
+ user-select: none;
1538
+ }
1539
+ .m-editor-workspace:focus-visible {
1540
+ outline: 0;
1541
+ }
1542
+
1543
+ .m-editor-page-bar-tabs {
1544
+ position: fixed;
1545
+ bottom: 0;
1546
+ left: 0;
1547
+ width: 100%;
1548
+ user-select: none;
1549
+ }
1550
+
1551
+ .m-editor-page-list-item {
1552
+ display: flex;
1553
+ width: 100%;
1554
+ height: 32px;
1555
+ line-height: 32px;
1556
+ color: #313a40;
1557
+ z-index: 2;
1558
+ overflow: hidden;
1559
+ }
1560
+ .m-editor-page-list-item:hover {
1561
+ background-color: #f3f5f9;
1562
+ }
1563
+
1564
+ .m-editor-page-bar {
1565
+ display: flex;
1566
+ width: 100%;
1567
+ height: 32px;
1568
+ line-height: 32px;
1569
+ color: #313a40;
1570
+ background-color: #f3f3f3;
1571
+ border-top: 1px solid #d9dbdd;
1572
+ z-index: 2;
1573
+ overflow: hidden;
1574
+ }
1575
+ .m-editor-page-bar-items {
1576
+ display: flex;
1577
+ transition: transform 0.3s;
1578
+ }
1579
+ .m-editor-page-bar-item {
1580
+ padding: 0 10px;
1581
+ cursor: pointer;
1582
+ border-right: 1px solid #d9dbdd;
1583
+ display: flex;
1584
+ justify-items: center;
1585
+ align-items: center;
1586
+ background-color: #f3f3f3;
1587
+ white-space: nowrap;
1588
+ }
1589
+ .m-editor-page-bar-item.active {
1590
+ background-color: #fff;
1591
+ cursor: text;
1592
+ }
1593
+ .m-editor-page-bar-item.active .m-editor-page-bar-menu-icon {
1594
+ cursor: pointer;
1595
+ }
1596
+ .m-editor-page-bar-item-icon {
1597
+ position: relative;
1598
+ z-index: 1;
1599
+ }
1600
+ .m-editor-page-bar-item-icon .icon-active {
1601
+ font-weight: bold;
1602
+ color: var(--el-color-primary, #2882e0);
1603
+ }
1604
+ .m-editor-page-bar-item-title {
1605
+ max-width: 150px;
1606
+ text-overflow: ellipsis;
1607
+ white-space: nowrap;
1608
+ overflow: hidden;
1609
+ }
1610
+ .m-editor-page-bar-item-left-icon, .m-editor-page-bar-item-right-icon {
1611
+ position: absolute;
1612
+ right: 0;
1613
+ top: 0;
1614
+ height: 100%;
1615
+ }
1616
+ .m-editor-page-bar-item-left-icon {
1617
+ right: 34px;
1618
+ }
1619
+
1620
+ .page-bar-popover.tmagic-design-popper {
1621
+ padding: 4px 0;
1622
+ }
1623
+ .page-bar-popover .page-bar-popover-wrapper {
1624
+ max-height: calc(100vh - 32px - 20px);
1625
+ overflow: auto;
1626
+ }
1627
+ .page-bar-popover .menu-item {
1628
+ cursor: pointer;
1629
+ transition: all 0.2s ease 0s;
1630
+ padding: 5px 14px;
1631
+ }
1632
+ .page-bar-popover .menu-item:hover {
1633
+ background-color: #f3f5f9;
1634
+ }
1635
+ .page-bar-popover .menu-item.active .tmagic-design-button {
1636
+ color: var(--el-color-primary, #2882e0);
1637
+ }
1638
+
1639
+ .m-editor-page-bar-search-panel {
1640
+ position: absolute;
1641
+ bottom: 32px;
1642
+ border: 1px solid #d9dbdd;
1643
+ padding: 6px 10px;
1644
+ width: 100%;
1645
+ box-sizing: border-box;
1646
+ }
1647
+ .m-editor-page-bar-search-panel .tmagic-design-form-item {
1648
+ margin-bottom: 0;
1649
+ }
1650
+
1651
+ .m-editor-props-panel {
1652
+ height: 100%;
1653
+ position: relative;
1654
+ --props-style-panel-width: 300px;
1655
+ }
1656
+ .m-editor-props-panel .m-editor-props-form-panel {
1657
+ padding-bottom: 10px;
1658
+ position: relative;
1659
+ height: 100%;
1660
+ box-sizing: border-box;
1661
+ }
1662
+ .m-editor-props-panel .m-editor-props-form-panel .tmagic-design-scrollbar {
1663
+ height: 100%;
1664
+ }
1665
+ .m-editor-props-panel .m-editor-props-property-panel.show-style-panel {
1666
+ padding-right: var(--props-style-panel-width);
1667
+ }
1668
+ .m-editor-props-panel .m-editor-props-property-panel.show-style-panel .m-editor-props-panel-src-icon {
1669
+ right: calc(15px + var(--props-style-panel-width));
1670
+ }
1671
+ .m-editor-props-panel .m-editor-props-style-panel {
1672
+ position: absolute;
1673
+ width: var(--props-style-panel-width);
1674
+ right: 0;
1675
+ top: 0;
1676
+ background: #fff;
1677
+ z-index: 12;
1678
+ }
1679
+ .m-editor-props-panel .m-editor-props-style-panel .tmagic-design-scrollbar {
1680
+ height: calc(100% - 38px - 1px);
1681
+ }
1682
+ .m-editor-props-panel .m-editor-props-style-panel .m-editor-props-style-panel-title {
1683
+ text-align: center;
1684
+ font-size: 14px;
1685
+ font-weight: 600;
1686
+ padding: 0 5px;
1687
+ height: 38px;
1688
+ display: flex;
1689
+ justify-content: space-between;
1690
+ align-items: center;
1691
+ border-bottom: 2px solid #d9dbdd;
1692
+ }
1693
+ .m-editor-props-panel .m-editor-props-panel-src-icon {
1694
+ position: absolute;
1695
+ right: 15px;
1696
+ bottom: 15px;
1697
+ z-index: 32;
1698
+ opacity: 0.5;
1699
+ }
1700
+ .m-editor-props-panel .m-editor-props-panel-src-icon:hover {
1701
+ opacity: 1;
1702
+ }
1703
+ .m-editor-props-panel .m-editor-props-panel-style-icon {
1704
+ position: absolute;
1705
+ right: 15px;
1706
+ bottom: 60px;
1707
+ z-index: 31;
1708
+ opacity: 0.5;
1709
+ }
1710
+ .m-editor-props-panel .m-editor-props-panel-style-icon:hover {
1711
+ opacity: 1;
1712
+ }
1713
+ .m-editor-props-panel .m-editor-props-panel-src-code.magic-code-editor {
1714
+ position: absolute;
1715
+ left: 0;
1716
+ top: 0;
1717
+ z-index: 31;
1718
+ }
1719
+ .m-editor-props-panel .m-editor-resizer {
1720
+ position: absolute;
1721
+ display: block;
1722
+ top: 0;
1723
+ right: var(--props-style-panel-width);
1724
+ z-index: 13;
1725
+ }
1726
+ .m-editor-props-panel.small .el-form-item__label {
1727
+ font-size: 12px;
1728
+ }
1729
+ .m-editor-props-panel.small .m-fieldset legend {
1730
+ font-size: 12px;
1731
+ }
1732
+ .m-editor-props-panel.small .el-tabs__item {
1733
+ font-size: 12px;
1734
+ }
1735
+ .m-editor-props-panel .el-input__wrapper {
1736
+ border-radius: 0;
1737
+ }
1738
+ .m-editor-props-panel .m-fields-group-list .tmagic-design-table th {
1739
+ font-size: 12px;
1740
+ }
1741
+
1742
+ .m-editor-props-form-panel-form {
1743
+ padding-right: 10px;
1744
+ padding-left: 10px;
1745
+ }
1746
+ .m-editor-props-form-panel-form > .m-container-tab > .tmagic-design-tabs > .el-tabs__content {
1747
+ margin-top: var(--el-tabs-header-height);
1748
+ padding-top: 15px;
1749
+ }
1750
+ .m-editor-props-form-panel-form > .m-container-tab > .tmagic-design-tabs > .el-tabs__header.is-top {
1751
+ position: absolute;
1752
+ top: 0;
1753
+ width: 100%;
1754
+ background: #fff;
1755
+ z-index: 3;
1756
+ }
1757
+
1758
+ .m-editor-props-panel-popper.small span,
1759
+ .m-editor-props-panel-popper.small a,
1760
+ .m-editor-props-panel-popper.small p {
1761
+ font-size: 12px;
1762
+ }
1763
+
1764
+ .magic-editor-content-menu {
1765
+ position: fixed;
1766
+ font-size: 12px;
1767
+ background: #fff;
1768
+ box-shadow: 0 2px 8px 2px rgba(68, 73, 77, 0.16);
1769
+ z-index: 1000;
1770
+ transform-origin: 0% 0%;
1771
+ font-weight: 600;
1772
+ padding: 4px 0px;
1773
+ overflow: auto;
1774
+ max-height: 80%;
1775
+ min-width: 180px;
1776
+ }
1777
+ .magic-editor-content-menu .menu-item {
1778
+ color: #333;
1779
+ display: flex;
1780
+ -webkit-box-align: center;
1781
+ align-items: center;
1782
+ cursor: pointer;
1783
+ min-width: 140px;
1784
+ transition: all 0.2s ease 0s;
1785
+ padding: 5px 14px;
1786
+ border-left: 2px solid transparent;
1787
+ }
1788
+ .magic-editor-content-menu .menu-item .el-button {
1789
+ width: 100%;
1790
+ justify-content: flex-start;
1791
+ }
1792
+ .magic-editor-content-menu .menu-item .el-button--text,
1793
+ .magic-editor-content-menu .menu-item i {
1794
+ color: #313a40;
1795
+ }
1796
+ .magic-editor-content-menu .menu-item .magic-editor-icon {
1797
+ margin-right: 5px;
1798
+ }
1799
+ .magic-editor-content-menu .menu-item.divider {
1800
+ padding: 0 14px;
1801
+ }
1802
+ .magic-editor-content-menu .menu-item.divider .el-divider {
1803
+ margin: 0;
1804
+ }
1805
+ .magic-editor-content-menu .menu-item.button:hover {
1806
+ background-color: #f3f5f9;
1807
+ }
1808
+ .magic-editor-content-menu .menu-item.button:hover .tmagic-design-button,
1809
+ .magic-editor-content-menu .menu-item.button:hover .tmagic-design-button:active,
1810
+ .magic-editor-content-menu .menu-item.button:hover .tmagic-design-button:focus {
1811
+ color: #313a40;
1812
+ }
1813
+ .magic-editor-content-menu .menu-item.button:hover.menu-item i {
1814
+ color: #313a40;
1815
+ }
1816
+ .magic-editor-content-menu .menu-item.button.active {
1817
+ background-color: var(--el-color-primary, #2882e0);
1818
+ }
1819
+ .magic-editor-content-menu .menu-item.button.active .tmagic-design-button,
1820
+ .magic-editor-content-menu .menu-item.button.active .tmagic-design-button:active,
1821
+ .magic-editor-content-menu .menu-item.button.active .tmagic-design-button:focus {
1822
+ color: #fff;
1823
+ background-color: transparent;
1824
+ }
1825
+ .magic-editor-content-menu .menu-item.button.active.menu-item i {
1826
+ color: #fff;
1827
+ }
1828
+
1829
+ .m-editor-stage {
1830
+ position: relative;
1831
+ width: 100%;
1832
+ height: calc(100% - 32px);
1833
+ overflow: hidden;
1834
+ display: flex;
1835
+ justify-content: center;
1836
+ align-items: center;
1837
+ }
1838
+ .m-editor-stage:focus-visible {
1839
+ outline: none;
1840
+ }
1841
+
1842
+ .m-editor-stage-container {
1843
+ width: 100%;
1844
+ height: 100%;
1845
+ z-index: 0;
1846
+ position: relative;
1847
+ transition: transform 0.3s;
1848
+ box-sizing: content-box;
1849
+ box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
1850
+ }
1851
+ .m-editor-stage-container::-webkit-scrollbar {
1852
+ width: 0 !important;
1853
+ }
1854
+
1855
+ .m-editor-stage-overlay {
1856
+ position: absolute;
1857
+ left: 0;
1858
+ top: 0;
1859
+ width: 100%;
1860
+ height: 100%;
1861
+ background-color: #fff;
1862
+ z-index: 20;
1863
+ }
1864
+
1865
+ .m-editor-stage-overlay-close.tmagic-design-icon {
1866
+ position: fixed;
1867
+ right: 20px;
1868
+ top: 10px;
1869
+ cursor: pointer;
1870
+ z-index: 1;
1871
+ }
1872
+
1873
+ .m-editor-stage-float-button {
1874
+ cursor: pointer;
1875
+ transform: translateY(-50%);
1876
+ width: 12px;
1877
+ font-size: 12px;
1878
+ line-height: 1.2;
1879
+ position: absolute;
1880
+ left: 100%;
1881
+ top: 50%;
1882
+ padding: 5px;
1883
+ background-color: #ffffff;
1884
+ transition: background-color 0.2s;
1885
+ color: rgba(0, 0, 0, 0.88);
1886
+ box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
1887
+ }
1888
+
1889
+ .m-editor-node-list-menu {
1890
+ height: 100%;
1891
+ width: 100%;
1892
+ min-width: 300px;
1893
+ max-height: 500px;
1894
+ }
1895
+
1896
+ .m-container-vs-code .el-form-item {
1897
+ margin-bottom: 0;
1898
+ }
1899
+
1900
+ .magic-code-editor {
1901
+ width: 100%;
1902
+ }
1903
+
1904
+ .magic-code-editor-wrapper {
1905
+ width: 100%;
1906
+ height: 100%;
1907
+ position: relative;
1908
+ }
1909
+ .magic-code-editor-wrapper.full-screen {
1910
+ position: fixed;
1911
+ z-index: 10000;
1912
+ top: 0;
1913
+ left: 0;
1914
+ }
1915
+ .magic-code-editor-wrapper .magic-code-editor-content {
1916
+ width: 100%;
1917
+ height: 100%;
1918
+ }
1919
+ .magic-code-editor-wrapper .magic-code-editor-content .margin {
1920
+ margin: 0;
1921
+ }
1922
+ .magic-code-editor-wrapper .magic-code-editor-full-screen-icon {
1923
+ position: absolute;
1924
+ top: 20px;
1925
+ right: 10px;
1926
+ z-index: 11;
1927
+ opacity: 0.3;
1928
+ }
1929
+ .magic-code-editor-wrapper .magic-code-editor-full-screen-icon:hover {
1930
+ opacity: 1;
1931
+ }
1932
+
1933
+ .tmagic-design-icon {
1934
+ --color: inherit;
1935
+ height: 1em;
1936
+ width: 1em;
1937
+ position: relative;
1938
+ fill: currentColor;
1939
+ }
1940
+ .tmagic-design-icon img {
1941
+ max-width: 100%;
1942
+ max-height: 100%;
1943
+ }
1944
+
1945
+ .m-fields-code-select {
1946
+ width: 100%;
1947
+ }
1948
+ .m-fields-code-select > .el-card.tmagic-design-card--flat {
1949
+ background-color: transparent;
1950
+ margin-bottom: 10px;
1951
+ }
1952
+ .m-fields-code-select > .el-card.tmagic-design-card--flat > .el-card__body {
1953
+ padding-left: 0;
1954
+ }
1955
+ .m-fields-code-select > .el-card.tmagic-design-card--flat > .el-card__body .code-select-content > .m-fields-group-list > .tmagic-design-card--flat.el-card {
1956
+ padding-left: 16px;
1957
+ padding-right: 16px;
1958
+ margin-bottom: 10px;
1959
+ border: 0 !important;
1960
+ }
1961
+ .m-fields-code-select .el-card__body .tmagic-design-form-item {
1962
+ margin-bottom: 18px;
1963
+ }
1964
+ .m-fields-code-select .code-select-content > .m-fields-group-list > .tmagic-design-card--flat > .el-card__header {
1965
+ padding: 16px 0;
1966
+ }
1967
+ .m-fields-code-select .create-button.fullWidth {
1968
+ width: 100%;
1969
+ margin: 0 0 16px 0;
1970
+ }
1971
+
1972
+ .m-fields-event-select {
1973
+ width: 100%;
1974
+ }
1975
+ .m-fields-event-select .fullWidth {
1976
+ width: 100%;
1977
+ box-sizing: border-box;
1978
+ }
1979
+ .m-fields-event-select .event-select-container {
1980
+ padding: 0 16px;
1981
+ }
1982
+ .m-fields-event-select .event-select-container > .el-card.tmagic-design-card--flat > .el-card__header {
1983
+ border-bottom: 1px solid #ebeef5;
1984
+ }
1985
+ .m-fields-event-select .event-select-container > .el-card.tmagic-design-card--flat > .el-card__body {
1986
+ padding-bottom: 16px;
1987
+ }
1988
+ .m-fields-event-select .event-select-container > .el-card.tmagic-design-card--flat > .el-card__body .m-fields-group-list-footer div {
1989
+ justify-content: flex-start !important;
1990
+ }
1991
+ .m-fields-event-select .event-select-container > .el-card.tmagic-design-card--flat > .el-card__body .el-card.tmagic-design-card--flat > .el-card__header {
1992
+ padding: 16px 0;
1993
+ }
1994
+ .m-fields-event-select .event-select-code {
1995
+ margin-left: 20px;
1996
+ width: auto;
1997
+ }
1998
+ .m-fields-event-select .m-form-panel {
1999
+ margin: 10px 0px;
2000
+ }
2001
+ .m-fields-event-select .el-card.is-always-shadow {
2002
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12);
2003
+ }
2004
+
2005
+ .m-fields-code-select-col,
2006
+ .m-fields-data-source-method-select {
2007
+ width: 100%;
2008
+ }
2009
+
2010
+ .code-select-container,
2011
+ .data-source-method-select-container {
2012
+ display: flex;
2013
+ align-items: center;
2014
+ }
2015
+ .code-select-container .select,
2016
+ .data-source-method-select-container .select {
2017
+ flex: 10 0 100px;
2018
+ }
2019
+ .code-select-container .icon,
2020
+ .data-source-method-select-container .icon {
2021
+ flex: 1 0 20px;
2022
+ cursor: pointer;
2023
+ margin-right: 5px;
2024
+ }
2025
+
2026
+ .event-select-container {
2027
+ padding: 0 16px;
2028
+ }
2029
+
2030
+ .event-select-header {
2031
+ display: flex;
2032
+ align-items: center;
2033
+ justify-content: space-between;
2034
+ margin-bottom: 8px;
2035
+ }
2036
+ .event-select-header .event-select-title {
2037
+ color: #0f1113;
2038
+ font-size: 16px;
2039
+ font-weight: 500;
2040
+ line-height: 24px;
2041
+ }
2042
+
2043
+ .event-item-header {
2044
+ position: relative;
2045
+ width: 100%;
2046
+ }
2047
+ .event-item-header .event-item-title {
2048
+ color: #0f1113;
2049
+ font-size: 16px;
2050
+ font-weight: 500;
2051
+ line-height: 24px;
2052
+ margin-bottom: 16px;
2053
+ }
2054
+ .event-item-header .event-item-delete-button {
2055
+ position: absolute;
2056
+ right: 0;
2057
+ top: 0;
2058
+ }
2059
+
2060
+ .m-editor-layout {
2061
+ width: 100%;
2062
+ display: flex;
2063
+ justify-self: space-between;
2064
+ }
2065
+ .m-editor-layout:has(.m-editor-resizer-dragging) {
2066
+ overflow: hidden;
2067
+ }
2068
+
2069
+ .m-editor-breadcrumb {
2070
+ position: absolute;
2071
+ left: 5px;
2072
+ top: 5px;
2073
+ z-index: 10;
2074
+ display: flex;
2075
+ align-items: center;
2076
+ white-space: nowrap;
2077
+ }
2078
+ .m-editor-breadcrumb .m-editor-breadcrumb-item {
2079
+ max-width: 100px;
2080
+ min-width: 0;
2081
+ overflow: hidden;
2082
+ }
2083
+ .m-editor-breadcrumb .m-editor-breadcrumb-item > span {
2084
+ display: block;
2085
+ max-width: 100%;
2086
+ overflow: hidden;
2087
+ text-overflow: ellipsis;
2088
+ white-space: nowrap;
2089
+ }
2090
+ .m-editor-breadcrumb .m-editor-breadcrumb-separator,
2091
+ .m-editor-breadcrumb .m-editor-breadcrumb-ellipsis {
2092
+ margin: 0 4px;
2093
+ flex-shrink: 0;
2094
+ }
2095
+
2096
+ .data-source-list-panel .list-container .list-item .codeIcon {
2097
+ width: 22px;
2098
+ height: 22px;
2099
+ margin-right: 5px;
2100
+ }
2101
+ .data-source-list-panel .list-container .list-item .compIcon {
2102
+ width: 22px;
2103
+ height: 22px;
2104
+ margin-right: 5px;
2105
+ }
2106
+
2107
+ .data-source-list-panel-add-menu {
2108
+ padding: 4px 0;
2109
+ }
2110
+ .data-source-list-panel-add-menu .menu-item {
2111
+ cursor: pointer;
2112
+ transition: all 0.2s ease 0s;
2113
+ padding: 5px 14px;
2114
+ }
2115
+ .data-source-list-panel-add-menu .menu-item:hover {
2116
+ background-color: #f3f5f9;
2117
+ }
2118
+
2119
+ .m-editor-data-source-fields {
2120
+ width: 100%;
2121
+ }
2122
+ .m-editor-data-source-fields .tmagic-design-table {
2123
+ width: 100%;
2124
+ }
2125
+ .m-editor-data-source-fields .m-editor-data-source-fields-footer {
2126
+ display: flex;
2127
+ justify-content: flex-end;
2128
+ margin-top: 15px;
2129
+ }
2130
+
2131
+ .m-editor-data-source-methods {
2132
+ width: 100%;
2133
+ }
2134
+ .m-editor-data-source-methods .tmagic-design-table {
2135
+ width: 100%;
2136
+ }
2137
+ .m-editor-data-source-methods .m-editor-data-source-methods-footer {
2138
+ display: flex;
2139
+ justify-content: flex-end;
2140
+ margin-top: 15px;
2141
+ }
2142
+
2143
+ .tmagic-data-source-input-text .el-input__wrapper.tmagic-data-source-input-text-wrapper {
2144
+ overflow: hidden;
2145
+ padding-right: 30px;
2146
+ }
2147
+ .tmagic-data-source-input-text .el-input__inner {
2148
+ display: flex;
2149
+ align-items: center;
2150
+ overflow: hidden;
2151
+ white-space: nowrap;
2152
+ }
2153
+ .tmagic-data-source-input-text .tmagic-data-source-input-icon {
2154
+ position: absolute;
2155
+ right: 7px;
2156
+ }
2157
+
2158
+ .m-fields-key-value {
2159
+ display: flex;
2160
+ justify-items: center;
2161
+ align-items: top;
2162
+ width: 100%;
2163
+ }
2164
+
2165
+ .m-fields-key-value-item {
2166
+ display: flex;
2167
+ margin-bottom: 10px;
2168
+ align-items: center;
2169
+ }
2170
+
2171
+ .m-fields-key-value-delimiter {
2172
+ margin: 0 10px;
2173
+ }
2174
+
2175
+ .m-fields-key-value-delete {
2176
+ margin-left: 10px;
2177
+ }
2178
+
2179
+ .m-editor-tree {
2180
+ color: #313a40;
2181
+ font-size: 13px;
2182
+ }
2183
+ .m-editor-tree .m-editor-tree-node {
2184
+ cursor: pointer;
2185
+ white-space: nowrap;
2186
+ }
2187
+ .m-editor-tree .m-editor-tree-node .tree-node {
2188
+ display: flex;
2189
+ align-items: center;
2190
+ }
2191
+ .m-editor-tree .m-editor-tree-node .tree-node:hover {
2192
+ background-color: #f3f5f9;
2193
+ color: #313a40;
2194
+ }
2195
+ .m-editor-tree .m-editor-tree-node .tree-node.selected {
2196
+ background-color: var(--el-color-primary, #2882e0);
2197
+ color: #f3f5f9;
2198
+ }
2199
+ .m-editor-tree .m-editor-tree-node .tree-node.drag-inner .tree-node-content {
2200
+ background-color: rgba(var(--el-color-primary, #2882e0), 0.5);
2201
+ color: #f3f5f9;
2202
+ }
2203
+ .m-editor-tree .m-editor-tree-node .tree-node.drag-before .tree-node-content {
2204
+ border-top-color: rgba(var(--el-color-primary, #2882e0), 0.5);
2205
+ }
2206
+ .m-editor-tree .m-editor-tree-node .tree-node.drag-after .tree-node-content {
2207
+ border-bottom-color: rgba(var(--el-color-primary, #2882e0), 0.5);
2208
+ }
2209
+ .m-editor-tree .m-editor-tree-node .tree-node .expand-icon {
2210
+ padding: 4px;
2211
+ box-sizing: content-box;
2212
+ font-size: 14px;
2213
+ }
2214
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-content {
2215
+ display: flex;
2216
+ flex: 1;
2217
+ justify-content: space-between;
2218
+ height: 22px;
2219
+ border-top: 2px solid transparent;
2220
+ border-bottom: 2px solid transparent;
2221
+ }
2222
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-content .tree-node-label {
2223
+ line-height: 22px;
2224
+ flex: 1;
2225
+ width: 100px;
2226
+ overflow: hidden;
2227
+ text-overflow: ellipsis;
2228
+ }
2229
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-content .tree-node-label .disabled {
2230
+ cursor: default;
2231
+ }
2232
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-content .tree-node-label .hook {
2233
+ color: #999;
2234
+ }
2235
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-tool {
2236
+ display: flex;
2237
+ align-items: center;
2238
+ }
2239
+ .m-editor-tree .m-editor-tree-node .tree-node .tree-node-tool .tmagic-design-icon {
2240
+ margin-right: 10px;
2241
+ }
2242
+ .m-editor-tree .m-editor-tree-empty {
2243
+ text-align: center;
2244
+ color: #909399;
2245
+ font-size: 14px;
2246
+ }
2247
+
2248
+ .m-editor-float-box {
2249
+ position: absolute;
2250
+ background-color: #fff;
2251
+ z-index: 100;
2252
+ border: 1px solid #d9dbdd;
2253
+ display: flex;
2254
+ flex-direction: column;
2255
+ max-height: 100%;
2256
+ max-width: 100%;
2257
+ }
2258
+ .m-editor-float-box .m-editor-float-box-title {
2259
+ text-align: center;
2260
+ font-size: 14px;
2261
+ font-weight: 600;
2262
+ padding: 5px;
2263
+ cursor: move;
2264
+ display: flex;
2265
+ justify-content: space-between;
2266
+ align-items: center;
2267
+ border-bottom: 1px solid #d9dbdd;
2268
+ }
2269
+ .m-editor-float-box .m-editor-float-box-body {
2270
+ overflow: auto;
2271
+ flex: 1;
2272
+ padding: 0 16px;
2273
+ }
2274
+
2275
+ .m-editor-floating-box-moveable {
2276
+ opacity: 0;
2277
+ }
2278
+
2279
+ .m-fields-page-fragment-select {
2280
+ width: 100%;
2281
+ }
2282
+ .m-fields-page-fragment-select .page-fragment-select-container {
2283
+ width: 100%;
2284
+ display: flex;
2285
+ align-items: center;
2286
+ }
2287
+ .m-fields-page-fragment-select .page-fragment-select-container .select {
2288
+ flex: 1;
2289
+ }
2290
+ .m-fields-page-fragment-select .page-fragment-select-container .icon {
2291
+ margin-left: 10px;
2292
+ }
2293
+
2294
+ .m-fields-data-source-select,
2295
+ .m-fields-data-source-field-select,
2296
+ .m-fields-data-source-method-select .data-source-method-select-container,
2297
+ .m-fields-code-select-col .code-select-container {
2298
+ width: 100%;
2299
+ display: flex;
2300
+ align-items: center;
2301
+ }
2302
+ .m-fields-data-source-select.data-source-field-img-upload, .m-fields-data-source-select.data-source-field-big-img-upload,
2303
+ .m-fields-data-source-field-select.data-source-field-img-upload,
2304
+ .m-fields-data-source-field-select.data-source-field-big-img-upload,
2305
+ .m-fields-data-source-method-select .data-source-method-select-container.data-source-field-img-upload,
2306
+ .m-fields-data-source-method-select .data-source-method-select-container.data-source-field-big-img-upload,
2307
+ .m-fields-code-select-col .code-select-container.data-source-field-img-upload,
2308
+ .m-fields-code-select-col .code-select-container.data-source-field-big-img-upload {
2309
+ align-items: flex-start;
2310
+ }
2311
+ .m-fields-data-source-select .m-fields-select-action-button,
2312
+ .m-fields-data-source-field-select .m-fields-select-action-button,
2313
+ .m-fields-data-source-method-select .data-source-method-select-container .m-fields-select-action-button,
2314
+ .m-fields-code-select-col .code-select-container .m-fields-select-action-button {
2315
+ margin-left: 5px;
2316
+ }
2317
+
2318
+ .m-fields-data-source-field-select {
2319
+ width: 100%;
2320
+ }
2321
+ .m-fields-data-source-field-select .m-editor-data-source-field-select {
2322
+ display: flex;
2323
+ width: 100%;
2324
+ }
2325
+ .m-fields-data-source-field-select .m-editor-data-source-field-select .tmagic-design-select {
2326
+ flex: 1;
2327
+ margin-right: 10px;
2328
+ }
2329
+ .m-fields-data-source-field-select .m-editor-data-source-field-select .tmagic-design-cascader {
2330
+ flex: 2;
2331
+ }
2332
+ .m-fields-data-source-field-select .tmagic-design-button {
2333
+ margin-left: 5px;
2334
+ padding: 5px 8px;
2335
+ }
2336
+
2337
+ .m-container-text.display-conds-title .tmagic-design-form-item .el-form-item__label {
2338
+ color: #111;
2339
+ font-weight: 500;
2340
+ font-size: 16px;
2341
+ }
2342
+ .m-container-text.display-conds-title .tmagic-design-form-item {
2343
+ line-height: 24px;
2344
+ margin-bottom: 10px;
2345
+ }
2346
+
2347
+ .border-box-container {
2348
+ display: flex;
2349
+ --unuse-border-style: dashed;
2350
+ }
2351
+ .border-box-container .border-icon-container {
2352
+ display: flex;
2353
+ flex-direction: column;
2354
+ justify-content: center;
2355
+ width: 88px;
2356
+ }
2357
+ .border-box-container .border-icon-container-row {
2358
+ display: flex;
2359
+ justify-content: center;
2360
+ align-items: center;
2361
+ }
2362
+ .border-box-container .border-icon-container-row + .border-icon-container-row {
2363
+ margin-top: 8px;
2364
+ }
2365
+ .border-box-container .border-icon-container .border-icon {
2366
+ box-sizing: border-box;
2367
+ width: 16px;
2368
+ height: 16px;
2369
+ border-width: 1px;
2370
+ border-color: #111;
2371
+ border-style: solid;
2372
+ cursor: pointer;
2373
+ }
2374
+ .border-box-container .border-icon-container .border-icon + .border-icon {
2375
+ margin-left: 8px;
2376
+ }
2377
+ .border-box-container .border-icon-container .border-icon.configured {
2378
+ border-color: var(--el-color-success, var(--td-success-color, #2ba471));
2379
+ }
2380
+ .border-box-container .border-icon-container .border-icon.active {
2381
+ border-color: var(--el-color-primary);
2382
+ border-width: 1px;
2383
+ }
2384
+ .border-box-container .border-icon-container .border-icon.center {
2385
+ border-width: 1px;
2386
+ }
2387
+ .border-box-container .border-icon-container .border-icon.border-icon-top {
2388
+ border-top-width: 2px;
2389
+ border-style: solid var(--unuse-border-style) var(--unuse-border-style) var(--unuse-border-style);
2390
+ }
2391
+ .border-box-container .border-icon-container .border-icon.border-icon-right {
2392
+ border-right-width: 2px;
2393
+ border-style: var(--unuse-border-style) solid var(--unuse-border-style) var(--unuse-border-style);
2394
+ }
2395
+ .border-box-container .border-icon-container .border-icon.border-icon-bottom {
2396
+ border-bottom-width: 2px;
2397
+ border-style: var(--unuse-border-style) var(--unuse-border-style) solid var(--unuse-border-style);
2398
+ }
2399
+ .border-box-container .border-icon-container .border-icon.border-icon-left {
2400
+ border-left-width: 2px;
2401
+ border-style: var(--unuse-border-style) var(--unuse-border-style) var(--unuse-border-style) solid;
2402
+ }
2403
+ .border-box-container .border-value-container {
2404
+ margin-left: 16px;
2405
+ flex: 1;
2406
+ }
2407
+
2408
+ .layout-box-container {
2409
+ position: relative;
2410
+ width: 100%;
2411
+ height: 130px;
2412
+ }
2413
+ .layout-box-container .help-txt {
2414
+ float: left;
2415
+ margin-left: -10px;
2416
+ transform: scale(0.75);
2417
+ }
2418
+ .layout-box-container .outer-top-border,
2419
+ .layout-box-container .inner-top-border,
2420
+ .layout-box-container .outer-right-border,
2421
+ .layout-box-container .inner-right-border,
2422
+ .layout-box-container .outer-bottom-border,
2423
+ .layout-box-container .inner-bottom-border,
2424
+ .layout-box-container .outer-left-border,
2425
+ .layout-box-container .inner-left-border {
2426
+ position: absolute;
2427
+ transition: all 0.3s ease;
2428
+ }
2429
+ .layout-box-container .outer-top-border .next-input,
2430
+ .layout-box-container .inner-top-border .next-input,
2431
+ .layout-box-container .outer-right-border .next-input,
2432
+ .layout-box-container .inner-right-border .next-input,
2433
+ .layout-box-container .outer-bottom-border .next-input,
2434
+ .layout-box-container .inner-bottom-border .next-input,
2435
+ .layout-box-container .outer-left-border .next-input,
2436
+ .layout-box-container .inner-left-border .next-input {
2437
+ position: absolute;
2438
+ height: 20px;
2439
+ }
2440
+ .layout-box-container .outer-top-border .next-input input,
2441
+ .layout-box-container .inner-top-border .next-input input,
2442
+ .layout-box-container .outer-right-border .next-input input,
2443
+ .layout-box-container .inner-right-border .next-input input,
2444
+ .layout-box-container .outer-bottom-border .next-input input,
2445
+ .layout-box-container .inner-bottom-border .next-input input,
2446
+ .layout-box-container .outer-left-border .next-input input,
2447
+ .layout-box-container .inner-left-border .next-input input {
2448
+ padding: 0;
2449
+ width: 100%;
2450
+ border: none;
2451
+ outline: none;
2452
+ margin: 0;
2453
+ font-weight: 400;
2454
+ vertical-align: top;
2455
+ background-color: transparent;
2456
+ color: #333;
2457
+ text-align: center;
2458
+ line-height: 20px;
2459
+ height: 20px;
2460
+ }
2461
+ .layout-box-container .outer-top-border,
2462
+ .layout-box-container .inner-top-border {
2463
+ height: 0;
2464
+ border-left: 20px solid transparent;
2465
+ border-right: 20px solid transparent;
2466
+ border-top: 20px solid #d6e4ff;
2467
+ }
2468
+ .layout-box-container .outer-top-border .next-input,
2469
+ .layout-box-container .inner-top-border .next-input {
2470
+ left: 0;
2471
+ right: 0;
2472
+ top: -20px;
2473
+ }
2474
+ .layout-box-container .outer-top-border {
2475
+ top: 0;
2476
+ left: 0;
2477
+ right: 0;
2478
+ }
2479
+ .layout-box-container .inner-top-border {
2480
+ top: 25px;
2481
+ left: 25px;
2482
+ right: 25px;
2483
+ }
2484
+ .layout-box-container .outer-top-border:hover,
2485
+ .layout-box-container .inner-top-border:hover {
2486
+ border-top: 20px solid #bfd4fb;
2487
+ }
2488
+ .layout-box-container .outer-right-border,
2489
+ .layout-box-container .inner-right-border {
2490
+ width: 0;
2491
+ border-top: 20px solid transparent;
2492
+ border-bottom: 20px solid transparent;
2493
+ border-right: 20px solid #d6e4ff;
2494
+ }
2495
+ .layout-box-container .outer-right-border .next-input,
2496
+ .layout-box-container .inner-right-border .next-input {
2497
+ top: 0;
2498
+ bottom: 0;
2499
+ right: -20px;
2500
+ width: 20px;
2501
+ margin: auto;
2502
+ }
2503
+ .layout-box-container .outer-right-border .next-input input,
2504
+ .layout-box-container .inner-right-border .next-input input {
2505
+ position: absolute;
2506
+ top: 0;
2507
+ bottom: 0;
2508
+ left: 0;
2509
+ margin: auto;
2510
+ width: 20px;
2511
+ }
2512
+ .layout-box-container .outer-right-border {
2513
+ top: 5px;
2514
+ bottom: 5px;
2515
+ right: 0;
2516
+ }
2517
+ .layout-box-container .inner-right-border {
2518
+ top: 30px;
2519
+ bottom: 30px;
2520
+ right: 25px;
2521
+ }
2522
+ .layout-box-container .outer-right-border:hover,
2523
+ .layout-box-container .inner-right-border:hover {
2524
+ border-right: 20px solid #bfd4fb;
2525
+ }
2526
+ .layout-box-container .outer-bottom-border,
2527
+ .layout-box-container .inner-bottom-border {
2528
+ height: 0;
2529
+ border-left: 20px solid transparent;
2530
+ border-right: 20px solid transparent;
2531
+ border-bottom: 20px solid #d6e4ff;
2532
+ }
2533
+ .layout-box-container .outer-bottom-border .next-input,
2534
+ .layout-box-container .inner-bottom-border .next-input {
2535
+ position: absolute;
2536
+ left: 0;
2537
+ right: 0;
2538
+ bottom: -20px;
2539
+ }
2540
+ .layout-box-container .outer-bottom-border {
2541
+ bottom: 0;
2542
+ left: 0;
2543
+ right: 0;
2544
+ }
2545
+ .layout-box-container .inner-bottom-border {
2546
+ bottom: 25px;
2547
+ left: 25px;
2548
+ right: 25px;
2549
+ }
2550
+ .layout-box-container .outer-bottom-border:hover,
2551
+ .layout-box-container .inner-bottom-border:hover {
2552
+ border-bottom: 20px solid #bfd4fb;
2553
+ }
2554
+ .layout-box-container .outer-left-border,
2555
+ .layout-box-container .inner-left-border {
2556
+ width: 0;
2557
+ border-top: 20px solid transparent;
2558
+ border-bottom: 20px solid transparent;
2559
+ border-left: 20px solid #d6e4ff;
2560
+ }
2561
+ .layout-box-container .outer-left-border .next-input,
2562
+ .layout-box-container .inner-left-border .next-input {
2563
+ position: absolute;
2564
+ top: 0;
2565
+ bottom: 0;
2566
+ left: -20px;
2567
+ width: 20px;
2568
+ margin: auto;
2569
+ }
2570
+ .layout-box-container .outer-left-border .next-input input,
2571
+ .layout-box-container .inner-left-border .next-input input {
2572
+ position: absolute;
2573
+ top: 0;
2574
+ bottom: 0;
2575
+ right: 0;
2576
+ margin: auto;
2577
+ width: 20px;
2578
+ }
2579
+ .layout-box-container .outer-left-border {
2580
+ top: 5px;
2581
+ bottom: 5px;
2582
+ left: 0;
2583
+ }
2584
+ .layout-box-container .inner-left-border {
2585
+ top: 30px;
2586
+ bottom: 30px;
2587
+ left: 25px;
2588
+ }
2589
+ .layout-box-container .outer-left-border:hover,
2590
+ .layout-box-container .inner-left-border:hover {
2591
+ border-left: 20px solid #bfd4fb;
2592
+ }
2593
+
2594
+ .background-position-container {
2595
+ display: flex;
2596
+ width: 100%;
2597
+ }
2598
+ .background-position-container .presets-value-list {
2599
+ display: flex;
2600
+ flex-wrap: wrap;
2601
+ width: 80px;
2602
+ height: auto;
2603
+ }
2604
+ .background-position-container .presets-value-list .tmagic-design-button + .tmagic-design-button {
2605
+ margin-left: 2px;
2606
+ }
2607
+ .background-position-container .presets-value-list .tmagic-design-button:nth-child(3n+1) {
2608
+ margin-left: 0 !important;
2609
+ }
2610
+ .background-position-container .presets-value-list .t-button--variant-text {
2611
+ padding-left: 2px;
2612
+ padding-right: 2px;
2613
+ }
2614
+ .background-position-container .presets-value-list .position-icon {
2615
+ position: relative;
2616
+ width: 14px;
2617
+ height: 14px;
2618
+ border: 1px solid #1d1f24;
2619
+ }
2620
+ .background-position-container .presets-value-list .position-icon.active {
2621
+ background-color: var(--el-color-primary, #2882e0);
2622
+ }
2623
+ .background-position-container .presets-value-list .position-icon.active::after {
2624
+ border: 1px solid #fff;
2625
+ }
2626
+ .background-position-container .presets-value-list .position-icon::after {
2627
+ position: absolute;
2628
+ content: "";
2629
+ border: 1px solid #1d1f24;
2630
+ box-sizing: border-box;
2631
+ }
2632
+ .background-position-container .presets-value-list .position-icon.left-top::after {
2633
+ top: 1px;
2634
+ left: 1px;
2635
+ width: 6px;
2636
+ height: 6px;
2637
+ }
2638
+ .background-position-container .presets-value-list .position-icon.center-top::after {
2639
+ top: 1px;
2640
+ left: 1px;
2641
+ width: 12px;
2642
+ height: 6px;
2643
+ }
2644
+ .background-position-container .presets-value-list .position-icon.right-top::after {
2645
+ top: 1px;
2646
+ right: 1px;
2647
+ width: 6px;
2648
+ height: 6px;
2649
+ }
2650
+ .background-position-container .presets-value-list .position-icon.left-center::after {
2651
+ top: 1px;
2652
+ left: 1px;
2653
+ width: 6px;
2654
+ height: 12px;
2655
+ }
2656
+ .background-position-container .presets-value-list .position-icon.center-center::after {
2657
+ top: 1px;
2658
+ left: 1px;
2659
+ width: 12px;
2660
+ height: 12px;
2661
+ }
2662
+ .background-position-container .presets-value-list .position-icon.right-center::after {
2663
+ top: 1px;
2664
+ right: 1px;
2665
+ width: 6px;
2666
+ height: 12px;
2667
+ }
2668
+ .background-position-container .presets-value-list .position-icon.left-bottom::after {
2669
+ bottom: 1px;
2670
+ left: 1px;
2671
+ width: 6px;
2672
+ height: 6px;
2673
+ }
2674
+ .background-position-container .presets-value-list .position-icon.center-bottom::after {
2675
+ bottom: 1px;
2676
+ left: 1px;
2677
+ width: 12px;
2678
+ height: 6px;
2679
+ }
2680
+ .background-position-container .presets-value-list .position-icon.right-bottom::after {
2681
+ bottom: 1px;
2682
+ right: 1px;
2683
+ width: 6px;
2684
+ height: 6px;
2685
+ }
2686
+ .background-position-container .custom-value {
2687
+ position: relative;
2688
+ flex: 1;
2689
+ }
2690
+
2691
+ .m-fields-style-setter {
2692
+ width: 100%;
2693
+ }
2694
+ .m-fields-style-setter .tmagic-design-collapse-item > .el-collapse-item__header {
2695
+ background-color: #f2f3f7;
2696
+ height: 26px;
2697
+ min-height: 26px;
2698
+ line-height: 26px;
2699
+ padding: 0 20px;
2700
+ box-sizing: border-box;
2701
+ }
2702
+ .m-fields-style-setter .tmagic-design-collapse-item .el-collapse-item__wrap {
2703
+ padding: 10px 20px;
2704
+ }
2705
+ .m-fields-style-setter .tmagic-design-collapse-item .el-collapse-item__title {
2706
+ display: flex;
2707
+ align-items: center;
2708
+ gap: 3px;
2709
+ }
2710
+ .m-fields-style-setter .tmagic-design-collapse-item .el-collapse-item__content {
2711
+ padding: 0;
2712
+ }
2713
+
2714
+ .text-align-list {
2715
+ display: flex;
2716
+ height: 100%;
2717
+ }
2718
+ .text-align-list .btn-active {
2719
+ color: var(--el-color-primary) !important;
2720
+ }
2721
+
2722
+ .fade-enter-active,
2723
+ .fade-leave-active {
2724
+ transition: opacity 0.5s;
2725
+ }
2726
+
2727
+ .fade-enter, .fade-leave-to {
2728
+ opacity: 0;
2729
+ }
2730
+
2731
+ .m-editor.m-editor--magic-admin .m-editor-props-panel .el-input__wrapper {
2732
+ border-radius: 4px;
2733
+ }
2734
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon {
2735
+ border-color: #ccc;
2736
+ --unuse-border-style: solid;
2737
+ }
2738
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.configured {
2739
+ border-color: var(--el-color-success, var(--td-success-color, #2ba471));
2740
+ }
2741
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active {
2742
+ border-color: var(--el-color-primary);
2743
+ background-color: rgba(0, 84, 225, 0.1);
2744
+ }
2745
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active.center {
2746
+ border-width: 2px;
2747
+ }
2748
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active.border-icon-top {
2749
+ border-width: 0;
2750
+ border-top-width: 2px;
2751
+ }
2752
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active.border-icon-right {
2753
+ border-width: 0;
2754
+ border-right-width: 2px;
2755
+ }
2756
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active.border-icon-bottom {
2757
+ border-width: 0;
2758
+ border-bottom-width: 2px;
2759
+ }
2760
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.active.border-icon-left {
2761
+ border-width: 0;
2762
+ border-left-width: 2px;
2763
+ }
2764
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon.center {
2765
+ border-width: 2px;
2766
+ }
2767
+ .m-editor.m-editor--magic-admin .border-box-container .border-icon-container .border-icon {
2768
+ border-radius: 2px;
2769
+ }
2770
+ .m-editor.m-editor--magic-admin .m-container-code-select > .el-form-item:first-child > .el-form-item__label:first-child > :not(.m-form-tip) {
2771
+ color: #111;
2772
+ font-weight: 500;
2773
+ font-size: 16px;
2774
+ line-height: 24px;
2775
+ }
2776
+
2777
+ .m-editor.m-theme--magic-admin .m-editor-props-form-panel-form > .m-container-tab > .tmagic-design-tabs > .el-tabs__content {
2778
+ background-color: #fafafa;
2779
+ border-radius: 8px;
2780
+ padding-left: 16px;
2781
+ padding-right: 16px;
2782
+ }
2783
+
2784
+ .m-editor.m-theme--magic-admin .m-fields-style-setter {
2785
+ border: 0;
2786
+ }
2787
+ .m-editor.m-theme--magic-admin .m-fields-style-setter .tmagic-design-collapse-item .el-collapse-item__wrap {
2788
+ padding: 16px;
2789
+ }
2790
+
2791
+ .m-editor.m-theme--magic-admin .magic-right-panel-tabs-top > .el-tabs > .el-tabs__header .el-tabs__nav-wrap.is-top .el-tabs__nav.is-top .el-tabs__active-bar {
2792
+ display: none;
2793
+ }
2794
+ .m-editor.m-theme--magic-admin .magic-right-panel-tabs-top > .el-tabs > .el-tabs__header .el-tabs__nav-wrap.is-top .el-tabs__nav.is-top .el-tabs__item:not(:last-child)::after {
2795
+ content: "";
2796
+ position: absolute;
2797
+ right: 0;
2798
+ top: 50%;
2799
+ transform: translateY(-50%);
2800
+ height: 12px;
2801
+ border-right: 1px solid #e6e6e6;
2802
+ }
2803
+ .m-editor.m-theme--magic-admin .magic-right-panel-tabs-top > .el-tabs > .el-tabs__header .el-tabs__nav-wrap.is-top::after {
2804
+ display: none;
2805
+ }