Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #20742 from pivanov/bug-1026856
Browse files Browse the repository at this point in the history
Bug 1026856 - [Flame][Browser] Icons in Tabs page should not be scaled while tapping it r=benfrancis
  • Loading branch information
benfrancis committed Jun 20, 2014
2 parents bd5065c + 8d38a60 commit 7ac190c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/browser/style/browser.css
Expand Up @@ -670,20 +670,21 @@ a.recommend[role="button"]:active {

#settings-button {
background: url('images/iconaction_settings_30x30.png') center center no-repeat;
background-size: 3rem;
background-size: 3rem auto;
float: right;
height: 5rem;
}

#settings-button:active {
background: url('images/iconaction_settings_30x30.png') center center no-repeat,
url('images/icon-pressed-bg.png') 100% no-repeat;
background-size: 3rem auto, auto;
}

#new-tab-button {
background: url('images/iconaction_new_30x30.png') center center no-repeat,
url('images/header-divider.png') left center no-repeat;
background-size: 3rem, auto;
background-size: 3rem auto, auto;
float: right;
height: 5rem;
}
Expand All @@ -692,6 +693,7 @@ a.recommend[role="button"]:active {
background: url('images/iconaction_new_30x30.png') center center no-repeat,
url('images/header-divider.png') left center no-repeat,
url('images/icon-pressed-bg.png') 100% no-repeat;
background-size: 3rem auto, auto, auto;
}

#danger-dialog {
Expand Down

0 comments on commit 7ac190c

Please sign in to comment.