From 579d841dfbcd81a979ee02f3a1f3e8b338aa94cc Mon Sep 17 00:00:00 2001 From: Julian Arndt Date: Fri, 24 Nov 2023 11:46:15 +0100 Subject: [PATCH] Remove arrows in bet input fields in mozilla mobile browser --- styles/prosilver/theme/football.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/styles/prosilver/theme/football.css b/styles/prosilver/theme/football.css index aea1ff9..68ef6f8 100644 --- a/styles/prosilver/theme/football.css +++ b/styles/prosilver/theme/football.css @@ -274,3 +274,14 @@ a.pastlink:hover, a.futurelink:hover { .row_group td { background-color: #73d510; color: #FFFFFF !important; } .row_result { background-color: #ADC4A9; } .row_result td { padding: 1px 2px; } + +@media screen and (max-width: 600px){ + input[type="number"] { + -moz-appearance: textfield; + } +} +@media screen and (min-width: 601px){ + input[type="number"] { + min-width: 32px; + } +} \ No newline at end of file