Keep 'name or email' field in UpsertUser
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 17 Feb 2020 06:49:00 +0000 (07:49 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 17 Feb 2020 06:49:00 +0000 (07:49 +0100)
client/src/components/UpsertUser.vue
client/src/views/Hall.vue
client/src/views/MyGames.vue

index f5a9044..eb94ded 100644 (file)
@@ -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()")
index 366de18..6f2dfea 100644 (file)
@@ -816,7 +816,7 @@ button.player-action
   background-color: #c5fefe !important
 
 .tabbtn
-  background-color: white
+  background-color: #f9faee
 
 #div2, #div3
   margin-top: 15px
index 830c535..863d17f 100644 (file)
@@ -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 {
 <style lang="sass" scoped>
 .active
   color: #42a983
+
+.tabbtn
+  background-color: #f9faee
 </style>