để đổi màu thanh cuộn như diễn đàn ta làm như sau
thêm code vào cuối extra.less
CSS:
/* Đổi mau thanh cuon */
html {
scrollbar-color: #9C4B00 #151515; /* mau nut va mau nen scrollbar */
}
::-webkit-scrollbar {
width: 13px;
height: 13px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: #9C4B00; /* Couleur du bouton */
border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
background: #9C4B00; /* mau bouton */
}
::-webkit-scrollbar-thumb:active {
background: #9C4B00; /* mau bouton */
}
::-webkit-scrollbar-track {
background: #151515; /* mau nen scrollbar */
border: 0px none #ffffff;
border-radius: 13px;
}
/* End of /* Đổi mau thanh cuon */ */