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

Unified Diff: chrome/browser/resources/media_router/elements/route_details/route_details.css

Issue 2725503002: [Media Router] Custom Controls 4 - Implement details view WebUI (Closed)
Patch Set: . Created 3 years, 10 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: chrome/browser/resources/media_router/elements/route_details/route_details.css
diff --git a/chrome/browser/resources/media_router/elements/route_details/route_details.css b/chrome/browser/resources/media_router/elements/route_details/route_details.css
index d2207455dee1ded70b2080981416232bbd520b69..2acbe86e52d5ce2d648fea519fd0d203a30cabe9 100644
--- a/chrome/browser/resources/media_router/elements/route_details/route_details.css
+++ b/chrome/browser/resources/media_router/elements/route_details/route_details.css
@@ -2,11 +2,10 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
-
-#custom-controller {
- display: inline-block;
- height: 142px;
- width: 100%;
+#route-controls {
+ background-color: white;
+ font-size: 1.25em;
+ padding: 0 8px;
}
#route-action-buttons {
@@ -26,12 +25,59 @@
text-align: end;
}
-#route-information {
- -webkit-padding-end: var(--dialog-padding-end);
- -webkit-padding-start: 44px;
- background-color: white;
- font-size: 1.2em;
- line-height: 1.5em;
- margin-top: 16px;
+.time-slider {
+ --paper-slider-knob-color: rgb(16, 16, 16);
+ --paper-slider-active-color: rgb(16, 16, 16);
+ --paper-slider-pin-color: rgb(16, 16, 16);
+ width: 100%;
+}
+.volume-slider {
+ --paper-slider-knob-color: rgb(16, 16, 16);
+ --paper-slider-active-color: rgb(33, 150, 243);
+ --paper-slider-pin-color: rgb(16, 16, 16);
+ width: 100%;
+}
+.display-name {
+ margin: 15px 8px 3px 8px;
+ overflow: hidden;
+}
+.description {
+ color: rgb(125, 125, 125);
+ margin: 3px 8px;
+ overflow: hidden;
+}
+.time-controls {
+ display: block;
+ margin-top: 3px;
+ overflow: hidden;
+}
+.media-controls {
+ display: block;
+ margin-top: 13px;
+ overflow: hidden;
+}
+.timeline {
+ font-size: 0.75em;
+}
+.timeline .current-time {
+ left: 20px;
+ position: absolute;
+}
+.timeline .duration {
+ position: absolute;
+ right: 20px;
+}
+.ellipsis {
+ padding: 0 1%;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 90%;
+}
+.button-holder {
+ float: left;
+}
+.volume-holder {
+ display: block;
overflow: hidden;
+ padding: 0.3em 0;
}

Powered by Google App Engine
This is Rietveld 408576698