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

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

Issue 9923005: [WebUI] Fix rest of CSS style nits so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: serya review Created 8 years, 8 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * 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
4 * found in the LICENSE file. 3 * found in the LICENSE file.
5 */ 4 */
6 5
7 * { 6 * {
8 margin: 0; 7 margin: 0;
9 padding: 0; 8 padding: 0;
10 } 9 }
11 10
12 html { 11 html {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 69
71 /* Title Column text containers. */ 70 /* Title Column text containers. */
72 .detail-title { 71 .detail-title {
73 display: -webkit-box; 72 display: -webkit-box;
74 height: 20px; 73 height: 20px;
75 } 74 }
76 75
77 /* Bullets on the left of row. */ 76 /* Bullets on the left of row. */
78 .table-row > .table-row-cell:first-child:before { 77 .table-row > .table-row-cell:first-child:before {
79 -webkit-border-radius: 3px; 78 -webkit-border-radius: 3px;
80 background: #CCCCCC; 79 background: #ccc;
81 content: ""; 80 content: '';
82 display: block; 81 display: block;
83 margin: 7px 4px 7px 7px; 82 margin: 7px 4px 7px 7px;
84 width: 6px; 83 width: 6px;
85 } 84 }
86 85
87 .table-background-row { 86 .table-background-row {
88 background-color: hsl(34, 91%, 87%); 87 background-color: hsl(34, 91%, 87%);
89 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), 88 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8),
90 rgba(255, 255, 255, 0)); 89 rgba(255, 255, 255, 0));
91 border-color: hsl(34, 91%, 65%); 90 border-color: hsl(34, 91%, 65%);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 135
137 /* Container for the ok/cancel buttons. */ 136 /* Container for the ok/cancel buttons. */
138 .footer-left-container { 137 .footer-left-container {
139 -webkit-box-align: center; 138 -webkit-box-align: center;
140 -webkit-box-flex: 1; 139 -webkit-box-flex: 1;
141 display: -webkit-box; 140 display: -webkit-box;
142 text-align: left; 141 text-align: left;
143 } 142 }
144 143
145 #about-memory-link { 144 #about-memory-link {
145 color: rgb(17, 85, 204);
146 padding-left: 2px; 146 padding-left: 2px;
147 color: #1155CC;
148 } 147 }
149 148
150 /* Container for the ok/cancel buttons. */ 149 /* Container for the ok/cancel buttons. */
151 .footer-right-container { 150 .footer-right-container {
152 -webkit-box-flex: 1; 151 -webkit-box-flex: 1;
153 text-align: right; 152 text-align: right;
154 } 153 }
155 154
156 button { 155 button {
157 margin: 2px 0 2px 8px; 156 margin: 2px 0 2px 8px;
158 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698