| 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; | 6 -webkit-transition: opacity 150ms linear; |
| 7 position: absolute; | 7 position: absolute; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #preview-area .margin-control.invisible { | 10 #preview-area .margin-control.invisible { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #preview-area .margin-control-right .margin-control-line { | 49 #preview-area .margin-control-right .margin-control-line { |
| 50 height: 100%; | 50 height: 100%; |
| 51 } | 51 } |
| 52 | 52 |
| 53 #preview-area .margin-control-textbox { | 53 #preview-area .margin-control-textbox { |
| 54 background-color: #2a2a2a; | 54 background-color: #2a2a2a; |
| 55 border: 1px solid #888; | 55 border: 1px solid #888; |
| 56 box-sizing: border-box; | 56 box-sizing: border-box; |
| 57 color: white; | 57 color: white; |
| 58 cursor: auto; | 58 cursor: auto; |
| 59 font-family: arial; | |
| 60 font-size: 0.8em; | 59 font-size: 0.8em; |
| 61 height: 25px; | 60 height: 25px; |
| 62 padding: 5px 0; | 61 padding: 5px 0; |
| 63 position: absolute; | 62 position: absolute; |
| 64 text-align: center; | 63 text-align: center; |
| 65 width: 60px; | 64 width: 60px; |
| 66 } | 65 } |
| 67 | 66 |
| 68 #preview-area .margin-control-textbox.invalid { | 67 #preview-area .margin-control-textbox.invalid { |
| 69 background-color: rgb(193, 27, 23); | 68 background-color: rgb(193, 27, 23); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 81 | 80 |
| 82 #preview-area .margin-control-bottom .margin-control-textbox { | 81 #preview-area .margin-control-bottom .margin-control-textbox { |
| 83 bottom: 8px; | 82 bottom: 8px; |
| 84 right: 50%; | 83 right: 50%; |
| 85 } | 84 } |
| 86 | 85 |
| 87 #preview-area .margin-control-left .margin-control-textbox { | 86 #preview-area .margin-control-left .margin-control-textbox { |
| 88 bottom: 50%; | 87 bottom: 50%; |
| 89 left: 8px; | 88 left: 8px; |
| 90 } | 89 } |
| OLD | NEW |