样式优化

master
zhuyinlong 2023-11-08 11:54:31 +08:00
parent 654c31db23
commit 2f8b40a386
2 changed files with 19 additions and 17 deletions

View File

@ -17,22 +17,26 @@
font-style: normal; font-style: normal;
} }
/* 整个滚动条 */
/* 设置滚动条样式 */
::-webkit-scrollbar { ::-webkit-scrollbar {
/* 对应纵向滚动条的宽度 */ width:10px!important;
width: 10px; height:10px!important;
/* 对应横向滚动条的宽度 */ -webkit-appearance:none;
height: 10px; background:#f1f1f1
} }
/* 滚动条上的滚动滑块 */
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: #49b1f5; height:5px;
border-radius: 32px; border:1px solid transparent;
border-top:0;
border-bottom:0;
border-radius:6px;
background-color:#ccc;
background-clip:padding-box
} }
/* 滚动条轨道 */ /** 滚动条样式 **/
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background-color: #dbeffd; background-color: #F5F5F5;
border-radius: 32px;
} }
.row-no-gutter .col-xs-9, .row-no-gutter .col-xs-9,

View File

@ -1083,11 +1083,6 @@ table.rc-table-resizing thead > th > a {
color: #1890ff; color: #1890ff;
} }
/** 滚动条样式 **/
::-webkit-scrollbar-track {
background-color: #F5F5F5;
}
/** 气泡弹出框样式 **/ /** 气泡弹出框样式 **/
.popover { .popover {
font-size: 13px; font-size: 13px;
@ -1156,7 +1151,6 @@ table.rc-table-resizing thead > th > a {
-webkit-appearance:none; -webkit-appearance:none;
background:#f1f1f1 background:#f1f1f1
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
height:5px; height:5px;
border:1px solid transparent; border:1px solid transparent;
@ -1166,6 +1160,10 @@ table.rc-table-resizing thead > th > a {
background-color:#ccc; background-color:#ccc;
background-clip:padding-box background-clip:padding-box
} }
/** 滚动条样式 **/
::-webkit-scrollbar-track {
background-color: #F5F5F5;
}
/* 设置placeholder样式 */ /* 设置placeholder样式 */
::-webkit-input-placeholder { ::-webkit-input-placeholder {