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

Side by Side Diff: chrome/browser/resources/quota_internals/main.css

Issue 8461015: UI polish for certificate viewer. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove a patch for aura touch. Created 9 years 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 body {
8 /* Remove body margin as the general tabpanels do not have outer border. */
9 margin: 0;
Evan Stade 2011/12/01 22:09:07 I don't know what quota internals is but I'd have
bshe 2011/12/01 22:29:39 Please see this link: chrome://quota-internals/ O
10 }
11
7 th, td { 12 th, td {
8 padding-left: 0.5em; 13 padding-left: 0.5em;
9 padding-right: 0.5em; 14 padding-right: 0.5em;
10 text-align: center; 15 text-align: center;
11 } 16 }
12 17
13 #tree-view-container { 18 #tree-view-container {
14 float: left; 19 float: left;
15 min-width: 15em; 20 min-width: 15em;
16 width: 20%; 21 width: 20%;
17 } 22 }
18 23
19 tr:nth-child(odd) { 24 tr:nth-child(odd) {
20 background: #eeeeff; 25 background: #eeeeff;
21 } 26 }
22 27
23 .tree-item:not([may-have-children]) > .tree-row > .tree-label { 28 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
24 background-image: url("../shared/images/icon_file.png"); 29 background-image: url("../shared/images/icon_file.png");
25 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698