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

Unified Diff: chrome/browser/resources/ntp4/apps_page.css

Issue 7553020: Revert 94715 - Revert 94714 - Improve layout for bookmark-apps. Add treatment for small icons. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Improve CSS Created 9 years, 5 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/ntp4/apps_page.css
diff --git a/chrome/browser/resources/ntp4/apps_page.css b/chrome/browser/resources/ntp4/apps_page.css
index 4e53480bbff51828c92b3b4b7b032a45060dc9f8..67bcbdad8e37d554ba1ffdca089b9b6389fbba99 100644
--- a/chrome/browser/resources/ntp4/apps_page.css
+++ b/chrome/browser/resources/ntp4/apps_page.css
@@ -26,6 +26,22 @@
-webkit-mask-size: 100% 100%;
}
+.app-icon-div {
+ border: 1px solid gray;
Evan Stade 2011/08/03 19:17:15 there's probably a better color than "grey" for th
Greg Billock 2011/08/03 21:15:50 Yes. I'd guess the style on this is subject to sig
+ border-radius: 4px;
+ cursor: pointer;
+ display: -webkit-box;
+ width: 96px;
Evan Stade 2011/08/03 19:17:15 comment where the 96 comes from
Greg Billock 2011/08/03 21:15:50 Done.
+ height: 96px;
+ vertical-align: middle;
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 15px;
+ margin-top: 15px;
Evan Stade 2011/08/03 19:17:15 alpahbetize
Greg Billock 2011/08/03 21:15:50 Done.
+}
+
.app-context-menu > button:first-child {
font-weight: bold;
}

Powered by Google App Engine
This is Rietveld 408576698