| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* TODO(eroman): Split this file up, so the styles are defined close to where | 7 /* TODO(eroman): Split this file up, so the styles are defined close to where |
| 8 they are used. For instance, the proxy tab styles should | 8 they are used. For instance, the proxy tab styles should |
| 9 either be part of proxy_view.html, or proxy_view.css. Only | 9 either be part of proxy_view.html, or proxy_view.css. Only |
| 10 common styles should be declared here */ | 10 common styles should be declared here */ |
| 11 | 11 |
| 12 * { | 12 * { |
| 13 box-sizing: border-box; | 13 box-sizing: border-box; |
| 14 -moz-box-sizing: border-box; | 14 -moz-box-sizing: border-box; |
| 15 } | 15 } |
| 16 body { | 16 body { |
| 17 font-family: sans-serif; | 17 font-family: sans-serif; |
| 18 } | 18 } |
| 19 | 19 |
| 20 /* This class is used to create the splitter widget in | 20 /* This class is used to create the splitter widget in |
| 21 ResizbleVerticalSplitView */ | 21 ResizbleVerticalSplitView */ |
| 22 .vertical-splitter { | 22 .vertical-splitter { |
| 23 background: #bfbfbf; | 23 background: #bfbfbf; |
| 24 border-left: 1px inset black; | 24 border-left: 1px inset black; |
| 25 border-right: 1px solid black; | 25 border-right: 1px solid black; |
| 26 position:absolute; | 26 position: absolute; |
| 27 width: 8px; | 27 width: 8px; |
| 28 cursor: col-resize; | 28 cursor: col-resize; |
| 29 user-select: none; | 29 user-select: none; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .logSourceEntry { | 32 .logSourceEntry { |
| 33 margin: 5px; | 33 margin: 5px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 .logSourceEntry * p { | 36 .logSourceEntry * p { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 background: red; | 105 background: red; |
| 106 color: #eee; | 106 color: #eee; |
| 107 padding: 4px; | 107 padding: 4px; |
| 108 } | 108 } |
| 109 | 109 |
| 110 #status-view-for-file { | 110 #status-view-for-file { |
| 111 background: #88c; | 111 background: #88c; |
| 112 color: #eee; | 112 color: #eee; |
| 113 padding: 4px; | 113 padding: 4px; |
| 114 } | 114 } |
| OLD | NEW |