| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |