align progress bar vertically in FF
This commit is contained in:
@@ -225,10 +225,6 @@ textarea {
|
|||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#navigation-bar-dashboard div {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#dashboardControls {
|
#dashboardControls {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -300,7 +300,7 @@ Vue.component('navigation-bar-dashboard', {
|
|||||||
},
|
},
|
||||||
template: `
|
template: `
|
||||||
<div id="navigation-bar-dashboard" v-if="navigationVisible">
|
<div id="navigation-bar-dashboard" v-if="navigationVisible">
|
||||||
<div>
|
<div class="group">
|
||||||
<label for="dashboardSortBy">Sort by:</label>
|
<label for="dashboardSortBy">Sort by:</label>
|
||||||
<select id="dashboardSortBy" name="dashboardSortBy" v-model="dashboard.sortBy" @change="sort">
|
<select id="dashboardSortBy" name="dashboardSortBy" v-model="dashboard.sortBy" @change="sort">
|
||||||
<option value="DEFAULT"></option>
|
<option value="DEFAULT"></option>
|
||||||
@@ -311,7 +311,7 @@ Vue.component('navigation-bar-dashboard', {
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<!--
|
||||||
<div>
|
<div class="group">
|
||||||
<label for="dashboardFilter">Filter by:</label>
|
<label for="dashboardFilter">Filter by:</label>
|
||||||
<select id="dashboardFilter" name="dashboardFilter" v-model="dashboard.filter">
|
<select id="dashboardFilter" name="dashboardFilter" v-model="dashboard.filter">
|
||||||
<option value="NONE">none</option>
|
<option value="NONE">none</option>
|
||||||
@@ -327,7 +327,7 @@ Vue.component('navigation-bar-dashboard', {
|
|||||||
</div>
|
</div>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<div id="dashboardControls" v-if="showProgressBar">
|
<div id="dashboardControls" class="group" v-if="showProgressBar">
|
||||||
<progress
|
<progress
|
||||||
v-bind:max="dashboard.progress.max"
|
v-bind:max="dashboard.progress.max"
|
||||||
v-bind:value="dashboard.progress.value"
|
v-bind:value="dashboard.progress.value"
|
||||||
|
|||||||
Reference in New Issue
Block a user