Skip to content

Commit

Permalink
fix(scrollbars): do not apply css scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Feb 2, 2016
1 parent b0f40ef commit f3fb182
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions ionic/components/app/scrollbars.scss
Expand Up @@ -4,24 +4,26 @@
// Styling for dekstop webkit browsers
// These do not apply for mobile browsers

::-webkit-scrollbar {
width: 9px;
}
.css-scrollbars {

::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
background: rgba(0, 0, 0, 0.4);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}
::-webkit-scrollbar {
width: 9px;
}

::-webkit-scrollbar-thumb:vertical:active,
::-webkit-scrollbar-thumb:horizontal:active {
background: rgba(0, 0, 0, 0.6);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}
::-webkit-scrollbar-thumb:vertical {
background: rgba(0, 0, 0, 0.4);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}

::-webkit-scrollbar-thumb:vertical:active {
background: rgba(0, 0, 0, 0.6);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}

}

0 comments on commit f3fb182

Please sign in to comment.