X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=7a9fb5b0e97dfea075764855abe8c210cd3076b7;hb=659a9bd22c88177e203207a406cdb6c9f69139d4;hp=e0eb1be0ce54a5c9cfd554a273ae161126409de5;hpb=751d7ca49079f479d41ee201e9cfbeee35664c41;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index e0eb1be0..7a9fb5b0 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -7,7 +7,7 @@ main ) .card label.modal-close(for="modalRules") - h4#variantNameInGame(@click="gotoRules") {{ game.vname }} + a#variantNameInGame(:href="'/#/variants/'+game.vname") {{ game.vname }} div(v-html="rulesContent") input#modalScore.modal(type="checkbox") div#scoreDiv( @@ -252,6 +252,9 @@ export default { }, // NOTE: some redundant code with Hall.vue (mostly related to people array) created: function() { + if (this.$route.query["focus"] === "false") + // Focus explicitely set to false from Hall (live game) + this.focus = false; this.atCreation(); }, mounted: function() { @@ -310,9 +313,6 @@ export default { ) ); }, - gotoRules: function() { - this.$router.push("/variants/" + this.game.vname); - }, participateInChat: function(p) { return Object.keys(p.tmpIds).some(x => p.tmpIds[x].focus) && !!p.name; }, @@ -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: #c5fefe + background-color: #D2B4DE .diagram margin: 0 auto @@ -1801,11 +1801,13 @@ button.acceptBtn button.refuseBtn background-color: red -h4#variantNameInGame - cursor: pointer +a#variantNameInGame + color: var(--card-fore-color) text-align: center - text-decoration: underline font-weight: bold + font-size: calc(1rem * var(--heading-ratio)) + line-height: 1.2 + margin: calc(1.5 * var(--universal-margin))