From 659a9bd22c88177e203207a406cdb6c9f69139d4 Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Fri, 17 Apr 2020 12:34:58 +0200
Subject: [PATCH] Slightly change colors + fix tooltips in MovesList

---
 client/src/components/MoveList.vue | 6 +++---
 client/src/views/Game.vue          | 8 ++++----
 client/src/views/Hall.vue          | 2 +-
 client/src/views/MyGames.vue       | 2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue
index da3c0472..d47a1a4a 100644
--- a/client/src/components/MoveList.vue
+++ b/client/src/components/MoveList.vue
@@ -23,14 +23,14 @@ div
     )
       | {{ st.tr["Rules"] }}
     button(
-      :class="btnTooltipClass"
+      :class="btnTooltipClass()"
       onClick="window.doClick('modalAdjust')"
       :aria-label="st.tr['Resize board']"
     )
       img.inline(src="/images/icons/resize.svg")
     button#analyzeBtn(
       v-if="canAnalyze"
-      :class="btnTooltipClass"
+      :class="btnTooltipClass()"
       @click="$emit('analyze')"
       :aria-label="st.tr['Analyse']"
     )
@@ -38,7 +38,7 @@ div
     #downloadDiv(v-if="canDownload")
       a#download(href="#")
       button(
-        :class="btnTooltipClass"
+        :class="btnTooltipClass()"
         @click="$emit('download')"
         :aria-label="st.tr['Download'] + ' PGN'"
       )
diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue
index f7c6775c..7a9fb5b0 100644
--- a/client/src/views/Game.vue
+++ b/client/src/views/Game.vue
@@ -1772,19 +1772,19 @@ span.yourturn
   background-color: lightyellow
 
 .draw-received, .draw-received:hover
-  background-color: lightgreen
+  background-color: #48C9B0
 
 .draw-threerep, .draw-threerep:hover
-  background-color: #e4d1fc
+  background-color: #D2B4DE
 
 .rematch-sent, .rematch-sent:hover
   background-color: lightyellow
 
 .rematch-received, .rematch-received:hover
-  background-color: lightgreen
+  background-color: #48C9B0
 
 .somethingnew
-  background-color: #b2ebf2
+  background-color: #D2B4DE
 
 .diagram
   margin: 0 auto
diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue
index 328855f1..b3172aca 100644
--- a/client/src/views/Hall.vue
+++ b/client/src/views/Hall.vue
@@ -1367,7 +1367,7 @@ button.player-action
   margin-left: 32px
 
 .somethingnew
-  background-color: #b2ebf2 !important
+  background-color: #D6EAF8 !important
 
 .tabbtn
   background-color: #f9faee
diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue
index 35313f51..eb23bc4e 100644
--- a/client/src/views/MyGames.vue
+++ b/client/src/views/MyGames.vue
@@ -405,7 +405,7 @@ button#loadMoreBtn
   margin: 0 auto
 
 .somethingnew
-  background-color: #b2ebf2 !important
+  background-color: #D6EAF8 !important
 </style>
 
 <!-- Not scoped because acting on GameList -->
-- 
2.44.0