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

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

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

Powered by Google App Engine
This is Rietveld 408576698