OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 5 |
6 html.apps-v2, | 6 html.apps-v2, |
7 html.apps-v2 body { | 7 html.apps-v2 body { |
8 height: 100%; | 8 height: 100%; |
9 width: 100%; | 9 width: 100%; |
10 } | 10 } |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 | 163 |
164 body.fullscreen .window-controls-hover-target { | 164 body.fullscreen .window-controls-hover-target { |
165 transition-property: opacity, box-shadow, top; | 165 transition-property: opacity, box-shadow, top; |
166 transition-duration: 0.3s; | 166 transition-duration: 0.3s; |
167 opacity: 0.7; | 167 opacity: 0.7; |
168 top: -33px; | 168 top: -33px; |
169 __MSG_@@bidi_end_edge__: 8px; | 169 __MSG_@@bidi_end_edge__: 8px; |
170 } | 170 } |
171 | 171 |
172 body.fullscreen .window-controls-hover-target:hover, | 172 body.fullscreen .window-controls-hover-target:hover, |
| 173 body.fullscreen .window-controls-hover-target.menu-opened, |
173 body.fullscreen .window-controls-hover-target.opened, | 174 body.fullscreen .window-controls-hover-target.opened, |
174 body.fullscreen .window-controls-hover-target.menu-opened { | 175 body.fullscreen .window-controls-hover-target.preview { |
175 top: -4px; | 176 top: -4px; |
176 opacity: 1.0; | 177 opacity: 1.0; |
177 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); | 178 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); |
178 } | 179 } |
179 | 180 |
180 .fullscreen .window-controls-hover-target.opened .window-controls-stub { | 181 .fullscreen .window-controls-hover-target.opened .window-controls-stub { |
181 background-color: #a6a6a6; | 182 background-color: #a6a6a6; |
182 } | 183 } |
OLD | NEW |