index.css
3.68 KB
1
2
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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
.el-main{
padding: 0;
}
.el-menu{
height: 100%;
}
/* 输入框重置 */
.el-input--small .el-input__inner {
height: 30px;
line-height: 30px;
}
.el-input__inner{
border: 1px solid #E5E5E5;
}
.el-input.is-active .el-input__inner, .el-input__inner:focus{
border-color: #3BB7FF;
}
/* 下拉框重置 */
.el-select .el-input.is-focus .el-input__inner{
border-color: #3BB7FF;
}
.el-popper[x-placement^=bottom] .popper__arrow{
display: none;
}
.el-popper[x-placement^=bottom]{
margin-top: 0;
}
.el-select-dropdown__list{
padding: 4px 0;
}
.el-select-dropdown{
border-radius: 2px;
}
.el-select-dropdown__item.selected{
color: #555555;
font-weight: 400;
}
.el-select-dropdown__item.hover{
color: #ffffff;
}
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
background: #3BB7FF;
}
.el-select-dropdown__item{
height: 26px;
line-height: 26px;
padding: 0 10px;
}
.el-input__inner{
border-radius: 2px;
padding: 0 10px;
}
/* button重置 */
.el-button--mini, .el-button--small{
border-radius:2px ;
}
.el-button--small, .el-button--small.is-round {
padding: 7px 16px;
}
/* 主要按钮 */
.el-button--primary{
background-color: #0069FF;
border-color: #0069FF;
}
/* 信息按钮 */
.el-button--info {
color: #FFF;
background-color: #3BB7FF;
border-color: #3BB7FF;
}
.el-button--info:focus, .el-button--info:hover {
background: red;
border-color: red;
color: #FFF;
}
.el-button--info.is-active, .el-button--info:active{
background: green;
border-color: green;
color: #FFF;
}
/* 分页 */
.el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li{
margin: 0 ;
background-color: #fff;
color: #606266;
border: 1px solid #e5e5e5;
min-width: 30px;
border-radius: 1px;
border-right: none;
padding: 0 16px;
height: 35px;
line-height: 35px;
}
.el-pagination.is-background .btn-next{
border-right: 1px solid #e5e5e5;
}
.el-pagination button, .el-pagination span:not([class*=suffix]){
height: 35px;
line-height: 35px;
}
.el-pagination.is-background .el-pager li:not(.disabled).active{
background-color:#0069FF
}
.el-input--mini .el-input__inner {
height: 35px;
line-height: 35px;
}
.el-pagination .el-select .el-input .el-input__inner{
border-radius: 2px;
}
/* 表格 */
.el-table--small td, .el-table--small th{
padding: 8px 0;
}
.el-table--mini, .el-table--small, .el-table__expand-icon{
font-size: 14px;
}
.el-table__body tr{
background: #E5E5E5;
}
.el-table--striped .el-table__body tr.el-table__row--striped td{
background: #FFFFFF;
}
/* 提示 */
.el-tooltip__popper{
padding: 6px 12px;
border-radius:2px;
}
.el-tooltip__popper.is-light{
background:rgba(255,255,255,1);
box-shadow:0px 2px 4px 0px rgba(0,0,0,0.13);
border: none;
color: #666666;
}
/* dialog */
.el-dialog__title{
font-size: 15px;
color: #FFFFFF;
}
.el-dialog__header{
padding:8px 20px 6px;
background: #3BB7FF;
}
.el-dialog__headerbtn{
top: 12px;
}
.el-dialog__headerbtn .el-dialog__close{
color: #FFFFFF;
}
.el-dialog__footer{
background:#F6F6F6 ;
}
.dialog-footer .el-button--small {
padding: 9px 17px;
font-size: 14px;
}
.el-dialog__footer {
padding: 8px 27px 8px;
}
/* dialog元素 */
.el-dialog .el-input--small .el-input__inner{
height: 26px;
line-height: 26px;
}
.el-dialog__body{
padding: 30px 34px;
}
.el-dialog .el-select--small{
width: 100%;
}
/* .el-dialog .el-form-item--small .el-form-item__content,.el-dialog .el-form-item--small .el-form-item__label{
line-height: 26px;
} */
.el-switch__core{
height: 13px;
}
.el-switch__core:after{
width: 9px;
height: 9px;
}
.el-switch.is-checked .el-switch__core::after {
left: 100%;
margin-left: -10px;
}