Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: content/browser/resources/media/media_internals.css

Issue 18889006: Removed old media-internals page and rewrote it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 @charset "utf-8";
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4 2
5 body { 3 body {
6 font-family: sans-serif; 4 font-family: 'Lucidea Grande', sans-serif;
5 font-size: 0.8em;
6 }
7
8 h1 {
9 border-bottom: 1px solid #eee;
10 color: #666;
11 font-size: 1.5em;
12 margin: 0 0 0.5em 0;
7 } 13 }
8 14
9 h2 { 15 h2 {
10 margin: 15px 0 5px 0; 16 border-bottom: 1px solid #ddd;
17 color: #555;
18 font-size: 1.2em;
11 } 19 }
12 20
13 ul, 21 h3 {
14 p, 22 border-bottom: 1px solid #ddd;
15 canvas { 23 color: #555;
16 margin: 0; 24 font-size: 1.1em;
17 } 25 }
18 26
19 [hidden] { 27 div.collapse>h2 {
20 display: none !important; 28 cursor: pointer;
21 } 29 }
22 30
23 #media-players td, 31 div.collapse.open>h2 {
24 #media-players th { 32 border-bottom: 0px;
25 padding: 0 10px; 33 margin-bottom: 0px;
34 }
35 div.collapse.open>h2:before,
36 div.collapse.open>h2:after {
37 content: "\25B2";
26 } 38 }
27 39
28 .audio-stream[status='created'] { 40 div.collapse.closed>h2:before,
29 color: blue; 41 div.collapse.closed>h2:after {
42 content: "\25BC";
30 } 43 }
31 44
32 .audio-stream[status='closed'] { 45 div.collapse.closed>.collapse-content {
33 text-decoration: line-through; 46 display:none;
34 } 47 }
35 48
36 .audio-stream[status='error'] { 49 div.collapse>.collapse-content {
37 color: red; 50 border: 1px solid #ddd;
38 } 51 padding: 10px;
39
40 #cache-entries ul,
41 #media-players ul,
42 #media-players {
43 list-style-type: none;
44 }
45
46 .cache-entry {
47 margin: 0 0 5px 0;
48 }
49
50 .cache-entry-controls {
51 font-size: smaller;
52 }
53
54 .cache-table {
55 table-layout: fixed;
56 width: 500px;
57 } 52 }
58 53
59 thead { 54 thead {
60 text-align: left; 55 font-size: 1.2em;
56 color: #666;
61 } 57 }
62 58
63 tfoot { 59 table {
64 text-align: right; 60 border-collapse: collapse;
61 border: 1px solid #999;
62 font-size: inherit;
65 } 63 }
66 64
67 .buffered { 65 tbody, tr, td {
68 display: table; 66 font-size: inherit;
69 } 67 }
70 68
71 .buffered > div { 69 table td, table th {
72 display: table-row; 70 border: 1px solid #999;
71 padding: 3px;
73 } 72 }
74 73
75 .buffered > div > div { 74 ul {
76 display: table-cell; 75 list-style-type: none;
77 vertical-align: bottom; 76 padding-left: 0px;
78 } 77 }
79 78
80 .buffered > div > div:first-child { 79
81 font-weight: bold; 80
82 padding-right: 2px; 81 #player-list {
82 float: left;
83 width: 200px;
84
85 display: block;
83 } 86 }
87
88 #player-list>ul, #stream-list>h3 {
89 margin-top: 0px;
90 }
91
92 button {
93 width: 197px;
94 }
95
96 #player-details {
97 margin-left: 220px;
98 padding-left: 10px;
99 border-left: 1px solid #999;
100 }
101
102 #player-details>h3 {
103 margin-top: 0px;
104 }
105
106 #properties>table td, #properties>table tr {
107 border: 0px solid white;
108 padding: 0px;
109 padding-left: 5px;
110 padding-right: 5px;
111 }
112
113 #properties>table>tbody>tr>td:nth-child(odd){
114 color: #666;
115 font-size: 1.2em;
116
117 border-left: 1px solid #999;
118 }
119
120 #properties>table>tbody>tr>td:nth-child(odd):after{
121 content: ":";
122 }
123
124 div#log-wrapper .collapse-content {
125 max-height: 50%;
126 overflow: auto;
127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698