Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mélanie Chauvel
funkwhale
Commits
0c15a608
Verified
Commit
0c15a608
authored
5 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a minor visual glitch in player controls after switch to fomantic
parent
2abcb089
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
front/src/components/audio/Player.vue
+14
-14
14 additions, 14 deletions
front/src/components/audio/Player.vue
with
14 additions
and
14 deletions
front/src/components/audio/Player.vue
+
14
−
14
View file @
0c15a608
...
...
@@ -78,7 +78,7 @@
class=
"two wide column control"
@
click.prevent.stop=
"previous"
:disabled=
"emptyQueue"
>
<i
:class=
"['ui', 'backward step',
{'disabled': emptyQueue},
'secondary',
'icon']">
</i>
<i
:class=
"['ui', 'backward step',
{'disabled': emptyQueue}, 'icon']">
</i>
</span>
<span
role=
"button"
...
...
@@ -87,7 +87,7 @@
:aria-label=
"labels.play"
@
click.prevent.stop=
"togglePlay"
class=
"two wide column control"
>
<i
:class=
"['ui', 'play',
{'disabled': !currentTrack},
'secondary',
'icon']">
</i>
<i
:class=
"['ui', 'play',
{'disabled': !currentTrack}, 'icon']">
</i>
</span>
<span
role=
"button"
...
...
@@ -96,7 +96,7 @@
:aria-label=
"labels.pause"
@
click.prevent.stop=
"togglePlay"
class=
"two wide column control"
>
<i
:class=
"['ui', 'pause',
{'disabled': !currentTrack},
'secondary',
'icon']">
</i>
<i
:class=
"['ui', 'pause',
{'disabled': !currentTrack}, 'icon']">
</i>
</span>
<span
role=
"button"
...
...
@@ -105,7 +105,7 @@
class=
"two wide column control"
@
click.prevent.stop=
"next"
:disabled=
"!hasNext"
>
<i
:class=
"['ui',
{'disabled': !hasNext}, 'forward step',
'secondary',
'icon']" >
</i>
<i
:class=
"['ui',
{'disabled': !hasNext}, 'forward step', 'icon']" >
</i>
</span>
<div
class=
"wide column control volume-control"
...
...
@@ -118,7 +118,7 @@
:title=
"labels.unmute"
:aria-label=
"labels.unmute"
@
click.prevent.stop=
"unmute"
>
<i
class=
"volume off
secondary
icon"
></i>
<i
class=
"volume off icon"
></i>
</span>
<span
role=
"button"
...
...
@@ -126,7 +126,7 @@
:title=
"labels.mute"
:aria-label=
"labels.mute"
@
click.prevent.stop=
"mute"
>
<i
class=
"volume down
secondary
icon"
></i>
<i
class=
"volume down icon"
></i>
</span>
<span
role=
"button"
...
...
@@ -134,7 +134,7 @@
:title=
"labels.mute"
:aria-label=
"labels.mute"
@
click.prevent.stop=
"mute"
>
<i
class=
"volume up
secondary
icon"
></i>
<i
class=
"volume up icon"
></i>
</span>
<input
type=
"range"
...
...
@@ -152,7 +152,7 @@
:aria-label=
"labels.loopingDisabled"
@
click.prevent.stop=
"$store.commit('player/looping', 1)"
:disabled=
"!currentTrack"
>
<i
:class=
"['ui',
{'disabled': !currentTrack}, 'step', 'repeat',
'secondary',
'icon']">
</i>
<i
:class=
"['ui',
{'disabled': !currentTrack}, 'step', 'repeat', 'icon']">
</i>
</span>
<span
role=
"button"
...
...
@@ -162,7 +162,7 @@
v-if=
"looping === 1"
:disabled=
"!currentTrack"
>
<i
class=
"repeat
secondary
icon"
>
class=
"repeat icon"
>
<span
class=
"ui circular tiny orange label"
>
1
</span>
</i>
</span>
...
...
@@ -174,7 +174,7 @@
:disabled=
"!currentTrack"
@
click.prevent.stop=
"$store.commit('player/looping', 0)"
>
<i
class=
"repeat orange
secondary
icon"
>
class=
"repeat orange icon"
>
</i>
</span>
</div>
...
...
@@ -187,7 +187,7 @@
@
click.prevent.stop=
"shuffle()"
class=
"two wide column control"
>
<div
v-if=
"isShuffling"
class=
"ui inline shuffling inverted tiny active loader"
></div>
<i
v-else
:class=
"['ui', 'random',
'secondary',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
<i
v-else
:class=
"['ui', 'random',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
</span>
<div
class=
"one wide column"
v-if=
"!showVolume"
></div>
<span
...
...
@@ -199,8 +199,8 @@
@
click.prevent.stop=
"clean()"
class=
"two wide column control"
>
<i
class=
"icons"
>
<i
:class=
"['ui', 'trash',
'secondary',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
<i
:class=
"['ui corner
large
inverted', 'list',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
<i
:class=
"['ui', 'trash',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
<i
:class=
"['ui corner inverted', 'list',
{'disabled': queue.tracks.length === 0}, 'icon']" >
</i>
</i>
</span>
</div>
...
...
@@ -820,7 +820,7 @@ export default {
vertical-align
:
middle
;
}
.
se
con
dary
.icon
{
.con
trol
.icon
{
font-size
:
1
.5em
;
}
.progress-area
.actions
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment