diff options
Diffstat (limited to 'chromium/content/browser/resources/media/webrtc_internals.css')
-rw-r--r-- | chromium/content/browser/resources/media/webrtc_internals.css | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/chromium/content/browser/resources/media/webrtc_internals.css b/chromium/content/browser/resources/media/webrtc_internals.css new file mode 100644 index 00000000000..c0ac402728f --- /dev/null +++ b/chromium/content/browser/resources/media/webrtc_internals.css @@ -0,0 +1,118 @@ +/* Copyright (c) 2013 The Chromium Authors. All rights reserved. + * 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; +} + +.peer-connection-hidden > *:not(h3) { + display:none; +} + +.update-log-container { + float: left; +} + +.ssrc-info-block { + color: #999; + font-size: 0.8em; +} + +.stats-graph-container { + clear: both; + margin: 0.5em 0 0.5em 0; +} + +.stats-graph-container-heading { + font-size: 0.8em; + font-weight: bold; +} + +.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; +} + +body { + font-family: 'Lucida Grande', sans-serif; + padding: 20px; +} + +details { + min-width: 30em; +} + +h3 + div { + font-size: 0.8em; + margin: 0 0 1.2em 0; +} + +h2 { + border-bottom: 1px solid #eee; + color: #666; + font-size: 1.1em; + margin: 0 0 1.6em 0; + padding: 0 0 0.7em 0; +} + +h3 { + color: #555; + cursor: pointer; + font-size: 0.9em; + margin: 2em 0 0.5em 0; + text-decoration: underline; +} + +li { + clear: both; + list-style-type: none; + margin: none; + padding: none; +} + +table { + border: none; + margin: 0 1em 1em 0; +} + +td { + border: none; + font-size: 0.8em; + padding: 0 1em 0.5em 0; +} + +td:first-child { + padding-top: 0.3em; +} + +table > tr { + vertical-align: top; +} + +th { + border: none; + font-size: 0.8em; + padding: 0 0 0.5em 0; +} + +ul { + margin: none; + padding: none; + -webkit-padding-start: 0px; +} |