agilebuilder-ui 1.1.4-temp2 → 1.1.4-temp4

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 (36) hide show
  1. package/lib/super-ui.css +1 -1
  2. package/lib/super-ui.js +21442 -20618
  3. package/lib/super-ui.umd.cjs +70 -71
  4. package/package.json +1 -1
  5. package/packages/fs-preview/src/fs-preview.vue +1 -1
  6. package/packages/fs-upload-list/src/fs-upload-list.vue +2 -2
  7. package/packages/fs-upload-new/src/fs-button-upload.vue +2 -4
  8. package/packages/fs-upload-new/src/fs-drag-upload.vue +2 -4
  9. package/packages/fs-upload-new/src/fs-upload-new.vue +1 -1
  10. package/packages/super-grid/src/dynamic-input.vue +17 -3
  11. package/packages/super-grid/src/super-grid.vue +13 -9
  12. package/packages/workgroup-tree-mobile/src/dept-result.vue +2 -1
  13. package/src/styles/index.scss +2 -0
  14. package/src/styles/mixin.scss +6 -5
  15. package/src/styles/theme/tiffany-blue-mobile/button.scss +122 -0
  16. package/src/styles/theme/tiffany-blue-mobile/card.scss +144 -0
  17. package/src/styles/theme/tiffany-blue-mobile/checkbox.scss +16 -0
  18. package/src/styles/theme/tiffany-blue-mobile/dialog.scss +17 -0
  19. package/src/styles/theme/tiffany-blue-mobile/element-variables.scss +7 -0
  20. package/src/styles/theme/tiffany-blue-mobile/font.scss +71 -0
  21. package/src/styles/theme/tiffany-blue-mobile/form.scss +51 -0
  22. package/src/styles/theme/tiffany-blue-mobile/general.scss +64 -0
  23. package/src/styles/theme/tiffany-blue-mobile/home.scss +213 -0
  24. package/src/styles/theme/tiffany-blue-mobile/index.scss +280 -0
  25. package/src/styles/theme/tiffany-blue-mobile/input.scss +15 -0
  26. package/src/styles/theme/tiffany-blue-mobile/message.scss +8 -0
  27. package/src/styles/theme/tiffany-blue-mobile/mobile.scss +13 -0
  28. package/src/styles/theme/tiffany-blue-mobile/pagination.scss +17 -0
  29. package/src/styles/theme/tiffany-blue-mobile/radio.scss +13 -0
  30. package/src/styles/theme/tiffany-blue-mobile/scrollbar-style.scss +32 -0
  31. package/src/styles/theme/tiffany-blue-mobile/select.scss +7 -0
  32. package/src/styles/theme/tiffany-blue-mobile/sidebar.scss +289 -0
  33. package/src/styles/theme/tiffany-blue-mobile/tab.scss +84 -0
  34. package/src/styles/theme/tiffany-blue-mobile/table.scss +16 -0
  35. package/src/styles/theme/tiffany-blue-mobile/tree.scss +61 -0
  36. package/src/styles/theme/tiffany-blue-mobile/var.scss +23 -0
