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

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

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Boilerplate code only Created 7 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
tzik 2013/04/22 14:07:57 license header?
calvinlo 2013/04/23 05:48:50 Done.
2 * 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
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 th, 5 th,
6 td { 6 td {
7 padding-left: 0.5em; 7 padding-left: 0.5em;
8 padding-right: 0.5em; 8 padding-right: 0.5em;
9 text-align: center; 9 text-align: center;
10 } 10 }
11 11
12 #tree-view-container { 12 #tree-view-container {
tzik 2013/04/22 14:07:57 can we drop this until we use it?
calvinlo 2013/04/23 05:48:50 Done.
13 float: left; 13 float: left;
14 min-width: 15em; 14 min-width: 15em;
15 width: 20%; 15 width: 20%;
16 } 16 }
17 17
18 tr:nth-child(odd) { 18 tr:nth-child(odd) {
19 background: rgb(238, 238, 255); 19 background: rgb(238, 238, 255);
20 } 20 }
21 21
22 .tree-item:not([may-have-children]) > .tree-row > .tree-label { 22 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
23 background-image: url('../../../../ui/webui/resources/images/icon_file.png'); 23 background-image: url('../../../../ui/webui/resources/images/icon_file.png');
24 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698