Skip to content
Snippets Groups Projects

Fixes selects having unreadable text on some browsers/OSes.

Merged HJ requested to merge fixSelectOptionStyling into develop
2 files
+ 11
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -3,7 +3,10 @@
<div>{{$t('settings.presets')}}
<label for="style-switcher" class='select'>
<select id="style-switcher" v-model="selected" class="style-switcher">
<option v-for="style in availableStyles" :value="style">{{style[0]}}</option>
<option v-for="style in availableStyles" :value="style" :style="{
backgroundColor: style[1],
color: style[3]
}">{{style[0]}}</option>
</select>
<i class="icon-down-open"/>
</label>
Loading