From 5fe7e71c7d34afbaed99d5bb75525db411bade61 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Mon, 17 Feb 2020 07:49:00 +0100 Subject: [PATCH] Keep 'name or email' field in UpsertUser --- client/src/components/UpsertUser.vue | 2 +- client/src/views/Hall.vue | 2 +- client/src/views/MyGames.vue | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/client/src/components/UpsertUser.vue b/client/src/components/UpsertUser.vue index f5a90443..eb94dedd 100644 --- a/client/src/components/UpsertUser.vue +++ b/client/src/components/UpsertUser.vue @@ -18,7 +18,7 @@ div input#notifyNew(type="checkbox" v-model="st.user.notify") div(v-show="stage=='Login'") fieldset - label(for="nameOrEmail") {{ st.tr["User name or Email"] }} + label(for="nameOrEmail") {{ st.tr["Name or Email"] }} input#nameOrEmail(type="text" v-model="nameOrEmail") .button-group button(@click="onSubmit()") diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 366de187..6f2dfeab 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -816,7 +816,7 @@ button.player-action background-color: #c5fefe !important .tabbtn - background-color: white + background-color: #f9faee #div2, #div3 margin-top: 15px diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 830c5351..863d17fc 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,8 +3,8 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button#liveGames(@click="setDisplay('live',$event)") {{ st.tr["Live games"] }} - button#corrGames(@click="setDisplay('corr',$event)") {{ st.tr["Correspondance games"] }} + button.tabbtn#liveGames(@click="setDisplay('live',$event)") {{ st.tr["Live games"] }} + button.tabbtn#corrGames(@click="setDisplay('corr',$event)") {{ st.tr["Correspondance games"] }} GameList(v-show="display=='live'" :games="liveGames" @show-game="showGame") GameList(v-show="display=='corr'" :games="corrGames" @@ -73,4 +73,7 @@ export default { -- 2.44.0