Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 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 #main-layout { | 7 #main-table { |
| 8 border-collapse: collapse; | |
| 9 border-width: 0; | |
| 8 margin-left: auto; | 10 margin-left: auto; |
| 9 margin-right: auto; | 11 margin-right: auto; |
| 10 width: 600px; | 12 table-layout: fixed; |
| 13 width: 1000px; | |
| 11 } | 14 } |
| 12 | 15 |
| 13 hr.section-boundary { | 16 tr.section-row { |
| 14 background: #000; | 17 border-bottom-width: 2px; |
| 15 border: 0; | 18 border-color: #000; |
| 16 height: 2px; | 19 border-left-width: 0; |
| 20 border-right-width: 0; | |
| 21 border-style: solid; | |
| 22 border-top-width: 2px; | |
| 17 width: 100%; | 23 width: 100%; |
| 18 } | 24 } |
| 19 | 25 |
| 20 div.plot-canvas-div { | 26 td.title-cell { |
| 21 overflow: auto; | 27 border-width: 0; |
| 28 text-align: right; | |
| 29 vertical-align: top; | |
| 30 width: 15%; | |
| 31 } | |
| 32 | |
| 33 p.title-text { | |
| 34 font-weight: bold; | |
| 35 margin-right: 10px; | |
| 36 } | |
| 37 | |
| 38 td.show-button-cell { | |
| 39 border-bottom-width: 0; | |
|
arv (Not doing code reviews)
2014/03/10 17:00:46
These can be combined into border-width
Siva Chandra
2014/03/10 18:46:09
Borders on all sides are not the same.
| |
| 40 border-color: #aaa; | |
| 41 border-left-width: 1px; | |
| 42 border-right-width: 1px; | |
| 43 border-style: solid; | |
| 44 border-top-width: 0; | |
| 45 text-align: center; | |
| 46 vertical-align: top; | |
| 47 width: 10%; | |
| 48 } | |
| 49 | |
| 50 td.plots-cell { | |
| 51 border-width: 0; | |
| 52 padding: 10px; | |
| 53 text-align: left; | |
| 54 width: 75%; | |
| 55 } | |
| 56 | |
| 57 div.section-div { | |
| 22 width: 100%; | 58 width: 100%; |
| 23 } | 59 } |
| 24 | 60 |
| 61 div.plots-div { | |
| 62 width: 100%; | |
| 63 } | |
| 64 | |
| 65 button.show-button { | |
| 66 margin: 10px; | |
| 67 } | |
| 68 | |
| 25 button.reload-button { | 69 button.reload-button { |
| 26 margin-bottom: 10px; | 70 margin-bottom: 10px; |
| 27 margin-top: 10px; | 71 margin-top: 10px; |
| 28 } | 72 } |
| OLD | NEW |