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

Side by Side Diff: chrome/browser/resources/ntp_search/apps_page.css

Issue 11412214: NTP5: Fine tuning of Apps implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync and rebase Created 8 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .apps-page .tile-cell { 5 .apps-page .tile-cell {
6 -webkit-margin-start: 12px; 6 -webkit-margin-start: 12px;
7 margin-bottom: 12px; 7 margin-bottom: 12px;
8 } 8 }
9 9
10 .apps-page .tile-cell:first-child { 10 .apps-page .tile-cell:first-child {
11 -webkit-margin-start: 0; 11 -webkit-margin-start: 0;
12 } 12 }
13 13
14 .apps-page .app { 14 .apps-page .app {
15 display: block; 15 display: block;
16 height: 77px; 16 height: 70px;
17 outline: none; 17 outline: none;
18 text-align: center; 18 text-align: center;
19 width: 77px; 19 width: 70px;
20 } 20 }
21 21
22 .apps-page .app .title { 22 .apps-page .app .title {
23 color: #777; 23 color: #777;
24 font-size: 0.9166em; 24 font-size: 0.9166em;
25 margin-top: 2px;
25 } 26 }
26 27
27 .app-contents { 28 .app-contents {
28 -webkit-transition: -webkit-transform 100ms; 29 -webkit-transition: -webkit-transform 100ms;
29 } 30 }
30 31
31 .app-contents:active:not(.suppress-active), 32 .app-contents:active:not(.suppress-active),
32 .app:not(.click-focus):focus .app-contents:not(.suppress-active), 33 .app:not(.click-focus):focus .app-contents:not(.suppress-active),
33 .drag-representation:not(.placing) .app-contents { 34 .drag-representation:not(.placing) .app-contents {
34 -webkit-transform: scale(1.1); 35 -webkit-transform: scale(1.1);
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 125
125 .app .invisible { 126 .app .invisible {
126 visibility: hidden; 127 visibility: hidden;
127 } 128 }
128 129
129 /* Move the notification lower on apps pages to account for the 16px of 130 /* Move the notification lower on apps pages to account for the 16px of
130 * transparency each app icon should have. */ 131 * transparency each app icon should have. */
131 .apps-page #notification-container { 132 .apps-page #notification-container {
132 bottom: 15px; 133 bottom: 15px;
133 } 134 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp_search/apps_page.js » ('j') | chrome/browser/resources/ntp_search/apps_page.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698