54 lines
1.0 KiB
CSS
54 lines
1.0 KiB
CSS
|
|
.table>tbody>tr>td{
|
||
|
|
text-align:center;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* dataTables表头居中 */
|
||
|
|
.table>thead:first-child>tr:first-child>th{
|
||
|
|
text-align:center;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* dataTables列内容居中 */
|
||
|
|
.table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* chrome下的滚动条样式 */
|
||
|
|
|
||
|
|
::-webkit-scrollbar {
|
||
|
|
width: 15px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
/* 滚动槽 */
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track {
|
||
|
|
-webkit-box-shadow: inset 0 0 5px #e8eceb;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 滚动条滑块 */
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb {
|
||
|
|
border-radius: 10px;
|
||
|
|
background: #ffffff;
|
||
|
|
-webkit-box-shadow: inset 0 0 6px #cbb7b7;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb:window-inactive {
|
||
|
|
background: #e8eceb;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-corner {
|
||
|
|
background-color: #e8eceb;
|
||
|
|
}
|
||
|
|
.layui-form-label {
|
||
|
|
float: left;
|
||
|
|
display: block;
|
||
|
|
padding: 9px 15px;
|
||
|
|
width: 100px;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 20px;
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
.layui-form-select dl { max-height:200px; max-width: 400px;}
|