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 html { | 5 html { |
6 overflow: hidden; | 6 overflow: hidden; |
7 } | 7 } |
8 | 8 |
9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
10 body { | 10 body { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 /* Bullets on the left of row. */ | 70 /* Bullets on the left of row. */ |
71 .table-row > .table-row-cell:first-child::before { | 71 .table-row > .table-row-cell:first-child::before { |
72 -webkit-border-radius: 3px; | 72 -webkit-border-radius: 3px; |
73 background: #ccc; | 73 background: #ccc; |
74 content: ''; | 74 content: ''; |
75 display: block; | 75 display: block; |
76 margin: 7px 4px 7px 7px; | 76 margin: 7px 4px 7px 7px; |
77 width: 6px; | 77 width: 6px; |
78 } | 78 } |
79 | 79 |
80 .table-background-row { | |
81 background-color: hsl(34, 91%, 87%); | |
82 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), | |
83 rgba(255, 255, 255, 0)); | |
84 border-color: hsl(34, 91%, 65%); | |
85 } | |
86 | |
87 /* Cells in table. */ | 80 /* Cells in table. */ |
88 .table-row-cell { | 81 .table-row-cell { |
89 -webkit-box-orient: horizontal; | 82 -webkit-box-orient: horizontal; |
90 display: -webkit-box; | 83 display: -webkit-box; |
91 } | 84 } |
92 | 85 |
93 /* Containers of titles of tasks on the process. */ | 86 /* Containers of titles of tasks on the process. */ |
94 .detail-container-title { | 87 .detail-container-title { |
95 -webkit-box-flex: 1; | 88 -webkit-box-flex: 1; |
96 -webkit-box-orient: vertical; | 89 -webkit-box-orient: vertical; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 135 |
143 /* Container for the ok/cancel buttons. */ | 136 /* Container for the ok/cancel buttons. */ |
144 .footer-right-container { | 137 .footer-right-container { |
145 -webkit-box-flex: 1; | 138 -webkit-box-flex: 1; |
146 text-align: right; | 139 text-align: right; |
147 } | 140 } |
148 | 141 |
149 button { | 142 button { |
150 margin: 2px 0 2px 8px; | 143 margin: 2px 0 2px 8px; |
151 } | 144 } |
OLD | NEW |