Removed v-card-contents>
This commit is contained in:
parent
3975046361
commit
6e07a4083d
|
@ -148,30 +148,28 @@
|
|||
<v-dialog v-if="contents" v-model="dialog" style="background: rgba(0,0,0,0.95); box-shadow: none !important" width="500px">
|
||||
<v-card style="overflow: hidden">
|
||||
<v-card-title class="headline">Playback Settings</v-card-title>
|
||||
<v-card-content>
|
||||
<v-checkbox v-if="contents.viewOffset && contents.viewOffset > 0" v-bind:label="'Resume from ' + getDuration(contents.viewOffset) " color="orange lighten-2" class="pa-0 ma-0 ml-3" v-model="resumeFrom"></v-checkbox>
|
||||
<div v-for="(media,index) in contents.Media" :key="media.Part[0].key">
|
||||
<v-layout row wrap class="pa-2">
|
||||
<v-flex xs8>
|
||||
<div class="pl-2">{{ media.videoResolution }}p {{ getDuration(media.duration)}}</div>
|
||||
<div class="pl-4 soft-text" >
|
||||
<div>Video Codec: {{ media.videoCodec }} ({{ media.bitrate }}kbps) </div>
|
||||
<div>
|
||||
Audio Streams: {{ audioStreams(media.Part[0].Stream) }}
|
||||
</div>
|
||||
<div>
|
||||
Subtitles: {{ subtitleStreams(media.Part[0].Stream) }}
|
||||
</div>
|
||||
<v-checkbox v-if="contents.viewOffset && contents.viewOffset > 0" v-bind:label="'Resume from ' + getDuration(contents.viewOffset) " color="orange lighten-2" class="pa-0 ma-0 ml-3" v-model="resumeFrom"></v-checkbox>
|
||||
<div v-for="(media,index) in contents.Media" :key="media.Part[0].key">
|
||||
<v-layout row wrap class="pa-2">
|
||||
<v-flex xs8>
|
||||
<div class="pl-2">{{ media.videoResolution }}p {{ getDuration(media.duration)}}</div>
|
||||
<div class="pl-4 soft-text" >
|
||||
<div>Video Codec: {{ media.videoCodec }} ({{ media.bitrate }}kbps) </div>
|
||||
<div>
|
||||
Audio Streams: {{ audioStreams(media.Part[0].Stream) }}
|
||||
</div>
|
||||
</v-flex>
|
||||
<v-flex xs4>
|
||||
<v-btn class="primary white--text" @click.native.stop="playMedia(contents, index)">
|
||||
Play
|
||||
</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</div>
|
||||
</v-card-content>
|
||||
<div>
|
||||
Subtitles: {{ subtitleStreams(media.Part[0].Stream) }}
|
||||
</div>
|
||||
</div>
|
||||
</v-flex>
|
||||
<v-flex xs4>
|
||||
<v-btn class="primary white--text" @click.native.stop="playMedia(contents, index)">
|
||||
Play
|
||||
</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</div>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue