Fix icons in audio player.

This commit is contained in:
John Preston 2023-03-15 16:31:36 +04:00
parent 832d426c1c
commit eae2788f73
14 changed files with 7 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 272 B

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 377 B

After

Width:  |  Height:  |  Size: 310 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 555 B

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 388 B

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 614 B

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 976 B

After

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

View File

@ -101,15 +101,15 @@ mediaPlayerTime: LabelSimple(defaultLabelSimple) {
mediaPlayerRepeatButton: IconButton {
width: 30px;
height: 34px;
height: 30px;
icon: icon {
{ "player/player_repeat", mediaPlayerActiveFg }
};
iconPosition: point(3px, 6px);
rippleAreaPosition: point(2px, 5px);
rippleAreaSize: 26px;
rippleAreaPosition: point(2px, 6px);
rippleAreaSize: 24px;
ripple: RippleAnimation(defaultRippleAnimation) {
color: lightButtonBgOver;
}

View File

@ -49,12 +49,12 @@ mediaviewPlayButton: IconButton(mediaviewControlsButton) {
height: 40px;
rippleAreaSize: 40px;
icon: icon {{ "player/player_play", mediaviewPlaybackIconFg }};
iconOver: icon {{ "player/player_play", mediaviewPlaybackIconFgOver }};
icon: icon {{ "player/player_play_big", mediaviewPlaybackIconFg }};
iconOver: icon {{ "player/player_play_big", mediaviewPlaybackIconFgOver }};
iconPosition: point(8px, 8px);
}
mediaviewPauseIcon: icon {{ "player/player_pause", mediaviewPlaybackIconFg }};
mediaviewPauseIconOver: icon {{ "player/player_pause", mediaviewPlaybackIconFgOver }};
mediaviewPauseIcon: icon {{ "player/player_pause_big", mediaviewPlaybackIconFg }};
mediaviewPauseIconOver: icon {{ "player/player_pause_big", mediaviewPlaybackIconFgOver }};
mediaviewButtonsTop: 6px;
mediaviewButtonsRight: 8px;