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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
98 .table-background-row { | 98 .table-background-row { |
99 background-color: hsl(34, 91%, 87%); | 99 background-color: hsl(34, 91%, 87%); |
100 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), | 100 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), |
101 rgba(255, 255, 255, 0)); | 101 rgba(255, 255, 255, 0)); |
102 border-color: hsl(34, 91%, 65%); | 102 border-color: hsl(34, 91%, 65%); |
103 } | 103 } |
104 | 104 |
105 /* Cells in table. */ | 105 /* Cells in table. */ |
106 .table-row-cell { | 106 .table-row-cell { |
107 -webkit-box-orient: horizontal; | 107 -webkit-box-orient: horizontal; |
108 display: -webkit-box; | |
109 } | 108 } |
110 | 109 |
111 /* Containers of titles of tasks on the process. */ | 110 /* Containers of titles of tasks on the process. */ |
112 .detail-container-title { | 111 .detail-container-title { |
113 -webkit-box-flex: 1; | 112 -webkit-box-flex: 1; |
114 -webkit-box-orient: vertical; | |
yoshiki
2011/12/01 13:52:12
Is this necessary? Please don't remove this line.
| |
115 display: -webkit-box; | 113 display: -webkit-box; |
116 margin-left: 3px; | 114 margin-left: 3px; |
117 } | 115 } |
118 | 116 |
119 .detail-title-image { | 117 .detail-title-image { |
120 height: 16px; | 118 height: 16px; |
121 padding: 2px; | 119 padding: 2px; |
122 width: 16px; | 120 width: 16px; |
123 } | 121 } |
124 | 122 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 | 158 |
161 /* Container for the ok/cancel buttons. */ | 159 /* Container for the ok/cancel buttons. */ |
162 .footer-right-container { | 160 .footer-right-container { |
163 -webkit-box-flex: 1; | 161 -webkit-box-flex: 1; |
164 text-align: right; | 162 text-align: right; |
165 } | 163 } |
166 | 164 |
167 button { | 165 button { |
168 margin: 2px 0 2px 8px; | 166 margin: 2px 0 2px 8px; |
169 } | 167 } |
OLD | NEW |