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

Unified Diff: chrome/browser/resources/about_welcome_android/about_welcome_android.css

Issue 182213002: Remove a duplicate include of about_welcome_android.css (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove image duplication Created 6 years, 10 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/about_welcome_android/about_welcome_android.css
diff --git a/chrome/browser/resources/about_welcome_android/about_welcome_android.css b/chrome/browser/resources/about_welcome_android/about_welcome_android.css
index 0aca8b6f0bca9b93f241fbe120c014ef800290c6..e640dc90a92ee695d26f0f626ca46e0cfa5761f8 100644
--- a/chrome/browser/resources/about_welcome_android/about_welcome_android.css
+++ b/chrome/browser/resources/about_welcome_android/about_welcome_android.css
@@ -71,17 +71,21 @@ a {
}
/* Logos */
+@media only screen {
+ #logo {
+ background-image: url(images/holo_logo_200.png);
Nico 2014/03/04 00:09:21 This looks slightly wrong: The way we usually do h
+ }
+}
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.0) {
#logo {
-webkit-flex-basis: 152px;
- background-image: url(images/holo_logo_200.png);
max-width: 536px;
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3) {
#logo {
-webkit-flex-basis: 114px;
- background-image: url(images/holo_logo_200.png);
max-width: 402px;
}
}
@@ -95,7 +99,6 @@ a {
@media only screen and (-webkit-min-device-pixel-ratio: 2.0) {
#logo {
-webkit-flex-basis: 76px;
- background-image: url(images/holo_logo_200.png);
max-width: 268px;
}
}

Powered by Google App Engine
This is Rietveld 408576698