Home | History | Annotate | Download | only in sync_file_system_internals
      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
      3  * found in the LICENSE file. */
      4 
      5 * {
      6   font-family: Ubuntu, Arial, sans-serif;
      7 }
      8 
      9 tabbox {
     10   min-height: 650px;
     11 }
     12 
     13 h3 {
     14   margin: 2px 0;
     15 }
     16 
     17 th,
     18 td {
     19   font-size: 14px;
     20   padding-left: 0.5em;
     21   padding-right: 0.5em;
     22   text-align: left;
     23   vertical-align: top;
     24 }
     25 
     26 thead tr {
     27   font-size: 14px;
     28   font-weight: bold;
     29 }
     30 
     31 tbody tr:nth-child(odd) {
     32   background: rgb(238, 238, 255);
     33 }
     34 
     35 .log-time {
     36   white-space: nowrap;
     37 }
     38 
     39 .log-event.error {
     40   background: rgb(255, 220, 220);
     41 }
     42 
     43 .file-icon {
     44   background-image: url('chrome://syncfs-internals/file.png');
     45   background-position: 0 2px;
     46   background-repeat: no-repeat;
     47   padding-left: 18px;
     48 }
     49 
     50 .folder-icon {
     51   background-image: url('chrome://syncfs-internals/folder_closed.png');
     52   background-position: 0 2px;
     53   background-repeat: no-repeat;
     54   padding-left: 18px;
     55 }
     56