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

Side by Side Diff: ui/file_manager/audio_player/elements/repeat_button.css

Issue 2495213002: Make the repeat button accessible by keyboard. (Closed)
Patch Set: Eliminate changes that are not directly related to the issue. 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 | « no previous file | ui/file_manager/audio_player/elements/repeat_button.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 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 :host { 5 :host {
6 border-radius: 2px; 6 border-radius: 2px;
7 cursor: pointer; 7 cursor: pointer;
8 display: inline-block; 8 display: inline-block;
9 height: 32px; 9 height: 32px;
10 outline: none; 10 outline: none;
(...skipping 16 matching lines...) Expand all
27 files-toggle-ripple { 27 files-toggle-ripple {
28 background-position: center; 28 background-position: center;
29 background-repeat: no-repeat; 29 background-repeat: no-repeat;
30 height: 28px; 30 height: 28px;
31 left: 2px; 31 left: 2px;
32 pointer-events: none; 32 pointer-events: none;
33 position: absolute; 33 position: absolute;
34 top: 2px; 34 top: 2px;
35 width: 28px; 35 width: 28px;
36 } 36 }
37
38 :host(.keyboard-focus) {
39 /* We use box-shadow rather than outline to make it rounded. */
40 box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.5);
41 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/audio_player/elements/repeat_button.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698