File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
shared/components/Toolbar Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ class Toolbar extends React.Component {
10
10
render ( ) {
11
11
let playButtonClass = classNames ( {
12
12
"toolbar__play-button" : true ,
13
- "playing " : this . props . isPlaying
13
+ "toolbar__play-button--selected " : this . props . isPlaying
14
14
} ) ;
15
15
let stopButtonClass = classNames ( {
16
16
"toolbar__stop-button" : true ,
17
- "stopped " : ! this . props . isPlaying
17
+ "toolbar__stop-button--selected " : ! this . props . isPlaying
18
18
} ) ;
19
19
20
20
return (
Original file line number Diff line number Diff line change 1
1
.toolbar__play-button {
2
2
@extend %toolbar-button ;
3
3
margin-right : #{15 / $base-font-size } rem;
4
- & .playing {
4
+ & --selected {
5
5
background-color : $light-button-background-hover-color ;
6
6
& g {
7
7
fill : $light-button-hover-color ;
11
11
12
12
.toolbar__stop-button {
13
13
@extend %toolbar-button ;
14
- & .stopped {
14
+ & --selected {
15
15
background-color : $light-button-background-hover-color ;
16
16
& g {
17
17
fill : $light-button-hover-color ;
You can’t perform that action at this time.
0 commit comments