Home | History | Annotate | Download | only in media
      1 /* Copyright (c) 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 .peer-connection-dump-root {
      7   font-size: 0.8em;
      8   padding-bottom: 3px;
      9 }
     10 
     11 .update-log-container {
     12   float: left;
     13   width: 50em;
     14   overflow: auto;
     15 }
     16 
     17 .ssrc-info-block {
     18   color: #999;
     19   font-size: 0.8em;
     20 }
     21 
     22 .stats-graph-container {
     23   clear: both;
     24   margin: 0.5em 0 0.5em 0;
     25 }
     26 
     27 .stats-graph-sub-container {
     28   float: left;
     29   margin: 0.5em;
     30 }
     31 
     32 .stats-graph-sub-container > div {
     33   float: left;
     34 }
     35 
     36 .stats-graph-sub-container > div:first-child {
     37   float: none;
     38 }
     39 
     40 .stats-table-container {
     41   float: left;
     42   padding: 0 0 0 0;
     43   width: 50em;
     44   overflow: auto;
     45 }
     46 
     47 .stats-table-container >div:first-child {
     48   font-size: 0.8em;
     49   font-weight: bold;
     50   text-align: center;
     51   padding: 0 0 1em 0;
     52 }
     53 
     54 .stats-table-active-connection {
     55   font-weight: bold;
     56 }
     57 
     58 body {
     59   font-family: 'Lucida Grande', sans-serif;
     60 }
     61 
     62 table {
     63   border: none;
     64   margin: 0 1em 1em 0;
     65 }
     66 
     67 td {
     68   border: none;
     69   font-size: 0.8em;
     70   padding: 0 1em 0.5em 0;
     71   min-width: 10em;
     72   word-break: break-all;
     73 }
     74 
     75 table > tr {
     76   vertical-align: top;
     77 }
     78 
     79 th {
     80   border: none;
     81   font-size: 0.8em;
     82   padding: 0 0 0.5em 0;
     83 }
     84 
     85 .tab-head {
     86   background-color: rgb(220, 220, 220);
     87   margin: 10px 2px 0 2px;
     88   text-decoration: underline;
     89   cursor: pointer;
     90   display: inline-block;
     91   word-break: break-all;
     92   width: 20em;
     93 }
     94 
     95 .active-tab-head {
     96   background-color: turquoise;
     97   font-weight: bold;
     98 }
     99 
    100 .tab-body {
    101   border: 1px solid turquoise;
    102   border-top-width: 3px;
    103   padding: 0 10px 500px 10px;
    104   display: none;
    105 }
    106 
    107 .active-tab-body {
    108   display: block;
    109 }
    110