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

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

Issue 23769009: Removes the --enable-new-media-internals flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed unused files from old-media-internals Created 7 years, 3 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
(Empty)
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 html,
6 body,
7 #container {
8 margin: 0;
9 padding: 0;
10 width: 100%;
11 height: 100%;
12
13 font-family: 'Lucida Grande', sans-serif;
14 }
15
16 table {
17 border-collapse: collapse;
18 }
19 td {
20 border: 1px solid black;
21 word-wrap: break-word;
22 max-width: 200px;
23 }
24 thead {
25 color: rgb(50,50,50);
26 font-size: 1.1em;
27 }
28
29 h1,
30 h2,
31 h3 {
32 color: rgb(50,50,50);
33 }
34
35 #container {
36 display: flex;
37 flex-direction: row;
38 flex-wrap: wrap;
39 justify-content: space-between;
40 align-items: flex-start;
41 align-content: stretch;
42 }
43
44 #container > * {
45 padding: 0;
46 padding-left: 25px;
47 margin: 0;
48 }
49
50 #list-wrapper {
51 display: flex;
52 flex-direction: column;
53 justify-content: space-between;
54 align-items: flex-start;
55 align-content: stretch;
56 }
57
58 #player-list-wrapper,
59 #audio-stream-list-wrapper {
60 flex-grow: 1;
61 align-self: stretch;
62 min-width: 200px;
63 max-width: 200px;
64 overflow: auto;
65 }
66
67 #player-list-wrapper ul,
68 #player-list-wrapper li,
69 #audio-stream-list-wrapper ul,
70 #audio-stream-list-wrapper li {
71 margin: 0;
72 padding: 0;
73 list-style-type: none;
74 }
75 #list-wrapper button {
76 margin: 0;
77 padding: 0;
78 width: 170px;
79 }
80
81 #property-wrapper,
82 #log-wrapper {
83 display:block;
84 flex-grow: 0.5;
85 align-self: stretch;
86 overflow: auto;
87 }
88
89 #log-wrapper > thead {
90 position: fixed;
91 }
92
93 #graphs li {
94 list-style-type: none;
95 }
OLDNEW
« no previous file with comments | « content/browser/resources/media/new/manager.js ('k') | content/browser/resources/media/new/media_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698