diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/style_switcher/style_switcher.js | 2 | ||||
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/components/style_switcher/style_switcher.js b/src/components/style_switcher/style_switcher.js index 2af77a85..710694d4 100644 --- a/src/components/style_switcher/style_switcher.js +++ b/src/components/style_switcher/style_switcher.js @@ -447,6 +447,8 @@ export default { this.cGreenColorLocal = this.selected[6] this.cBlueColorLocal = this.selected[7] this.cOrangeColorLocal = this.selected[8] + } else if (this.selectedVersion >= 2) { + this.normalizeLocalState(this.selected.theme, 2) } } } diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 658bb288..37709363 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -8,10 +8,10 @@ <option v-for="style in availableStyles" :value="style" :style="{ - backgroundColor: style[1], - color: style[3] + backgroundColor: style[1] || style.theme.colors.bg, + color: style[3] || style.theme.colors.text }"> - {{style[0]}} + {{style[0] || style.name}} </option> </select> <i class="icon-down-open"/> |
