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

Unified Diff: content/browser/resources/media/media_internals.css

Issue 68173025: Introduce new interface for MediaInternals updates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix JavaScript test. Use non-exported base. Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/resources/media/manager.js ('k') | content/browser/resources/media/media_internals.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/resources/media/media_internals.css
diff --git a/content/browser/resources/media/media_internals.css b/content/browser/resources/media/media_internals.css
index 9e6ab7608f2d98ea91a5cb76bfe86feb090b8b10..041527f951c8a26ccf7ef1268d9e15cf7114307a 100644
--- a/content/browser/resources/media/media_internals.css
+++ b/content/browser/resources/media/media_internals.css
@@ -9,21 +9,30 @@ body,
padding: 0;
width: 100%;
height: 100%;
-
- font-family: 'Lucida Grande', sans-serif;
}
table {
- border-collapse: collapse;
+ font-family: sans-serif;
+ -webkit-font-smoothing: antialiased;
+ font-size: 115%;
+ width: auto;
+ overflow: auto;
+ display: block;
+}
+th {
+ background-color: rgb(112, 196, 105);
+ font-weight: normal;
+ color: white;
+ padding: 2px;
+ text-align: center;
+ min-width: 230px;
}
td {
- border: 1px solid black;
+ background-color: rgb(238, 238, 238);
+ padding: 2px;
+ color: rgb(111, 111, 111);
word-wrap: break-word;
- max-width: 200px;
-}
-thead {
- color: rgb(50,50,50);
- font-size: 1.1em;
+ min-width: 230px;
}
h1,
@@ -56,26 +65,22 @@ h3 {
}
#player-list-wrapper,
-#audio-stream-list-wrapper {
+#audio-component-list-wrapper {
flex-grow: 1;
align-self: stretch;
min-width: 200px;
- max-width: 200px;
overflow: auto;
}
#player-list-wrapper ul,
#player-list-wrapper li,
-#audio-stream-list-wrapper ul,
-#audio-stream-list-wrapper li {
- margin: 0;
- padding: 0;
+#audio-component-list-wrapper ul,
+#audio-component-list-wrapper li {
+ padding: 0px;
list-style-type: none;
}
#list-wrapper button {
- margin: 0;
- padding: 0;
- width: 170px;
+ padding: 0px;
}
#property-wrapper,
@@ -103,6 +108,10 @@ h3 {
top: 25%;
}
-.hidden {
+.hiddenClipboard {
display: none;
}
+
+.timestamp {
+ min-width: 115px;
+}
« no previous file with comments | « content/browser/resources/media/manager.js ('k') | content/browser/resources/media/media_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698