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

Unified Diff: third_party/WebKit/Source/core/css/mediaControls.css

Issue 2767823002: Media Remoting: Add interstitial elements to media element shadow dom. (Closed)
Patch Set: Created 3 years, 9 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: third_party/WebKit/Source/core/css/mediaControls.css
diff --git a/third_party/WebKit/Source/core/css/mediaControls.css b/third_party/WebKit/Source/core/css/mediaControls.css
index f13cb3dfcc2d344d7de2377fca0536f78c38af38..99c0652ac6d746cdc35349fe1b68d53994ae4c31 100644
--- a/third_party/WebKit/Source/core/css/mediaControls.css
+++ b/third_party/WebKit/Source/core/css/mediaControls.css
@@ -49,6 +49,19 @@ video::-webkit-media-controls {
align-items: center;
}
+audio::-webkit-media-remoting-interstitial,
+video::-webkit-media-remoting-interstitial {
+ width: inherit;
+ height: inherit;
+ position: relative;
+ direction: ltr;
+ display: flex;
+ flex-direction: column;
+ font-family: Segoe, "Helvetica Neue", Roboto, Arial, Helvetica, sans-serif;
+ justify-content: flex-end;
+ align-items: center;
+}
+
audio::-webkit-media-controls-enclosure, video::-webkit-media-controls-enclosure {
width: 100%;
height: 32px;
@@ -145,6 +158,20 @@ video::-webkit-media-controls-overlay-play-button {
padding: 0;
}
+video::-webkit-media-remoting-disable-button {
+ -webkit-appearance: media-remoting-disable-button;
+ display: flex;
+ position: absolute;
+ margin: 0;
+ top: 28%;
+ left: 53%;
+ border-width: 0px;
+ background-color: transparent;
+ width: 48px;
+ height: 48px;
+ padding: 0;
+}
+
video::-internal-media-controls-overlay-cast-button {
-webkit-appearance: -internal-media-overlay-cast-off-button;
display: flex;

Powered by Google App Engine
This is Rietveld 408576698