全局CSS在输入框中也出现二个滚动条

您的反馈很重要!
回复
rray
帖子: 27
注册时间: 2023年 1月 9日 21:04

全局CSS在输入框中也出现二个滚动条

帖子 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) 也无效
头像
catsxp
网站管理员
帖子: 3581
注册时间: 2022年 12月 26日 17:41

Re: 全局CSS在输入框中也出现二个滚动条

帖子 catsxp »

beta-17?
还是?
全局css 我改了实现方式!!
会那样吗,没注意到,我测试一下!!!
头像
catsxp
网站管理员
帖子: 3581
注册时间: 2022年 12月 26日 17:41

Re: 全局CSS在输入框中也出现二个滚动条

帖子 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
改弱了,现在应该可以了,
rray
帖子: 27
注册时间: 2023年 1月 9日 21:04

Re: 全局CSS在输入框中也出现二个滚动条

帖子 rray »

catsxp 写了: 2023年 1月 14日 09:28 beta-18已修复,beta-17太猛了,会修改所有控件的Style
改弱了,现在应该可以了,
OK了
回复