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')"
:labels="timeLabels"
:values="timeValues"
class="searchRadio radioMargin"
class="searchRadio"
@change="updateTime"
/>
<ft-radio-button
:title="$t('Search Filters.Type.Type')"
:labels="typeLabels"
:values="typeValues"
class="searchRadio radioMargin"
class="searchRadio"
@change="updateType"
/>
<ft-radio-button
:title="$t('Search Filters.Duration.Duration')"
:labels="durationLabels"
:values="durationValues"
class="radioMargin"
class="searchRadio"
@change="updateDuration"
/>
</ft-flex-box>

View File

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

View File

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