Skip to content

Commit

Permalink
feat(scrollbar): Do not use rgba background for scrollbar on grade-b …
Browse files Browse the repository at this point in the history
…and c devices
  • Loading branch information
Adam Bradley committed Feb 24, 2014
1 parent 8ef8957 commit 805c35c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scss/_scaffolding.scss
Expand Up @@ -130,7 +130,7 @@ body, .ionic-body {
}
.scroll-bar-indicator {
position: absolute;
background:rgba(0,0,0,0.3);
background: rgba(0,0,0,0.3);
border-radius: 4px;
opacity: 1;

Expand All @@ -140,6 +140,10 @@ body, .ionic-body {
opacity: 0;
}
}
.grade-b .scroll-bar-indicator,
.grade-c .scroll-bar-indicator {
background: #aaa;
}


// Scroll refresher (for pull to refresh)
Expand Down

0 comments on commit 805c35c

Please sign in to comment.