diff options
-rw-r--r-- | play.css | 10 | ||||
-rw-r--r-- | play.js | 9 |
2 files changed, 5 insertions, 14 deletions
@@ -1,4 +1,4 @@ -html { background-color: slategray; } +body { background-color: slategray; } header { background-color: silver; } #role_Gray { background-color: #b7b2b0; } #role_Blue { background-color: #95b4ca; } @@ -27,10 +27,6 @@ main { scrollbar-width: auto; } -.action { - cursor: pointer; -} - #tooltip { pointer-events: none; position: fixed; @@ -61,7 +57,6 @@ body.shift #tooltip.focus { display: block; } cursor: pointer; display: flex; justify-content: space-between; - user-select: none; border-bottom: 1px solid black; background-color: #856781; height: 40px; @@ -297,7 +292,6 @@ body.shift #tooltip.focus { display: block; } line-height: 50px; text-align: center; text-shadow: 0 0 8px black; - user-select: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5)); } @@ -668,7 +662,6 @@ body.open .hand.minimize .card { .player_hand_size { position: absolute; - user-select: none; top: 19px; left: -3px; width: 36px; @@ -691,7 +684,6 @@ body.open .hand.minimize .card { .player_dial .prize { position: absolute; - user-select: none; top: 94px; left: 135px; height: 26px; @@ -336,15 +336,15 @@ let ui = { } function scroll_to_map() { - ui.board.scrollIntoView({behavior:'smooth'}) + scroll_into_view(ui.board) } function scroll_to_market() { - ui.market.scrollIntoView({behavior:'smooth'}) + scroll_into_view(ui.market) } function scroll_to_player(p) { - ui.player[p].area.scrollIntoView({behavior:'smooth'}) + scroll_into_view(ui.player[p].area) } let open_toggle = true @@ -365,7 +365,7 @@ function on_focus_card_tip(c) { } function on_click_card_tip(c) { - ui.cards[c].scrollIntoView({behavior:'smooth'}) + scroll_into_view(ui.cards[c]) } function on_focus_card(evt) { @@ -1094,4 +1094,3 @@ function build_ui() { ui.player[top].hand_size.classList.add("hide") } -scroll_with_middle_mouse("main") |