| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 .margin-box { | 6 .margin-box { |
| 7 background-color: #2a2a2a; | 7 background-color: #2a2a2a; |
| 8 border: 1px solid #888; | 8 border: 1px solid #888; |
| 9 box-sizing: border-box; | 9 box-sizing: border-box; |
| 10 color: white; | 10 color: white; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 height: 100%; | 87 height: 100%; |
| 88 left: 50%; | 88 left: 50%; |
| 89 top: 0; | 89 top: 0; |
| 90 width: 0; | 90 width: 0; |
| 91 } | 91 } |
| 92 | 92 |
| 93 #customized-margins { | 93 #customized-margins { |
| 94 position: absolute; | 94 position: absolute; |
| 95 top: 0; | 95 top: 0; |
| 96 } | 96 } |
| 97 |
| 98 #customized-margins.invisible { |
| 99 pointer-events: none; |
| 100 opacity: 0; |
| 101 } |
| OLD | NEW |