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

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

Issue 875583002: Allow full-screen mode when not connected, and remember the previous setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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 | « remoting/webapp/app_remoting/js/app_remoting.js ('k') | remoting/webapp/crd/js/app_launcher.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 .window-body { 6 .window-body {
7 position: relative; 7 position: relative;
8 } 8 }
9 9
10 html.apps-v2, 10 html.apps-v2,
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 /* Remove dark borders for elements that are adjacent an existing border. */ 115 /* Remove dark borders for elements that are adjacent an existing border. */
116 .window-close::after { 116 .window-close::after {
117 border-right: none; 117 border-right: none;
118 } 118 }
119 119
120 .window-controls-stub::after { 120 .window-controls-stub::after {
121 border-bottom: none; 121 border-bottom: none;
122 border-right: none; 122 border-right: none;
123 } 123 }
124 124
125 /* The Disconnect, full-screen and options buttons are only displayed when 125 /* The Disconnect and options buttons are only displayed when connected. */
126 connected. */
127 body:not(.connected) .window-disconnect, 126 body:not(.connected) .window-disconnect,
128 body:not(.connected) .window-fullscreen,
129 body:not(.connected) .window-options { 127 body:not(.connected) .window-options {
130 display: none; 128 display: none;
131 } 129 }
132 130
133 131
134 /* 132 /*
135 * When in full-screen mode, significant changes are made: 133 * When in full-screen mode, significant changes are made:
136 * - The scroll-bars are removed. 134 * - The scroll-bars are removed.
137 * - The window controls have a border (so the left-border of the first button 135 * - The window controls have a border (so the left-border of the first button
138 * is not needed). 136 * is not needed).
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); 190 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
193 } 191 }
194 192
195 .fullscreen .title-bar.opened .window-controls-stub { 193 .fullscreen .title-bar.opened .window-controls-stub {
196 background-color: #a6a6a6; 194 background-color: #a6a6a6;
197 } 195 }
198 196
199 body.fullscreen .window-fullscreen { 197 body.fullscreen .window-fullscreen {
200 display: none; 198 display: none;
201 } 199 }
OLDNEW
« no previous file with comments | « remoting/webapp/app_remoting/js/app_remoting.js ('k') | remoting/webapp/crd/js/app_launcher.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698