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

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

Issue 304993004: [SyncFS] Add TaskLog tab on chrome://syncfs-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/sync_file_system_internals/main.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
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 * { 5 * {
6 font-family: Ubuntu, Arial, sans-serif; 6 font-family: Ubuntu, Arial, sans-serif;
7 } 7 }
8 8
9 tabbox { 9 tabbox {
10 min-height: 650px; 10 min-height: 650px;
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 .log-time { 35 .log-time {
36 white-space: nowrap; 36 white-space: nowrap;
37 } 37 }
38 38
39 .log-event.error { 39 .log-event.error {
40 background: rgb(255, 220, 220); 40 background: rgb(255, 220, 220);
41 } 41 }
42 42
43 .task-log-details label {
44 cursor: pointer;
45 }
46
47 .task-log-collapse-check {
48 vertical-align: top;
49 }
50
51 .task-log-collapse-check ~ ul {
52 display: inline-block;
53 height: 1em;
54 list-style: none;
55 margin: 0;
56 overflow: hidden;
57 padding: 0;
58 position: relative;
59 }
60
61 .task-log-collapse-check:checked ~ ul {
62 height: auto;
63 }
64
43 .file-icon { 65 .file-icon {
44 background-image: url('chrome://syncfs-internals/file.png'); 66 background-image: url('chrome://syncfs-internals/file.png');
45 background-position: 0 2px; 67 background-position: 0 2px;
46 background-repeat: no-repeat; 68 background-repeat: no-repeat;
47 padding-left: 18px; 69 padding-left: 18px;
48 } 70 }
49 71
50 .folder-icon { 72 .folder-icon {
51 background-image: url('chrome://syncfs-internals/folder_closed.png'); 73 background-image: url('chrome://syncfs-internals/folder_closed.png');
52 background-position: 0 2px; 74 background-position: 0 2px;
53 background-repeat: no-repeat; 75 background-repeat: no-repeat;
54 padding-left: 18px; 76 padding-left: 18px;
55 } 77 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_file_system_internals/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698