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

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

Issue 662243003: Use ::-internal-media-controls* instead of ::-webkit-media-controls* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: introduce PseudoInternalCustomElement 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/mediaControls.css ('k') | Source/core/css/parser/BisonCSSParser.h » ('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) 2012 Google Inc. 2 * Copyright (C) 2012 Google Inc.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 */ 23 */
24 24
25 /* Media controls for Chromium on Android */ 25 /* Media controls for Chromium on Android */
26 26
27 /* WARNING: This css file can only style <audio> and <video> elements */ 27 /* WARNING: This css file can only style <audio> and <video> elements */
28 28
29 audio { 29 audio {
30 height: 35px; 30 height: 35px;
31 } 31 }
32 32
33 audio::-webkit-media-controls-enclosure { 33 audio::-internal-media-controls-enclosure {
34 height: 35px; 34 height: 35px;
35 } 35 }
36 36
37 video::-webkit-media-controls-enclosure { 37 video::-internal-media-controls-enclosure {
38 height: 40px; 38 height: 40px;
39 } 39 }
40 40
41 audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel { 41 audio::-internal-media-controls-panel, video::-internal-media-controls-panel {
42 height: 35px; 42 height: 35px;
43 } 43 }
44 44
45 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-bu tton { 45 audio::-internal-media-controls-mute-button, video::-internal-media-controls-mut e-button {
46 display: none; 46 display: none;
47 } 47 }
48 48
49 audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-bu tton { 49 audio::-internal-media-controls-play-button, video::-internal-media-controls-pla y-button {
50 width: 35px; 50 width: 35px;
51 height: 35px; 51 height: 35px;
52 line-height: 35px; 52 line-height: 35px;
53 } 53 }
54 54
55 audio::-webkit-media-controls-current-time-display, video::-webkit-media-control s-current-time-display, 55 audio::-internal-media-controls-current-time-display, video::-internal-media-con trols-current-time-display,
56 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-contr ols-time-remaining-display { 56 audio::-internal-media-controls-time-remaining-display, video::-internal-media-c ontrols-time-remaining-display {
57 height: 35px; 57 height: 35px;
58 line-height: 35px; 58 line-height: 35px;
59 font-size: 18px; 59 font-size: 18px;
60 } 60 }
61 61
62 audio::-webkit-media-controls-volume-slider, video::-webkit-media-controls-volum e-slider { 62 audio::-internal-media-controls-volume-slider, video::-internal-media-controls-v olume-slider {
63 display: none; 63 display: none;
64 } 64 }
65 65
66 video::-webkit-media-controls-fullscreen-button { 66 video::-internal-media-controls-fullscreen-button {
67 width: 35px; 67 width: 35px;
68 height: 35px; 68 height: 35px;
69 line-height: 35px; 69 line-height: 35px;
70 } 70 }
71 71
72 audio::-webkit-media-controls-fullscreen-button { 72 audio::-internal-media-controls-fullscreen-button {
73 display: none; 73 display: none;
74 } 74 }
75 75
76 audio::-internal-media-controls-cast-button, video::-internal-media-controls-cas t-button { 76 audio::-internal-media-controls-cast-button, video::-internal-media-controls-cas t-button {
77 width: 35px; 77 width: 35px;
78 height: 35px; 78 height: 35px;
79 line-height: 35px; 79 line-height: 35px;
80 } 80 }
81 81
82 video::-webkit-media-controls-toggle-closed-captions-button { 82 video::-internal-media-controls-toggle-closed-captions-button {
83 width: 35px; 83 width: 35px;
84 height: 35px; 84 height: 35px;
85 line-height: 35px; 85 line-height: 35px;
86 } 86 }
OLDNEW
« no previous file with comments | « Source/core/css/mediaControls.css ('k') | Source/core/css/parser/BisonCSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698