Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Side by Side Diff: chrome/browser/resources/task_manager/task_manager.css

Issue 7606029: WebUI TaskManager: Supports background-page mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 /* Bullets on the left of row. */ 82 /* Bullets on the left of row. */
83 .table-row > .table-row-cell:first-child:before { 83 .table-row > .table-row-cell:first-child:before {
84 -webkit-border-radius: 3px; 84 -webkit-border-radius: 3px;
85 background: #CCCCCC; 85 background: #CCCCCC;
86 margin: 7px 4px 7px 7px; 86 margin: 7px 4px 7px 7px;
87 width: 6px; 87 width: 6px;
88 content: ""; 88 content: "";
89 display: block; 89 display: block;
90 } 90 }
91 91
92 .table-background-row {
93 background-color: hsl(34, 91%, 87%);
94 border-color: hsl(34, 91%, 65%);
95 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
xiyuan 2011/08/11 17:14:13 nit: 80 col?
96 }
97
92 /* Cells in table. */ 98 /* Cells in table. */
93 .table-row-cell { 99 .table-row-cell {
94 display: -webkit-box; 100 display: -webkit-box;
95 -webkit-box-orient: horizontal; 101 -webkit-box-orient: horizontal;
96 } 102 }
97 103
98 /* Containers of titles of tasks on the process. */ 104 /* Containers of titles of tasks on the process. */
99 .detail-container-title { 105 .detail-container-title {
100 -webkit-box-flex: 1; 106 -webkit-box-flex: 1;
101 display: -webkit-box; 107 display: -webkit-box;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 /* Container for the ok/cancel buttons. */ 149 /* Container for the ok/cancel buttons. */
144 .footer-right-container { 150 .footer-right-container {
145 -webkit-box-flex: 1; 151 -webkit-box-flex: 1;
146 text-align: right; 152 text-align: right;
147 } 153 }
148 154
149 button { 155 button {
150 padding: 1px 6px; 156 padding: 1px 6px;
151 margin: 2px; 157 margin: 2px;
152 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698