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

Side by Side Diff: remoting/webapp/window_frame.css

Issue 418543002: Show the window controls for 3s on entering full-screen mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad rebase. Created 6 years, 4 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
« no previous file with comments | « no previous file | remoting/webapp/window_frame.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 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
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/window_frame.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698