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

Side by Side Diff: chrome/browser/resources/quota_internals/main.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: removing .py files 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) 2011 The Chromium Authors. All rights reserved. 2 * 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 3 * found in the LICENSE file.
4 found in the LICENSE file. 4 */
Evan Stade 2012/04/03 02:59:48 nooo
Dan Beam 2012/04/03 04:15:06 Done.
5 */
6 5
7 th, td { 6 th,
7 td {
8 padding-left: 0.5em; 8 padding-left: 0.5em;
9 padding-right: 0.5em; 9 padding-right: 0.5em;
10 text-align: center; 10 text-align: center;
11 } 11 }
12 12
13 #tree-view-container { 13 #tree-view-container {
14 float: left; 14 float: left;
15 min-width: 15em; 15 min-width: 15em;
16 width: 20%; 16 width: 20%;
17 } 17 }
18 18
19 tr:nth-child(odd) { 19 tr:nth-child(odd) {
20 background: #eeeeff; 20 background: rgb(238, 238, 255);
21 } 21 }
22 22
23 .tree-item:not([may-have-children]) > .tree-row > .tree-label { 23 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
24 background-image: url("../shared/images/icon_file.png"); 24 background-image: url('../shared/images/icon_file.png');
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698