I've styled the scrollbar for webkit in a div containing contacts with the
following CSS:
#contactlist::-webkit-scrollbar {
width: 6px;
height: 6px;
}
#contactlist::-webkit-scrollbar-button:start:decrement,
#contactlist::-webkit-scrollbar-button:end:increment {
display: none;
}
#contactlist::-webkit-scrollbar-button:vertical:increment {
background-color: #fff;
}
#contactlist::-webkit-scrollbar-track-piece {
background-color: #eee;
-webkit-border-radius: 3px;
}
#contactlist::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #ccc;
-webkit-border-radius: 3px;
}
However I seem to me unable to replicate this in SASS without it refusing to
compile or not working. Any tips or help you got offer would be much
appreciated.
--
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/haml?hl=en.