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

Side by Side Diff: Source/core/css/mediaControls.css

Issue 291163004: Implement media cast buttons (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/core/css/CSSValueKeywords.in ('k') | Source/core/css/mediaControlsAndroid.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. 3 * Copyright (C) 2009 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 width: 30px; 270 width: 30px;
271 height: 30px; 271 height: 30px;
272 line-height: 30px; 272 line-height: 30px;
273 margin-left: -5px; 273 margin-left: -5px;
274 margin-right: 9px; 274 margin-right: 9px;
275 padding: 0; 275 padding: 0;
276 background-color: initial; 276 background-color: initial;
277 color: inherit; 277 color: inherit;
278 } 278 }
279 279
280 audio::-webkit-media-controls-cast-off-button, video::-webkit-media-controls-cas t-off-button {
281 -webkit-appearance: media-enter-cast-off-button;
Peter Beverloo 2014/05/20 11:24:47 You're using the |media-enter-cast-off-button| key
282 display: flex;
283 flex: none;
284 border: none;
285 box-sizing: border-box;
286 width: 30px;
287 height: 30px;
288 line-height: 30px;
289 margin-left: -5px;
290 margin-right: 9px;
291 padding: 0;
292 background-color: initial;
293 color: inherit;
294 }
295
296 audio::-webkit-media-controls-cast-on-button, video::-webkit-media-controls-cast -on-button {
297 -webkit-appearance: media-enter-cast-on-button;
298 display: flex;
299 flex: none;
300 border: none;
301 box-sizing: border-box;
302 width: 30px;
303 height: 30px;
304 line-height: 30px;
305 margin-left: -5px;
306 margin-right: 9px;
307 padding: 0;
308 background-color: initial;
309 color: inherit;
310 }
311
280 audio::-webkit-media-controls-toggle-closed-captions-button { 312 audio::-webkit-media-controls-toggle-closed-captions-button {
281 display: none; 313 display: none;
282 } 314 }
283 315
284 video::-webkit-media-controls-toggle-closed-captions-button { 316 video::-webkit-media-controls-toggle-closed-captions-button {
285 -webkit-appearance: media-toggle-closed-captions-button; 317 -webkit-appearance: media-toggle-closed-captions-button;
286 display: flex; 318 display: flex;
287 flex: none; 319 flex: none;
288 border: none; 320 border: none;
289 box-sizing: border-box; 321 box-sizing: border-box;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 font-weight: bold; 410 font-weight: bold;
379 } 411 }
380 412
381 video::-webkit-media-text-track-container u { 413 video::-webkit-media-text-track-container u {
382 text-decoration: underline; 414 text-decoration: underline;
383 } 415 }
384 416
385 video::-webkit-media-text-track-container i { 417 video::-webkit-media-text-track-container i {
386 font-style: italic; 418 font-style: italic;
387 } 419 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSValueKeywords.in ('k') | Source/core/css/mediaControlsAndroid.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698