Fixed transparent progress bar after switch to FUI
This commit is contained in:
parent
3ce2f0d774
commit
d5f3802f37
|
@ -55,7 +55,7 @@
|
|||
:class="['ui', 'small', 'orange', 'inverted', {'indicating': isLoadingAudio}, 'progress']"
|
||||
@click="touchProgress">
|
||||
<div class="buffer bar" :data-percent="bufferProgress" :style="{ 'width': bufferProgress + '%' }"></div>
|
||||
<div class="bar" :data-percent="progress" :style="{ 'width': progress + '%' }"></div>
|
||||
<div class="position bar" :data-percent="progress" :style="{ 'width': progress + '%' }"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui small warning message" v-if="currentTrack && errored">
|
||||
|
@ -826,6 +826,10 @@ export default {
|
|||
.progress-area .actions {
|
||||
text-align: center;
|
||||
}
|
||||
.ui.progress:not([data-percent]):not(.indeterminate)
|
||||
.bar.position:not(.buffer) {
|
||||
background: #ff851b;
|
||||
}
|
||||
.volume-control {
|
||||
position: relative;
|
||||
width: 12.5% !important;
|
||||
|
|
Loading…
Reference in New Issue