Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: chrome/browser/resources/ntp/apps.css

Issue 5413001: Use a different icon for the web store under Chromium than Google Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Apps */ 1 /* Apps */
2 2
3 #apps-content { 3 #apps-content {
4 position: relative; 4 position: relative;
5 width: intrinsic; 5 width: intrinsic;
6 max-width: 780px; /* (124 + margin * 2) * 6 */ 6 max-width: 780px; /* (124 + margin * 2) * 6 */
7 } 7 }
8 8
9 html.apps-promo-visible #apps-content { 9 html.apps-promo-visible #apps-content {
10 max-width: 650px; /* (124 + margin * 2) * 5 */ 10 max-width: 650px; /* (124 + margin * 2) * 5 */
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 html[install-animation-enabled=true] .app[new=new] { 106 html[install-animation-enabled=true] .app[new=new] {
107 opacity: 0; 107 opacity: 0;
108 } 108 }
109 109
110 html[install-animation-enabled=true] .app[new=installed] { 110 html[install-animation-enabled=true] .app[new=installed] {
111 -webkit-animation: bounce .5s ease-in-out; 111 -webkit-animation: bounce .5s ease-in-out;
112 -webkit-transition: opacity .5s; 112 -webkit-transition: opacity .5s;
113 } 113 }
114 114
115 .app[app-id=web-store-entry] > a { 115 .app[app-id=web-store-entry] > a {
116 background-image: url("web_store_icon.png"); 116 background-image: url("chrome://theme/IDR_WEBSTORE_ICON");
117 } 117 }
118 118
119 menu > button.default { 119 menu > button.default {
120 font-weight: bold; 120 font-weight: bold;
121 } 121 }
122 122
123 #apps-promo { 123 #apps-promo {
124 display: none; 124 display: none;
125 } 125 }
126 126
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 */ 177 */
178 .app[app-id=web-store-entry].loner { 178 .app[app-id=web-store-entry].loner {
179 position: absolute; 179 position: absolute;
180 left: 100%; 180 left: 100%;
181 top: 0; 181 top: 0;
182 } 182 }
183 183
184 html[dir=rtl] .app[app-id=web-store-entry].loner { 184 html[dir=rtl] .app[app-id=web-store-entry].loner {
185 right: 100%; 185 right: 100%;
186 } 186 }
OLDNEW
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698