| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #preview-area .margin-control { | 5 #preview-area .margin-control { |
| 6 -webkit-transition: opacity 150ms linear; | |
| 7 position: absolute; | 6 position: absolute; |
| 7 transition: opacity 150ms linear; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #preview-area .margin-control.invisible { | 10 #preview-area .margin-control.invisible { |
| 11 opacity: 0; | 11 opacity: 0; |
| 12 pointer-events: none; | 12 pointer-events: none; |
| 13 } | 13 } |
| 14 | 14 |
| 15 #preview-area .margin-control.margin-control-top, | 15 #preview-area .margin-control.margin-control-top, |
| 16 #preview-area .margin-control.margin-control-bottom { | 16 #preview-area .margin-control.margin-control-bottom { |
| 17 cursor: ns-resize; | 17 cursor: ns-resize; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 #preview-area .margin-control-bottom .margin-control-textbox { | 81 #preview-area .margin-control-bottom .margin-control-textbox { |
| 82 bottom: 8px; | 82 bottom: 8px; |
| 83 right: 50%; | 83 right: 50%; |
| 84 } | 84 } |
| 85 | 85 |
| 86 #preview-area .margin-control-left .margin-control-textbox { | 86 #preview-area .margin-control-left .margin-control-textbox { |
| 87 bottom: 50%; | 87 bottom: 50%; |
| 88 left: 8px; | 88 left: 8px; |
| 89 } | 89 } |
| OLD | NEW |