Alignment and typography corrections (#653)

* Update player-settings.vue

Replaced the LATIN SMALL LETTER X with the correct MULTIPLICATION SIGN

* Update ft-slider.js

Added a SPACE character as separator between "value" and "extension".

* Update ft-slider.vue

Changed the "SPACE" and "HYPHEN" characters with the "COLON" character, in order to prevent values to look like they where negative.

* Update ft-search-filters.vue

- Removed CSS class "radioMargin" for "Time" and "Type". This class does not seem to be defined anywhere!
- Substituted CSS class "radioMargin" with "searchRadio" for "Duration", so the div aligns correctly.

* Update ft-slider.js

Removed SPACE character between "currentValue" and "valueExtension"
This commit is contained in:
milotype 2020-10-14 17:12:58 +02:00 committed by GitHub
parent aa7de120b5
commit 7c6fbc057b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -15,21 +15,21 @@
:title="$t('Search Filters.Time.Time')" :title="$t('Search Filters.Time.Time')"
:labels="timeLabels" :labels="timeLabels"
:values="timeValues" :values="timeValues"
class="searchRadio radioMargin" class="searchRadio"
@change="updateTime" @change="updateTime"
/> />
<ft-radio-button <ft-radio-button
:title="$t('Search Filters.Type.Type')" :title="$t('Search Filters.Type.Type')"
:labels="typeLabels" :labels="typeLabels"
:values="typeValues" :values="typeValues"
class="searchRadio radioMargin" class="searchRadio"
@change="updateType" @change="updateType"
/> />
<ft-radio-button <ft-radio-button
:title="$t('Search Filters.Duration.Duration')" :title="$t('Search Filters.Duration.Duration')"
:labels="durationLabels" :labels="durationLabels"
:values="durationValues" :values="durationValues"
class="radioMargin" class="searchRadio"
@change="updateDuration" @change="updateDuration"
/> />
</ft-flex-box> </ft-flex-box>

View File

@ -12,7 +12,7 @@
@change="$emit('change', $event.target.value)" @change="$emit('change', $event.target.value)"
> >
<span> <span>
{{ label }} - {{ label }}:
<span> <span>
{{ displayLabel }} {{ displayLabel }}
</span> </span>

View File

@ -74,7 +74,7 @@
:min-value="0.25" :min-value="0.25"
:max-value="3" :max-value="3"
:step="0.25" :step="0.25"
value-extension="x" value-extension="×"
@change="updateDefaultPlayback" @change="updateDefaultPlayback"
/> />
</ft-flex-box> </ft-flex-box>