@@ -0,0 +1,289 @@
1
+ @import "./var.scss";
2
+ .tiffany-blue-mobile {
3
+ #app {
4
+
5
+ // $topHeight: 50px;
6
+ // 主体区域
7
+ .main-container {
8
+ height: 100%;
9
+ transition: margin-left .28s;
10
+ margin-left: 224px;
11
+ // padding-left: 24px;
12
+ position: relative;
13
+ background: #F8F9FA;
14
+
15
+ .nav-tab {
16
+ padding-top: 5px;
17
+ padding-left: 5px;
18
+ }
19
+ }
20
+
21
+ // 侧边栏
22
+ .sidebar-container {
23
+ transition: width 0.28s;
24
+ width: 224px !important;
25
+ height: 100%;
26
+ position: fixed;
27
+ top: 0;
28
+ bottom: 0;
29
+ left: 0;
30
+ z-index: 1001;
31
+ overflow: hidden;
32
+ font-weight: medium;
33
+ font-size: 14px;
34
+ line-height: normal;
35
+ letter-spacing: 0px;
36
+ text-align: left;
37
+ color: rgba(0, 13, 31, 0.85);
38
+ background: #FFF;
39
+ box-shadow: 0px 2px 8px 0px rgba(164, 178, 201, 0.4);
40
+
41
+ //reset element-ui css
42
+ .horizontal-collapse-transition {
43
+ transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
44
+ }
45
+
46
+ .el-scrollbar__bar.is-vertical {
47
+ right: 0px;
48
+ }
49
+
50
+ .scrollbar-wrapper {
51
+ overflow-x: hidden !important;
52
+
53
+ .el-scrollbar__view {
54
+ height: calc(100vh - 70px);
55
+ }
56
+
57
+ .system-item {
58
+ padding-left: 10px;
59
+ font-size: medium;
60
+ font-weight: 600;
61
+ opacity: 0.8;
62
+ cursor: default;
63
+ }
64
+ }
65
+
66
+ .hamburger-container {
67
+ position: absolute;
68
+ bottom: 0px;
69
+ width: 100%;
70
+ line-height: 48px;
71
+ height: 48px;
72
+ background: #FFFFFF;
73
+ box-shadow: 0px 1px 8px 0px #00000019;
74
+ border: 1px solid #EAEAEA;
75
+ padding: 0 24px;
76
+ }
77
+
78
+ .is-horizontal {
79
+ display: none;
80
+ }
81
+
82
+ a {
83
+ display: inline-block;
84
+ width: 100%;
85
+ overflow: hidden;
86
+ }
87
+
88
+ .svg-icon {
89
+ margin-right: 16px;
90
+ }
91
+
92
+ .el-menu {
93
+ border: none;
94
+ height: 100%;
95
+ width: 100% !important;
96
+ margin-top: 5px;
97
+ background-color: #FFF;
98
+ color: #000D1F;
99
+ font-weight: 400;
100
+ }
101
+
102
+
103
+ .el-menu-item {
104
+ height: 46px;
105
+ color: #525A6C;
106
+ line-height: 46px;
107
+ font-weight: medium;
108
+ }
109
+ .el-menu-item.is-active {
110
+ color: $--menu-dont-color;
111
+ font-weight: medium;
112
+ font-size: 14px;
113
+ letter-spacing: 0px;
114
+ text-align: left;
115
+ box-sizing: border-box;
116
+ border-left: 4px solid #1A6BF3
117
+ }
118
+
119
+ .el-submenu__title {
120
+ height: 46px;
121
+ line-height: 46px;
122
+ }
123
+
124
+ }
125
+
126
+ .hideSidebar {
127
+ .sidebar-container {
128
+ width: 54px !important;
129
+ }
130
+
131
+ .main-container {
132
+ margin-left: 54px;
133
+ }
134
+
135
+ .submenu-title-noDropdown {
136
+ padding-left: 20px !important;
137
+ position: relative;
138
+
139
+ .el-tooltip {
140
+ padding: 0 20px !important;
141
+ }
142
+ }
143
+
144
+ .el-submenu {
145
+ overflow: hidden;
146
+
147
+ & > .el-submenu__title {
148
+ padding-left: 20px !important;
149
+
150
+ .el-submenu__icon-arrow {
151
+ display: none;
152
+ }
153
+ }
154
+ }
155
+
156
+ .el-menu--collapse {
157
+ .el-submenu {
158
+ & > .el-submenu__title {
159
+ & > span {
160
+ height: 0;
161
+ width: 0;
162
+ overflow: hidden;
163
+ visibility: hidden;
164
+ display: inline-block;
165
+ }
166
+ }
167
+ }
168
+ }
169
+ }
170
+
171
+ .sidebar-container .nest-menu .el-submenu > .el-submenu__title,
172
+ .sidebar-container .el-submenu .el-menu-item {
173
+ min-width: 224px !important;
174
+ }
175
+
176
+ .sidebar-container .el-menu--collapse .el-menu .el-submenu {
177
+ min-width: 224px !important;
178
+ }
179
+
180
+ .sidebar-container .el-menu--collapse .el-submenu.is-active > .el-submenu__title,
181
+ .sidebar-container .el-menu--collapse .el-menu.is-active {
182
+ background-color: #FFFFFF !important;
183
+ color: #1A6BF3;
184
+ font-weight: medium;
185
+ border-right: 2px solid #3D4CF2
186
+ }
187
+
188
+ .sidebar-container .el-menu--collapse .el-submenu__title:not(.is-disabled):hover,
189
+ .sidebar-container .el-menu-item:not(.is-disabled):hover {
190
+ background: $--color-hover;
191
+ color: rgba(0, 13, 31, 0.85);
192
+ font-weight: medium;
193
+ }
194
+
195
+ .sidebar-container .el-menu--collapse {
196
+ text-align: left;
197
+ }
198
+
199
+ //适配移动端
200
+ .mobile {
201
+ .main-container {
202
+ margin-left: 0px;
203
+ }
204
+
205
+ .sidebar-container {
206
+ transition: transform .28s;
207
+ width: 224px !important;
208
+ }
209
+
210
+ &.hideSidebar {
211
+ .sidebar-container {
212
+ transition-duration: 0.3s;
213
+ transform: translate3d(-224px, 0, 0);
214
+ }
215
+ }
216
+ }
217
+
218
+ .withoutAnimation {
219
+
220
+ .main-container,
221
+ .sidebar-container {
222
+ transition: none;
223
+ }
224
+ }
225
+ }
226
+
227
+ .sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
228
+ background: #F7F7F8;
229
+ color: rgba(0, 13, 31, 0.85);
230
+ font-weight: medium;
231
+ }
232
+
233
+ .sidebar-container-popper .el-menu .el-submenu.is-active > .el-submenu__title {
234
+ background-color: #FFFFFF !important;
235
+ color: #3D4CF2;
236
+ font-weight: regular;
237
+ }
238
+
239
+ .sidebar-container-popper .el-menu .el-menu-item:hover {
240
+ background-color: $--menu-hove-background-color;
241
+ color: rgba(0, 13, 31, 0.85);
242
+ font-weight: medium;
243
+ }
244
+
245
+ //菜单栏右侧展开时选中菜单的样式
246
+ .sidebar-container-popper .el-menu .el-menu-item.is-active {
247
+ color: $--menu-dont-color;
248
+ border-radius: 2px;
249
+ font-weight: regular;
250
+ font-size: 14px;
251
+ text-align: left;
252
+ }
253
+
254
+
255
+ .sidebar-container-popper .el-menu--collapse {
256
+ text-align: left;
257
+ }
258
+
259
+ .el-menu--vertical {
260
+ & > .el-menu {
261
+ .svg-icon {
262
+ margin-right: 16px;
263
+ }
264
+ }
265
+ }
266
+ .router-link-active >.is-active{
267
+ color: $--menu-dont-color;
268
+ }
269
+ .el-menu-item:hover{
270
+ background-color: $--menu-hove-background-color;
271
+ }
272
+
273
+ .el-menu--collapse .el-sub-menu.is-active .el-sub-menu__title{
274
+ color: $--menu-dont-color;
275
+ }
276
+ .el-sub-menu__title:hover{
277
+ background-color: $--menu-hove-background-color;
278
+ }
279
+
280
+ 运行时工具栏样式
281
+ .amb-widget-tools-parent{
282
+ margin-bottom: 20px;
283
+ }
284
+ .amb-widget-container-tool{
285
+ display: flex;
286
+ overflow-x: auto;
287
+ padding: 10px 0;
288
+ }
289
+ }
@@ -0,0 +1,84 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+
5
+ .superForm,
6
+ .chartTabPage {
7
+
8
+ .el-tabs {
9
+ background-color: #FFFFFF;
10
+ // margin-top: 16px;
11
+ // margin-left: 24px;
12
+ }
13
+
14
+ .el-tabs__active-bar {
15
+ display: none;
16
+ }
17
+
18
+ .el-tabs__header {
19
+ margin: 0 0 6px;
20
+ }
21
+
22
+ .el-tabs__header.is-top {
23
+ border-bottom: 0;
24
+ }
25
+
26
+ .el-tabs--top .el-tabs__item.is-top {
27
+ padding: 0px 20px 0px 20px;
28
+ }
29
+
30
+ .el-tabs__nav {
31
+ background-color: #F7F7F8;
32
+ }
33
+
34
+ .el-tabs__item {
35
+ height: 32px;
36
+ line-height: 32px;
37
+ margin: 4px;
38
+ color: rgba(0, 13, 31, 0.85)
39
+ }
40
+
41
+ .el-tabs__nav-wrap::after {
42
+ display: none;
43
+ }
44
+
45
+ .el-tabs__item.is-active {
46
+ background-color: #FFFFFF;
47
+ color: $--menu-dont-color;
48
+ font-weight: 500;
49
+ }
50
+
51
+ .el-form--label-right {
52
+ border-radius: 28px 8px 0 0;
53
+ }
54
+
55
+ .el-tabs__content {
56
+ background-color: #FFFFFF;
57
+ }
58
+
59
+ .el-tabs--border-card>.el-tabs__content {
60
+ padding: 0;
61
+ }
62
+
63
+ .el-tabs--border-card {
64
+ background-color: #F7F7F8;
65
+ border-radius: 8px 8px 0 0;
66
+ }
67
+
68
+ .el-tabs--border-card>.el-tabs__header {
69
+ background-color: #F7F7F8;
70
+ }
71
+
72
+ .el-tabs--border-card>.el-tabs__header .el-tabs__item:not(.is-disabled):hover {
73
+ color: #3D4CF2;
74
+ }
75
+
76
+ .el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active {
77
+ color: #3D4CF2;
78
+ font-size: 0.9rem;
79
+ font-weight: 500;
80
+ }
81
+ }
82
+
83
+
84
+ }
@@ -0,0 +1,16 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+ $table-cell-font-color: #313233;
5
+
6
+ .el-table__header tr {
7
+ background-color: $th-cell-background;
8
+ color: #333333;
9
+ }
10
+
11
+ //.el-button--text {
12
+ // color: $--color-primary;
13
+ // font-size: 1rem;
14
+ // text-align: center;
15
+ //}
16
+ }
@@ -0,0 +1,61 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+
5
+
6
+ .el-tree-node__content:hover {
7
+ background-color: $th-cell-background;
8
+ }
9
+
10
+ .el-tree-node__content>.el-checkbox {
11
+ margin-right: 8px;
12
+ }
13
+
14
+ .context-menu li:hover {
15
+ /*background: #42b983;*/
16
+ background-color: $--menu-hove-background-color;
17
+ }
18
+
19
+ // .el-tree-node .is-checked {
20
+ // background-color: $th-cell-background !important;
21
+ // }
22
+
23
+ // .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
24
+ // background-color: transparent;
25
+ // }
26
+
27
+ // .el-tree-node .is-expanded .is-focusable .is-checked {
28
+ // background-color: transparent;
29
+ // }
30
+
31
+ // 选择背景色 暂时去掉
32
+ //.el-tree-node .is-current .is-focusable {
33
+ // background-color: $th-cell-background !important;
34
+ //}
35
+
36
+ // "暂无更多" 样式
37
+ //.roleQuery_center_area {
38
+ // width: 100%;
39
+ // position: relative;
40
+ //
41
+ // .roleQuery_notAvailable {
42
+ // background-image: url('../../../assets/nonemessage.png');
43
+ // background-size: 100%;
44
+ // position: absolute;
45
+ // top: 30%;
46
+ // left: 50%;
47
+ // transform: translate(-50%, -50%);
48
+ //
49
+ // .roleQuery_notAvailable_text {
50
+ // position: absolute;
51
+ // bottom: 0;
52
+ // left: 50%;
53
+ // transform: translate(-50%, 100%);
54
+ // color: #313233;
55
+ // font-weight: 400;
56
+ // font-size: 0.9rem;
57
+ // }
58
+ // }
59
+ //}
60
+
61
+ }
@@ -0,0 +1,23 @@
1
+ /* 改变主题色变量 */
2
+ $--color-primary: #81D8CF;
3
+ $--color-hover: #ebf6f9;
4
+ $--color-card: #E5EFFF;
5
+ $--color-button-hover: #2aaee0;
6
+ $--color-button-active: #3686d9;
7
+ $--font-default-size:16px;
8
+
9
+ $--button-default-border-color: $--color-primary;
10
+ $--button-default-font-color: #0ABAB5;
11
+ $--button-font-weight: regular;
12
+ $--button-primary-btn-color: $--color-primary;
13
+ //菜单字体颜色
14
+ $--menu-dont-color: $--color-primary;
15
+ //下拉选中的字体颜色
16
+ $--select-font-color: $--button-default-font-color;
17
+ //下拉选中的背景颜色
18
+ $--select-font-background-color:#EAF7F8;
19
+ //卡片头部颜色
20
+ $--card-header-color: $--color-card;
21
+
22
+ $--menu-hove-background-color: $--color-hover;
23
+ $th-cell-background: #EDEDED;