OLD | NEW |
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 Loading... |
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 } | |
OLD | NEW |