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.
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +21442 -20618
- package/lib/super-ui.umd.cjs +70 -71
- package/package.json +1 -1
- package/packages/fs-preview/src/fs-preview.vue +1 -1
- package/packages/fs-upload-list/src/fs-upload-list.vue +2 -2
- package/packages/fs-upload-new/src/fs-button-upload.vue +2 -4
- package/packages/fs-upload-new/src/fs-drag-upload.vue +2 -4
- package/packages/fs-upload-new/src/fs-upload-new.vue +1 -1
- package/packages/super-grid/src/dynamic-input.vue +17 -3
- package/packages/super-grid/src/super-grid.vue +13 -9
- package/packages/workgroup-tree-mobile/src/dept-result.vue +2 -1
- package/src/styles/index.scss +2 -0
- package/src/styles/mixin.scss +6 -5
- package/src/styles/theme/tiffany-blue-mobile/button.scss +122 -0
- package/src/styles/theme/tiffany-blue-mobile/card.scss +144 -0
- package/src/styles/theme/tiffany-blue-mobile/checkbox.scss +16 -0
- package/src/styles/theme/tiffany-blue-mobile/dialog.scss +17 -0
- package/src/styles/theme/tiffany-blue-mobile/element-variables.scss +7 -0
- package/src/styles/theme/tiffany-blue-mobile/font.scss +71 -0
- package/src/styles/theme/tiffany-blue-mobile/form.scss +51 -0
- package/src/styles/theme/tiffany-blue-mobile/general.scss +64 -0
- package/src/styles/theme/tiffany-blue-mobile/home.scss +213 -0
- package/src/styles/theme/tiffany-blue-mobile/index.scss +280 -0
- package/src/styles/theme/tiffany-blue-mobile/input.scss +15 -0
- package/src/styles/theme/tiffany-blue-mobile/message.scss +8 -0
- package/src/styles/theme/tiffany-blue-mobile/mobile.scss +13 -0
- package/src/styles/theme/tiffany-blue-mobile/pagination.scss +17 -0
- package/src/styles/theme/tiffany-blue-mobile/radio.scss +13 -0
- package/src/styles/theme/tiffany-blue-mobile/scrollbar-style.scss +32 -0
- package/src/styles/theme/tiffany-blue-mobile/select.scss +7 -0
- package/src/styles/theme/tiffany-blue-mobile/sidebar.scss +289 -0
- package/src/styles/theme/tiffany-blue-mobile/tab.scss +84 -0
- package/src/styles/theme/tiffany-blue-mobile/table.scss +16 -0
- package/src/styles/theme/tiffany-blue-mobile/tree.scss +61 -0
- package/src/styles/theme/tiffany-blue-mobile/var.scss +23 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.mobilePage {
|
|
2
|
+
position: relative;
|
|
3
|
+
width: 100%;
|
|
4
|
+
background: #f8f8f8;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
overflow: scroll;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.upgrade_page_sort_top_menu {
|
|
10
|
+
padding: 10px 10px 10% 10px;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
|
|
13
|
+
.sort_top_menu_card {
|
|
14
|
+
margin-top: 10px;
|
|
15
|
+
width: 100%;
|
|
16
|
+
padding: 10px;
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
background-color: #fff;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.removeUserFunctions {
|
|
22
|
+
margin-top: 10px;
|
|
23
|
+
width: 100%;
|
|
24
|
+
padding: 10px;
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
background-color: #fff;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.removeUserFunctions_item {
|
|
30
|
+
width: 100px;
|
|
31
|
+
height: 50px;
|
|
32
|
+
margin-right: 10px;
|
|
33
|
+
border: 1px solid #dcdcdc;
|
|
34
|
+
text-align: center;
|
|
35
|
+
display: inline-block;
|
|
36
|
+
margin-top: 10px;
|
|
37
|
+
text-align: center;
|
|
38
|
+
line-height: 50px;
|
|
39
|
+
border-radius: 6px 6px 6px 6px;
|
|
40
|
+
position: relative;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.inline_content {
|
|
45
|
+
display: flex;
|
|
46
|
+
justify-content: space-between;
|
|
47
|
+
align-items: center;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.text_overrun {
|
|
51
|
+
text-overflow: ellipsis;
|
|
52
|
+
white-space: nowrap;
|
|
53
|
+
overflow: hidden
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.my_function_box {
|
|
57
|
+
width: 100%;
|
|
58
|
+
background-color: #fff;
|
|
59
|
+
padding: 0 15px;
|
|
60
|
+
|
|
61
|
+
.my_function_title {
|
|
62
|
+
font-size: 0.9rem;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
.tiffany-blue-mobile {
|
|
2
|
+
|
|
3
|
+
// 版心
|
|
4
|
+
.type_center {
|
|
5
|
+
padding: 0 10px
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.bg_circle {
|
|
9
|
+
width: 150%;
|
|
10
|
+
background-color: #81d8cf;
|
|
11
|
+
height: 200px;
|
|
12
|
+
border-radius: 50%;
|
|
13
|
+
position: absolute;
|
|
14
|
+
left: 50%;
|
|
15
|
+
transform: translateX(-50%);
|
|
16
|
+
top: -120px;
|
|
17
|
+
z-index: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.my_menu {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: space-between
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.home_top_menu {
|
|
27
|
+
display: flex;
|
|
28
|
+
margin-top: 20px;
|
|
29
|
+
|
|
30
|
+
.home_top_select_menu {
|
|
31
|
+
width: calc(100% - 40px);
|
|
32
|
+
height: 100%;
|
|
33
|
+
overflow: scroll;
|
|
34
|
+
overflow-y: hidden;
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
margin-right: 20px;
|
|
38
|
+
padding-left: 10px;
|
|
39
|
+
|
|
40
|
+
.home_top_select_menu_details {
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: column;
|
|
43
|
+
align-items: center;
|
|
44
|
+
margin-right: 20px;
|
|
45
|
+
|
|
46
|
+
.select_menu_icon {
|
|
47
|
+
width: 24px;
|
|
48
|
+
height: 24px;
|
|
49
|
+
margin-bottom: 6px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.select_menu_title {
|
|
53
|
+
white-space: nowrap;
|
|
54
|
+
font-size: 0.8rem
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.home_top_more_menu {
|
|
60
|
+
width: 40px;
|
|
61
|
+
height: 40px;
|
|
62
|
+
|
|
63
|
+
.more_menu_menu {
|
|
64
|
+
color: $--color-primary;
|
|
65
|
+
width: 40px;
|
|
66
|
+
height: 40px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.home_center_message {
|
|
72
|
+
color: #999999;
|
|
73
|
+
display: flex;
|
|
74
|
+
font-size: 0.9rem;
|
|
75
|
+
|
|
76
|
+
.home_center_message_select {
|
|
77
|
+
color: $--color-primary;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.home_center_message_select::after {
|
|
81
|
+
content: '';
|
|
82
|
+
display: block;
|
|
83
|
+
width: 50%;
|
|
84
|
+
height: 2px;
|
|
85
|
+
background: $--color-primary;
|
|
86
|
+
text-align: center;
|
|
87
|
+
margin: 5px auto 0 auto;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.home_center_message_icon {
|
|
91
|
+
width: 20px;
|
|
92
|
+
height: 20px;
|
|
93
|
+
position: absolute;
|
|
94
|
+
right: 20px;
|
|
95
|
+
transform: translateY(-50%);
|
|
96
|
+
color: #95d6cf;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.home_center_message .center_message_item:not(:last-child) {
|
|
101
|
+
margin-right: 30px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.chart_title {
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: space-between;
|
|
108
|
+
padding: 20px 10px 10px 10px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.chart-container {
|
|
112
|
+
display: flex;
|
|
113
|
+
flex-wrap: wrap;
|
|
114
|
+
row-gap: 10px;
|
|
115
|
+
/* 设置子元素之间的垂直间距 */
|
|
116
|
+
padding: 10px;
|
|
117
|
+
box-sizing: border-box;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.chart-item {
|
|
121
|
+
flex: 1 1 calc(100%);
|
|
122
|
+
/* 每个子元素占据 1/3 的宽度,减去间距 */
|
|
123
|
+
height: 300px;
|
|
124
|
+
/* 根据需要设置高度 */
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.home-chart-iframe {
|
|
128
|
+
width: 100%;
|
|
129
|
+
height: 100%;
|
|
130
|
+
border: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.select_title_item {
|
|
134
|
+
background-color: rgba(10, 186, 181, 0.1);
|
|
135
|
+
color: #0abab5;
|
|
136
|
+
border: 1px solid #0abab5;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.home_top_select_menu {
|
|
140
|
+
scrollbar-width: none;
|
|
141
|
+
scrollbar-color: transparent transparent;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.home_center_divider {
|
|
145
|
+
height: 1px;
|
|
146
|
+
width: calc(100vw - 20px);
|
|
147
|
+
background-color: #F0F0F0;
|
|
148
|
+
transform: translateX(-10px);
|
|
149
|
+
margin-top: 2px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.home_center_quest {
|
|
153
|
+
margin-top: 10px;
|
|
154
|
+
|
|
155
|
+
.top_title {
|
|
156
|
+
width: 100%;
|
|
157
|
+
height: 100%;
|
|
158
|
+
display: flex;
|
|
159
|
+
position: relative;
|
|
160
|
+
|
|
161
|
+
.top_title_item {
|
|
162
|
+
background-color: #F3F3F5;
|
|
163
|
+
box-sizing: border-box;
|
|
164
|
+
padding: 5px 15px;
|
|
165
|
+
text-align: center;
|
|
166
|
+
border-radius: 6px;
|
|
167
|
+
font-size: 0.7rem;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.top_title .top_title_item:not(:last-child) {
|
|
172
|
+
margin-right: 20px;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.link_page_subject {
|
|
177
|
+
display: flex;
|
|
178
|
+
flex-direction: column;
|
|
179
|
+
height: 100vh;
|
|
180
|
+
overflow: scroll;
|
|
181
|
+
background-color: #f8f8f8;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.chart_layout_card {
|
|
185
|
+
width: 100px;
|
|
186
|
+
height: 50px;
|
|
187
|
+
margin-right: 10px;
|
|
188
|
+
border: 1px solid #dcdcdc;
|
|
189
|
+
text-align: center;
|
|
190
|
+
display: inline-block;
|
|
191
|
+
margin-top: 10px;
|
|
192
|
+
text-align: center;
|
|
193
|
+
line-height: 50px;
|
|
194
|
+
border-radius: 6px 6px 6px 6px;
|
|
195
|
+
position: relative;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.upper_right_icon {
|
|
199
|
+
width: 18px;
|
|
200
|
+
height: 18px;
|
|
201
|
+
position: absolute;
|
|
202
|
+
top: -6px;
|
|
203
|
+
right: -6px;
|
|
204
|
+
|
|
205
|
+
.upper_right_icon_item {
|
|
206
|
+
width: 18px;
|
|
207
|
+
height: 18px;
|
|
208
|
+
background-color: #668AE8;
|
|
209
|
+
border-radius: 50%;
|
|
210
|
+
color: #fff;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
@import './element-variables.scss';
|
|
2
|
+
@import './table.scss';
|
|
3
|
+
@import './sidebar.scss';
|
|
4
|
+
@import './font.scss';
|
|
5
|
+
@import './card.scss';
|
|
6
|
+
@import './tab.scss';
|
|
7
|
+
@import './input.scss';
|
|
8
|
+
@import './select.scss';
|
|
9
|
+
@import './form.scss';
|
|
10
|
+
@import './pagination.scss';
|
|
11
|
+
@import './button.scss';
|
|
12
|
+
@import './checkbox.scss';
|
|
13
|
+
@import './dialog.scss';
|
|
14
|
+
@import './tree.scss';
|
|
15
|
+
@import './scrollbar-style.scss';
|
|
16
|
+
@import './message.scss';
|
|
17
|
+
@import './radio.scss';
|
|
18
|
+
@import "./var.scss";
|
|
19
|
+
@import "./mobile.scss";
|
|
20
|
+
@import "./home.scss";
|
|
21
|
+
@import "./general.scss";
|
|
22
|
+
|
|
23
|
+
.tiffany-blue-mobile {
|
|
24
|
+
font-family: Source Han Sans CN;
|
|
25
|
+
font-size: 0.9rem;
|
|
26
|
+
color: rgba(0, 0, 0, 0.85);
|
|
27
|
+
-moz-osx-font-smoothing: grayscale;
|
|
28
|
+
-webkit-font-smoothing: antialiased;
|
|
29
|
+
text-rendering: optimizeLegibility;
|
|
30
|
+
height: 100%;
|
|
31
|
+
|
|
32
|
+
.el-button {
|
|
33
|
+
font-family: Source Han Sans CN;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.el-dialog__body {
|
|
37
|
+
padding: 10px 10px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.fl {
|
|
41
|
+
float: left;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.fr {
|
|
45
|
+
float: right;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
html {
|
|
50
|
+
height: 100%;
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#app {
|
|
55
|
+
height: 100%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
a,
|
|
59
|
+
a:focus,
|
|
60
|
+
a:hover {
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
//color: inherit;
|
|
63
|
+
outline: none;
|
|
64
|
+
text-decoration: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
div:focus {
|
|
68
|
+
outline: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
a:focus,
|
|
72
|
+
a:active {
|
|
73
|
+
outline: none;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
a,
|
|
77
|
+
a:focus,
|
|
78
|
+
a:hover {
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
//color: inherit;
|
|
81
|
+
text-decoration: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.clearfix {
|
|
85
|
+
&:after {
|
|
86
|
+
visibility: hidden;
|
|
87
|
+
display: block;
|
|
88
|
+
font-size: 0;
|
|
89
|
+
content: " ";
|
|
90
|
+
clear: both;
|
|
91
|
+
height: 0;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
//main-container全局样式
|
|
96
|
+
.app-main {
|
|
97
|
+
min-height: 100vh;
|
|
98
|
+
background: #fcfcfc;
|
|
99
|
+
//padding: 11px 24px 11px 24px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.app-container {
|
|
103
|
+
// padding: 20px;
|
|
104
|
+
// padding: 0px;
|
|
105
|
+
padding: 10px 12px;
|
|
106
|
+
background: #FFFFFF;
|
|
107
|
+
border-radius: 6px;
|
|
108
|
+
box-shadow: 0 1px 8px 0 #00000019;
|
|
109
|
+
|
|
110
|
+
.box-card {
|
|
111
|
+
margin: 0 0 0 0;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.no-margin {
|
|
116
|
+
padding: 0 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.add_form_height {
|
|
120
|
+
height: calc(100vh - 60px);
|
|
121
|
+
position: relative;
|
|
122
|
+
|
|
123
|
+
.add_form_center {
|
|
124
|
+
position: absolute;
|
|
125
|
+
top: 50%;
|
|
126
|
+
left: 50%;
|
|
127
|
+
transform: translate(-50%, -50%);
|
|
128
|
+
height: auto;
|
|
129
|
+
|
|
130
|
+
.add_form_buttomButton {
|
|
131
|
+
text-align: right;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.operation-area {
|
|
137
|
+
margin-bottom: 20px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* @description: 工具栏布局
|
|
142
|
+
* @Date: 2023-07-17 15:48:04
|
|
143
|
+
* @param {*}
|
|
144
|
+
* @return {*}
|
|
145
|
+
*/
|
|
146
|
+
.toolbar_flex {
|
|
147
|
+
display: flex;
|
|
148
|
+
justify-content: space-between;
|
|
149
|
+
|
|
150
|
+
.list_toolbar_page_style {
|
|
151
|
+
text-align: right;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.operation-area-chart {
|
|
156
|
+
padding-right: 24px;
|
|
157
|
+
padding-top: 24px;
|
|
158
|
+
text-align: right;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// 解决tab页签中内容多时没有滚动条问题
|
|
162
|
+
.el-tabs__content {
|
|
163
|
+
flex-grow: 1;
|
|
164
|
+
overflow-y: auto;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// 解决在edge浏览器中dialog有遮罩层 或 MessageBox的$confirm时,遮罩层偏移,导致弹框中组件元素无法操作问题。
|
|
168
|
+
// .el-dialog__wrapper、.el-message-box__wrapper、.v-modal默认position是relative,改为absolute就不会出现偏移了。
|
|
169
|
+
// dialog弹框的样式
|
|
170
|
+
.el-dialog__wrapper {
|
|
171
|
+
position: absolute;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// MessageBox的样式,必须这样修改,否则会导致点击确定、取消按钮不好用
|
|
175
|
+
.el-message-box__wrapper {
|
|
176
|
+
position: absolute;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// dialog遮罩层的样式
|
|
180
|
+
.v-modal {
|
|
181
|
+
position: absolute;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.menu-tab-container .el-tabs__item {
|
|
185
|
+
height: 48px;
|
|
186
|
+
line-height: 48px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
//顶部标签字体样式
|
|
190
|
+
.menu-tab-container .el-tabs__item.is-active {
|
|
191
|
+
color: $--menu-dont-color;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
//顶部标签下划线样式
|
|
195
|
+
.menu-tab-container .el-tabs__active-bar {
|
|
196
|
+
background-color: $--menu-dont-color;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.el-pagination {
|
|
200
|
+
display: flex;
|
|
201
|
+
justify-content: flex-end;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.el-table td {
|
|
205
|
+
padding: 14px 0;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.el-table td,
|
|
209
|
+
.el-table th {
|
|
210
|
+
height: 40px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.el-table th {
|
|
214
|
+
padding: 0;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**表格内容纵向分隔线去掉**/
|
|
218
|
+
.el-table--border td,
|
|
219
|
+
.el-table--border th,
|
|
220
|
+
.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
|
|
221
|
+
border-right: 0;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/**表格标题纵向分隔线颜色调浅点儿**/
|
|
225
|
+
.el-table--border td,
|
|
226
|
+
.el-table--border th,
|
|
227
|
+
.el-table--border th.is-leaf,
|
|
228
|
+
.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
|
|
229
|
+
border-right: 1px solid #fefefe;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.selectPeopleClass {
|
|
233
|
+
color: #313233;
|
|
234
|
+
font-family: Source Han Sans CN;
|
|
235
|
+
font-weight: regular;
|
|
236
|
+
font-size: 0.9rem;
|
|
237
|
+
line-height: 22px;
|
|
238
|
+
letter-spacing: 0;
|
|
239
|
+
text-align: left;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.el-button+.el-button {
|
|
243
|
+
margin-left: 10px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// .el-main {
|
|
247
|
+
// padding: 0px;
|
|
248
|
+
// }
|
|
249
|
+
|
|
250
|
+
// .el-aside {
|
|
251
|
+
// margin-right: 20px;
|
|
252
|
+
// }
|
|
253
|
+
|
|
254
|
+
// .three-column-layout {
|
|
255
|
+
// height: calc(100vh - 20px);
|
|
256
|
+
|
|
257
|
+
// .el-aside {
|
|
258
|
+
// margin-right: 20px;
|
|
259
|
+
// padding-top: 20px;
|
|
260
|
+
// background-color: #FFFFFF;
|
|
261
|
+
// box-shadow: 0px 1px 8px 0px #00000019;
|
|
262
|
+
|
|
263
|
+
// }
|
|
264
|
+
|
|
265
|
+
// .el-main {
|
|
266
|
+
// padding: 20px 0 0 20px;
|
|
267
|
+
// border-radius: 6px;
|
|
268
|
+
// background: #FFFFFF;
|
|
269
|
+
// box-shadow: 0px 1px 8px 0px #00000019;
|
|
270
|
+
// }
|
|
271
|
+
// }
|
|
272
|
+
|
|
273
|
+
// 清除 app-container 类样式
|
|
274
|
+
.clear_app_container {
|
|
275
|
+
padding: 0;
|
|
276
|
+
background: transparent;
|
|
277
|
+
border-radius: 0;
|
|
278
|
+
box-shadow: 0 0 0 #ccc;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@import "./var.scss";
|
|
2
|
+
.tiffany-blue-mobile {
|
|
3
|
+
.el-pager li:not(.disabled) {
|
|
4
|
+
&:hover {
|
|
5
|
+
//color: $--pagination-hover-color;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&.active {
|
|
9
|
+
color: #FFFFFF;
|
|
10
|
+
background-color: $--button-default-font-color;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.el-pagination.is-background .el-pager li.is-active {
|
|
15
|
+
background-color: $--button-default-font-color;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
.tiffany-blue-mobile {
|
|
2
|
+
|
|
3
|
+
// radio中间的圆点颜色
|
|
4
|
+
.el-radio__input.is-disabled.is-checked .el-radio__inner::after {
|
|
5
|
+
background-color: #000000;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.el-radio__input.is-disabled .el-radio__inner,
|
|
9
|
+
.el-radio__input.is-disabled.is-checked .el-radio__inner {
|
|
10
|
+
background-color: #F5F7FA;
|
|
11
|
+
border-color: #666666;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.tiffany-blue-mobile {
|
|
2
|
+
|
|
3
|
+
// 滚动条基础样式
|
|
4
|
+
::-webkit-scrollbar {
|
|
5
|
+
width: 6px; // 纵向的宽度
|
|
6
|
+
height: 8px; // 横向的高度
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// 默认下滚动条的样式
|
|
10
|
+
::-webkit-scrollbar-thumb {
|
|
11
|
+
background: #eaeaea;
|
|
12
|
+
border: none;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// 鼠标悬停在滚动条时的样式
|
|
17
|
+
::-webkit-scrollbar-thumb:hover {
|
|
18
|
+
background: rgba(157, 165, 183, 0.7)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// 滚动条区域 空白地方的样式
|
|
22
|
+
::-webkit-scrollbar-track {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
border: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// 鼠标悬停在滚动条时 滚动条区域 空白地方的样式
|
|
28
|
+
::-webkit-scrollbar-track:hover {
|
|
29
|
+
background-color: #eaeaea;
|
|
30
|
+
border: none;
|
|
31
|
+
}
|
|
32
|
+
}
|