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

Side by Side Diff: ui/file_manager/video_player/css/media_controls.css

Issue 2477693004: Change color of ripple effects and tab focus of toolbar buttons in Files (Closed)
Patch Set: Make ripple color of non-toggle buttons customizable. Fix ripple colors in Audio Player. Created 4 years, 1 month 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 | « ui/file_manager/gallery/css/gallery.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 /* Common styles for media buttons. */ 5 /* Common styles for media buttons. */
6 6
7 .media-button { 7 .media-button {
8 background-position: center; 8 background-position: center;
9 background-repeat: no-repeat; 9 background-repeat: no-repeat;
10 flex: none; 10 flex: none;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 .video-controls { 123 .video-controls {
124 background: rgb(250, 250, 250); 124 background: rgb(250, 250, 250);
125 display: flex; 125 display: flex;
126 font-size: 13px; 126 font-size: 13px;
127 height: 32px; 127 height: 32px;
128 padding: 8px; 128 padding: 8px;
129 pointer-events: auto; 129 pointer-events: auto;
130 } 130 }
131 131
132 .video-controls .ripple {
yamaguchi 2016/11/07 09:15:13 Now I am seeing this doesn't work because style fo
133 background-color: black;
134 }
135
132 /* Cast button. */ 136 /* Cast button. */
133 137
134 .media-button.cast, 138 .media-button.cast,
135 .media-button.cast-button { 139 .media-button.cast-button {
136 background-image: -webkit-image-set( 140 background-image: -webkit-image-set(
137 url(../images/media/media_chromecast.png) 1x, 141 url(../images/media/media_chromecast.png) 1x,
138 url(../images/media/2x/media_chromecast.png) 2x); 142 url(../images/media/2x/media_chromecast.png) 2x);
139 display: none; 143 display: none;
140 border-radius: 2px; 144 border-radius: 2px;
141 } 145 }
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 url(../images/media/media_play_onscreen.png) 1x, 277 url(../images/media/media_play_onscreen.png) 1x,
274 url(../images/media/2x/media_play_onscreen.png) 2x); 278 url(../images/media/2x/media_play_onscreen.png) 2x);
275 } 279 }
276 280
277 .playback-state-icon[state='pause'] { 281 .playback-state-icon[state='pause'] {
278 -webkit-animation: blowup 500ms; 282 -webkit-animation: blowup 500ms;
279 background-image: -webkit-image-set( 283 background-image: -webkit-image-set(
280 url(../images/media/media_pause_onscreen.png) 1x, 284 url(../images/media/media_pause_onscreen.png) 1x,
281 url(../images/media/2x/media_pause_onscreen.png) 2x); 285 url(../images/media/2x/media_pause_onscreen.png) 2x);
282 } 286 }
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698