1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/* Copyright 2013 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.peer-connection-dump-root {
font-size: 0.8em;
padding-bottom: 3px;
}
.update-log-container {
float: left;
width: 50em;
overflow: auto;
}
.update-log-failure {
background-color: #be2026;
}
.stats-graph-container {
clear: both;
margin: 0.5em 0 0.5em 0;
}
.stats-graph-sub-container {
float: left;
margin: 0.5em;
}
.stats-graph-sub-container > div {
float: left;
}
.stats-graph-sub-container > div:first-child {
float: none;
}
.stats-table-container {
float: left;
padding: 0 0 0 0;
overflow: auto;
}
.stats-table-container >div:first-child {
font-size: 0.8em;
font-weight: bold;
text-align: center;
padding: 0 0 1em 0;
}
.stats-table-active-connection {
font-weight: bold;
}
body {
font-family: 'Lucida Grande', sans-serif;
}
table {
border: none;
margin: 0 1em 1em 0;
}
td {
border: none;
font-size: 0.8em;
padding: 0 1em 0.5em 0;
min-width: 10em;
word-break: break-all;
}
table > tr {
vertical-align: top;
}
th {
border: none;
font-size: 0.8em;
padding: 0 0 0.5em 0;
}
.tab-head {
background-color: rgb(220, 220, 220);
margin: 10px 2px 0 2px;
text-decoration: underline;
cursor: pointer;
display: inline-block;
overflow: hidden;
width: 20em;
height: 3em;
}
.active-tab-head {
background-color: turquoise;
font-weight: bold;
}
.tab-body {
border: 1px solid turquoise;
border-top-width: 3px;
padding: 0 10px 500px 10px;
display: none;
}
.active-tab-body {
display: block;
}
.user-media-request-div-class {
background-color: lightgray;
margin: 10px 0 10px 0;
}
.user-media-request-div-class > div {
margin: 5px 0 5px 0;
}
.dumps-info {
max-width: 60em;
}
details[open] details summary {
background-color: rgb(220, 220, 220);
}
.peerconnection-deprecations {
font-weight: bold;
}
.candidategrid tr {
text-align: center;
word-break: break-word;
}
.candidategrid-active {
font-weight: bold;
}
.candidategrid-candidatepair {
background-color: #ccc;
}
.candidategrid-candidatepair td:first-of-type {
text-align: left;
}
.candidategrid-candidate {
background-color: #ddd;
}
.candidategrid-candidate td:first-of-type {
text-align: right;
}
|