diff --git a/app/game-frontend/src/views/AuctionView.vue b/app/game-frontend/src/views/AuctionView.vue index c46cbde..bea7221 100644 --- a/app/game-frontend/src/views/AuctionView.vue +++ b/app/game-frontend/src/views/AuctionView.vue @@ -509,11 +509,9 @@ onMounted(() => { } .legacy-auction-page.resource-page { height: 689px; - overflow: hidden; } .legacy-auction-page.unique-page { height: 378px; - overflow: hidden; } .legacy-auction-page.bg0 { background-color: transparent; diff --git a/app/game-frontend/src/views/DiplomacyView.vue b/app/game-frontend/src/views/DiplomacyView.vue index e2c21fe..cb7aee3 100644 --- a/app/game-frontend/src/views/DiplomacyView.vue +++ b/app/game-frontend/src/views/DiplomacyView.vue @@ -648,10 +648,19 @@ onBeforeUnmount(() => { line-height: 1.3; } +/* + * Ref's diplomacy tables are not collapsed and carry an outset-style frame: + * gray on the top and left edges, black on the right and bottom. + */ .legacy-layout-table { width: 1000px; margin: 0 auto; - border-collapse: collapse; + border-collapse: separate; + border-spacing: 0; + border-top: 1px solid gray; + border-left: 1px solid gray; + border-right: 1px solid #000; + border-bottom: 1px solid #000; background-color: transparent; } diff --git a/app/game-frontend/src/views/HallOfFameView.vue b/app/game-frontend/src/views/HallOfFameView.vue index 76578f5..7bbc84c 100644 --- a/app/game-frontend/src/views/HallOfFameView.vue +++ b/app/game-frontend/src/views/HallOfFameView.vue @@ -181,9 +181,9 @@ onMounted(loadOptions);