mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-25 15:07:21 +00:00
Reduce size of input and select elements.
This commit is contained in:
parent
aad2efd303
commit
5a4a47c8dc
@ -41,14 +41,14 @@
|
|||||||
<br />
|
<br />
|
||||||
<b>Default Quality</b>
|
<b>Default Quality</b>
|
||||||
<br />
|
<br />
|
||||||
<select class="uk-select" v-model="defaultQuality" @change="onChange($event)">
|
<select class="uk-select uk-width-auto" v-model="defaultQuality" @change="onChange($event)">
|
||||||
<option value="0">Auto</option>
|
<option value="0">Auto</option>
|
||||||
<option :key="resolution" v-for="resolution in resolutions" :value="resolution">{{ resolution }}p</option>
|
<option :key="resolution" v-for="resolution in resolutions" :value="resolution">{{ resolution }}p</option>
|
||||||
</select>
|
</select>
|
||||||
<br />
|
<br />
|
||||||
<b>Buffering Goal</b>
|
<b>Buffering Goal</b>
|
||||||
<br />
|
<br />
|
||||||
<input class="uk-input" v-model="bufferingGoal" @change="onChange($event)" type="text" />
|
<input class="uk-input uk-width-auto" v-model="bufferingGoal" @change="onChange($event)" type="text" />
|
||||||
<h2>Instances List</h2>
|
<h2>Instances List</h2>
|
||||||
<table class="uk-table">
|
<table class="uk-table">
|
||||||
<thead>
|
<thead>
|
||||||
@ -74,7 +74,8 @@
|
|||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<b>Instance Selection:</b>
|
<b>Instance Selection:</b>
|
||||||
<select class="uk-select" v-model="selectedInstance" @change="onChange($event)">
|
<br />
|
||||||
|
<select class="uk-select uk-width-auto" v-model="selectedInstance" @change="onChange($event)">
|
||||||
<option v-bind:key="instance.name" v-for="instance in instances" v-bind:value="instance.apiurl">
|
<option v-bind:key="instance.name" v-for="instance in instances" v-bind:value="instance.apiurl">
|
||||||
{{ instance.name }}
|
{{ instance.name }}
|
||||||
</option>
|
</option>
|
||||||
|
Loading…
Reference in New Issue
Block a user