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

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

Issue 12680004: Remove chrome/ code to handle App Notifications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/tab_helper.cc ('k') | chrome/browser/resources/ntp4/apps_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .app { 5 .app {
6 outline: none; 6 outline: none;
7 position: absolute; 7 position: absolute;
8 text-align: center; 8 text-align: center;
9 } 9 }
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 86
87 .app-context-menu > [checked]::before { 87 .app-context-menu > [checked]::before {
88 height: 5px; 88 height: 5px;
89 } 89 }
90 90
91 .launch-click-target { 91 .launch-click-target {
92 cursor: pointer; 92 cursor: pointer;
93 } 93 }
94 94
95 /* Notifications */
96
97 .app-notification {
98 -webkit-transition: color 150ms linear;
99 color: #999;
100 display: block;
101 font-size: 0.9em;
102 white-space: nowrap;
103 }
104
105 .app-notification:hover {
106 text-decoration: underline;
107 }
108
109 .app-img-container > img:first-child { 95 .app-img-container > img:first-child {
110 display: block; 96 display: block;
111 } 97 }
112 98
113 .app .invisible { 99 .app .invisible {
114 visibility: hidden; 100 visibility: hidden;
115 } 101 }
116
117 /* Move the notification lower on apps pages to account for the 16px of
118 * transparency each app icon should have. */
119 .apps-page #notification-container {
120 bottom: 15px;
121 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/tab_helper.cc ('k') | chrome/browser/resources/ntp4/apps_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698