a72ae217
王富生
第一次提交
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
.el-breadcrumb__inner,
.el-breadcrumb__inner a {
font-weight: 400 !important;
}
.el-upload {
input[type="file"] {
display: none !important;
}
}
.el-upload__input {
display: none;
}
// to fixed https://github.com/ElemeFE/element/issues/2461
.el-dialog {
transform: none;
left: 0;
position: relative;
margin: 0 auto;
}
// refine element ui upload
.upload-container {
.el-upload {
width: 100%;
.el-upload-dragger {
width: 100%;
height: 200px;
}
}
}
// dropdown
.el-dropdown-menu {
a {
display: block
}
}
|
e4acf226
Andy
add 我的钱包前端页面 table
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// fix date-picker ui bug in filter-item
.el-range-editor.el-input__inner {
display: inline-flex !important;
}
.el-table thead {
color: #515a6e !important;
font-weight: 500;
}
.el-table th{
white-space: nowrap !important;
overflow: hidden !important;
background-color: #f8f8f9 !important;
}
.el-table{
color: #515A6E !important;
}
.el-table thead{
color: #1F2D3D !important;
}
.el-form-item__label{
font-size: 12px !important;
color: #515a6e !important;
vertical-align:middle;
}
label{
font-weight:500 !important;
font-size: 14px !important;
cursor: default !important;
}
|