Attempt to style the scrollbar for some browsers

This commit is contained in:
aggelosQQ 2016-09-18 08:36:40 +03:00
parent 733de746f4
commit f3b855b6d0
3 changed files with 16 additions and 2 deletions

View file

@ -235,4 +235,17 @@ i.rules-icon:hover {
}
.modal > .modal-footer {
background: rgba(50, 50, 50, 0.6);
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: rgba(100,100,100,0.1);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(230,230,230,0.3);
}