部分样式修改

This commit is contained in:
liushiting
2020-01-17 18:23:24 +08:00
parent d85aff3eb9
commit d4a96317cb
4 changed files with 20 additions and 4 deletions

View File

@@ -10,6 +10,8 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
body{
}
</style> </style>
</head> </head>

View File

@@ -19,7 +19,6 @@
.table-title { .table-title {
font-family: Arial; font-family: Arial;
font-size: 18px; font-size: 18px;
font-weight:bold;
line-height: 30px; line-height: 30px;
} }
.edit:after{ .edit:after{
@@ -42,6 +41,9 @@
border-right: 1px solid #ccc; border-right: 1px solid #ccc;
} }
.set-icon:hover{
background: $btn-light-background-color-hover;
}
.set-icon:last-child{ .set-icon:last-child{
border-right: none !important; border-right: none !important;
} }

View File

@@ -46,8 +46,14 @@
display: inline-block; display: inline-block;
cursor: pointer; cursor: pointer;
padding: 5px 15px; padding: 5px 15px;
margin-right: -3px;
border-right: 1px solid #ccc; border-right: 1px solid #ccc;
} }
.set-icon:hover{
background: $btn-light-background-color-hover;
}
.set-icon:last-child:hover{
}
.set-icon:last-child{ .set-icon:last-child{
border-right: none !important; border-right: none !important;
} }
@@ -60,7 +66,6 @@
} }
.list-icon { .list-icon {
float: left; float: left;
margin-right: 10px;
} }
.show-icon { .show-icon {
cursor: pointer; cursor: pointer;

View File

@@ -627,12 +627,16 @@ export default {
font-size: 12px; font-size: 12px;
margin-right: 6px; margin-right: 6px;
} }
.top-tools{ .top-tools{
button{ button{
background: $btn-light-background-color; background: $btn-light-background-color;
outline: none; outline: none;
border: 1px solid #ccc; border: 1px solid #ccc;
} }
button:hover{
background: $btn-light-background-color-hover;
}
} }
.nz-dashboard-dropdown { .nz-dashboard-dropdown {
height: 300px; height: 300px;
@@ -656,13 +660,13 @@ export default {
background: #fff; background: #fff;
border-radius: 4px; border-radius: 4px;
align-items: center; align-items: center;
justify-content: space-around; justify-content: center;
margin: 0 10px; margin: 0 10px;
border: 1px solid #ccc; border: 1px solid #ccc;
background: $btn-light-background-color; background: $btn-light-background-color;
span{ span{
display: inline-block; display: inline-block;
padding: 2px 8px; padding: 1px 8px;
} }
} }
.popover_ul li{ .popover_ul li{
@@ -677,5 +681,8 @@ export default {
color: #F0BF84; color: #F0BF84;
} }
.nz-dashboard-picker {} .nz-dashboard-picker {}
.panel-calendar .el-range-editor--mini.el-input__inner{
height: 26px !important;
}
</style> </style>