Chromium Code Reviews| 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 * { | 7 * { |
| 8 margin: 0; | 8 margin: 0; |
| 9 padding: 0; | 9 padding: 0; |
| 10 } | 10 } |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 margin-top: 6px; | 68 margin-top: 6px; |
| 69 } | 69 } |
| 70 | 70 |
| 71 /* Task list in table. */ | 71 /* Task list in table. */ |
| 72 .list { | 72 .list { |
| 73 -webkit-box-flex: 1; | 73 -webkit-box-flex: 1; |
| 74 } | 74 } |
| 75 | 75 |
| 76 /* Title Column text containers. */ | 76 /* Title Column text containers. */ |
| 77 .detail-title { | 77 .detail-title { |
| 78 padding-left: 20px; | 78 display: -webkit-box; |
| 79 background-image: url(images/default_page.png); | 79 height: 20px; |
| 80 background-position: left; | 80 } |
| 81 background-repeat: no-repeat; | 81 .detail-title-image { |
| 82 height: 16px; | |
| 83 width: 16px; | |
| 84 padding: 2px; | |
|
mazda
2011/07/07 09:09:38
It's better to list properties in alphabetical ord
| |
| 85 } | |
| 86 .detail-title-text { | |
| 87 height: 18px; | |
| 88 padding: 1px; | |
| 82 } | 89 } |
| 83 | 90 |
| 84 /* Entire Table (including column header). */ | 91 /* Entire Table (including column header). */ |
| 85 .detail-table { | 92 .detail-table { |
| 86 display: -webkit-box; | 93 display: -webkit-box; |
| 87 -webkit-box-orient: vertical; | 94 -webkit-box-orient: vertical; |
| 88 -webkit-box-flex: 1; | 95 -webkit-box-flex: 1; |
| 89 border: 0; | 96 border: 0; |
| 90 } | 97 } |
| 91 /* cr.ui.Table has a black focus border by default, which we don't want. */ | 98 /* cr.ui.Table has a black focus border by default, which we don't want. */ |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 106 -webkit-box-flex: 1; | 113 -webkit-box-flex: 1; |
| 107 text-align: left; | 114 text-align: left; |
| 108 } | 115 } |
| 109 | 116 |
| 110 /* Container for the ok/cancel buttons. */ | 117 /* Container for the ok/cancel buttons. */ |
| 111 .footer-right-container { | 118 .footer-right-container { |
| 112 -webkit-box-flex: 1; | 119 -webkit-box-flex: 1; |
| 113 text-align: right; | 120 text-align: right; |
| 114 } | 121 } |
| 115 | 122 |
| OLD | NEW |