1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-22 00:15:48 +02:00

Fix square scrollbars option in edit-design causing visual bugs in some places

This commit is contained in:
chylex 2017-03-25 16:16:35 +01:00
parent bf1f72a2a4
commit ffaea6dcbe

View File

@ -202,8 +202,8 @@ enabled(){
}
if (!this.config.roundedScrollBars){
this.css.insert(".scroll-styled-v::-webkit-scrollbar { width: 8px }");
this.css.insert(".scroll-styled-h::-webkit-scrollbar { height: 8px }");
this.css.insert(".scroll-styled-v:not(.antiscroll-inner)::-webkit-scrollbar { width: 8px }");
this.css.insert(".scroll-styled-h:not(.antiscroll-inner)::-webkit-scrollbar { height: 8px }");
this.css.insert(".scroll-styled-v::-webkit-scrollbar-thumb { border-radius: 0 }");
this.css.insert(".scroll-styled-h::-webkit-scrollbar-thumb { border-radius: 0 }");
}