Added open variant for appchromebtn

This commit is contained in:
booploops 2022-02-03 18:16:03 -08:00
parent e0cc0b2f7c
commit 82e47edc5c
4 changed files with 31 additions and 1 deletions

View file

@ -172,7 +172,7 @@
</template>
</div>
<div class="app-chrome-item full-height" v-if="chrome.windowControlPosition == 'right'">
<div class="app-chrome-item full-height" id="window-controls-container" v-if="chrome.windowControlPosition == 'right'">
<div class="window-controls">
<div class="minimize" @click="ipcRenderer.send('minimize', true)"></div>
<div class="minmax restore" v-if="chrome.maximized"

View file

@ -104,6 +104,7 @@
<div class="md-option-segment md-option-segment_auto">
<select class="md-select" @change="$root.setTheme($root.cfg.visual.theme)" v-model="$root.cfg.visual.theme">
<option value="default.less">Cider</option>
<option value="dark.less">Dark</option>
<option v-for="theme in themes" :value="theme">{{ theme }}</option>
</select>
</div>