滚动条修改
parent
3a60083fa2
commit
3cf25fe666
@ -1,76 +1,72 @@
|
|||||||
/* 滚动条 */
|
/* 滚动条 */
|
||||||
::-webkit-scrollbar {
|
|
||||||
/*垂直滚动条的宽*/
|
|
||||||
width: 10px;
|
|
||||||
/*垂直滚动条的高*/
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
::-webkit-scrollbar-track-piece {
|
::-webkit-scrollbar-track-piece {
|
||||||
/*修改滚动条的背景和圆角*/
|
/*修改滚动条的背景和圆角*/
|
||||||
background: #F7F7F7;
|
background: #f7f7f7;
|
||||||
-webkit-border-radius: 7px;
|
-webkit-border-radius: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*修改垂直滚动条的样式*/
|
/*修改垂直滚动条的样式*/
|
||||||
::-webkit-scrollbar-thumb:vertical {
|
::-webkit-scrollbar-thumb:vertical {
|
||||||
background-color: #dcdfe6;
|
background-color: #dcdfe6;
|
||||||
-webkit-border-radius: 7px;
|
-webkit-border-radius: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*修改水平滚动条的样式*/
|
/*修改水平滚动条的样式*/
|
||||||
::-webkit-scrollbar-thumb:horizontal {
|
::-webkit-scrollbar-thumb:horizontal {
|
||||||
background-color: #dcdfe6;
|
background-color: #dcdfe6;
|
||||||
-webkit-border-radius: 7px;
|
-webkit-border-radius: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* IE7 */
|
/* IE7 */
|
||||||
input:focus, a:focus, button:focus, textarea:focus {
|
input:focus,
|
||||||
outline: none
|
a:focus,
|
||||||
}
|
button:focus,
|
||||||
input:-webkit-autofill {
|
textarea:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
input:-webkit-autofill {
|
||||||
/* -webkit-box-shadow: 0 0 0px 1000px black inset !important; */
|
/* -webkit-box-shadow: 0 0 0px 1000px black inset !important; */
|
||||||
/* background-color: #ffffff !important;*/
|
/* background-color: #ffffff !important;*/
|
||||||
/* background-image: none !important;
|
/* background-image: none !important;
|
||||||
color: white !important; */
|
color: white !important; */
|
||||||
box-shadow: 0 0 0px 1000px rgb(229, 233, 238) inset !important;
|
box-shadow: 0 0 0px 1000px rgb(229, 233, 238) inset !important;
|
||||||
-webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0,1) inset !important;
|
-webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 1) inset !important;
|
||||||
border: 0px solid #CCC!important;
|
border: 0px solid #ccc !important;
|
||||||
-webkit-text-fill-color: #FFF;
|
-webkit-text-fill-color: #fff;
|
||||||
|
}
|
||||||
}
|
/* input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
|
||||||
/* input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
|
|
||||||
background-color: #040406 !important;
|
background-color: #040406 !important;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
color: white !important;
|
color: white !important;
|
||||||
} */
|
} */
|
||||||
::-ms-clear {
|
::-ms-clear {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-ms-reveal {
|
::-ms-reveal {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.on-focus:focus {
|
.on-focus:focus {
|
||||||
border: 1px solid #5BC0DE;
|
border: 1px solid #5bc0de;
|
||||||
}
|
}
|
||||||
.clearfix::after{
|
.clearfix::after {
|
||||||
content: '';
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
clear: both;
|
clear: both;
|
||||||
height: 0;
|
height: 0;
|
||||||
width:100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.mt10{
|
.mt10 {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
.fr{
|
.fr {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
.fl{
|
.fl {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.el-table td{
|
.el-table td {
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue