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

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

Issue 637953008: Improve video capture columns in chrome://media-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test for video capture format Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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 912b557332c793eeb4c8d862f668a3f2826fc571..0165c3f40102d1ddb04e090b2cd996c99965aa2c 100644
--- a/content/browser/resources/media/media_internals.css
+++ b/content/browser/resources/media/media_internals.css
@@ -87,6 +87,12 @@ h3 {
#property-wrapper,
#log-wrapper {
display:block;
+ flex-grow: 0.25;
+ align-self: stretch;
+ overflow: auto;
+}
+
+#video-capture-capabilities-wrapper {
flex-grow: 0.5;
align-self: stretch;
overflow: auto;
@@ -117,6 +123,37 @@ h3 {
min-width: 115px;
}
+#video-capture-capabilities-table {
+ margin-bottom:30px;
+}
+
+#video-capture-capabilities-table th,
+#video-capture-capabilities-table td {
+ min-width:120px;
+}
+
+#video-capture-capabilities-table td {
+ padding:5px;
+}
+
#video-capture-capabilities-table tr td {
font-size:13px;
+ text-align:center;
+}
+
+#video-capture-capabilities-table .video-capture-formats-table th,
+#video-capture-capabilities-table .video-capture-formats-table td {
+ text-align:right;
+ min-width:80px;
+}
+
+#video-capture-capabilities-table .video-capture-formats-table th {
+ background:none;
+ color:#666;
+ font-size:13px;
+ font-weight:bold;
+}
+
+#video-capture-capabilities-table .video-capture-formats-table td {
+ padding:2px;
}

Powered by Google App Engine
This is Rietveld 408576698