| 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 { |
| 7 position: relative; |
| 8 } |
| 9 |
| 6 html.apps-v2, | 10 html.apps-v2, |
| 7 html.apps-v2 body { | 11 html.apps-v2 body { |
| 8 height: 100%; | 12 height: 100%; |
| 9 width: 100%; | 13 width: 100%; |
| 10 } | 14 } |
| 11 | 15 |
| 12 html.apps-v2 body:not(.fullscreen) { | 16 html.apps-v2 body:not(.fullscreen) { |
| 13 border: 1px solid gray; /* This is the window border. */ | 17 border: 1px solid gray; /* This is the window border. */ |
| 14 } | 18 } |
| 15 | 19 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); | 186 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); |
| 183 } | 187 } |
| 184 | 188 |
| 185 .fullscreen .title-bar.opened .window-controls-stub { | 189 .fullscreen .title-bar.opened .window-controls-stub { |
| 186 background-color: #a6a6a6; | 190 background-color: #a6a6a6; |
| 187 } | 191 } |
| 188 | 192 |
| 189 body.fullscreen .window-fullscreen { | 193 body.fullscreen .window-fullscreen { |
| 190 display: none; | 194 display: none; |
| 191 } | 195 } |
| OLD | NEW |