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