tabulator를 이용해 그리드를 표출했지만

디자인과 어울리지 않게 기본 scroll이 적용되었음.

 

코드는 다음과 같다

 

class = “tabulator-tableholder“에 적용시켜야 css 가 적용됨

.tabulator-tableholder::-webkit-scrollbar{ 
width:16px; 
}
.tabulator-tableholder::-webkit-scrollbar-thumb{
background:  rgba(85,147,255, 0.6); 
border-radius: 10px; 
background-clip: padding-box; 
border: 5px solid transparent; 
}
.tabulator-tableholder::-webkit-scrollbar-track{
background:  rgba(100,126,236, 0); 
}
.tabulator .tabulator-tableholder::-webkit-scrollbar-corner {
background: *transparent*; 
}

 

+ Recent posts