分页: 1 / 1
					
				全局CSS在输入框中也出现二个滚动条
				发表于 : 2023年 1月 14日 07:21
				由 rray
				代码: 全选
::-webkit-scrollbar:not(input) {
    width: 6px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 3px !important;
    background-color: #73A !important;
}
::-webkit-scrollbar-track {
    background: #aee !important;
}
代码如上,加上not(input) 也无效
 
			
					
				Re: 全局CSS在输入框中也出现二个滚动条
				发表于 : 2023年 1月 14日 08:43
				由 catsxp
				beta-17?
还是?
全局css 我改了实现方式!!
会那样吗,没注意到,我测试一下!!!
			 
			
					
				Re: 全局CSS在输入框中也出现二个滚动条
				发表于 : 2023年 1月 14日 09:28
				由 catsxp
				代码: 全选
::-webkit-scrollbar{
    width: 6px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 3px !important;
    background-color: #73A !important;
}
::-webkit-scrollbar-track {
    background: #aee !important;
}
感谢反馈!
beta-18已修复,beta-17太猛了,会修改所有控件的Style 
改弱了,现在应该可以了,
 
			
					
				Re: 全局CSS在输入框中也出现二个滚动条
				发表于 : 2023年 1月 14日 11:08
				由 rray
				catsxp 写了: 2023年 1月 14日 09:28
beta-18已修复,beta-17太猛了,会修改所有控件的Style 
改弱了,现在应该可以了,
 
OK了