From 6eeff4cb2a7458cfeb5618e4fd3ecc7954f80cb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Par=C3=B3czai=20Oliv=C3=A9r?= Date: Sat, 18 Dec 2021 20:52:09 +0000 Subject: [PATCH] Move button overrides to the end of the file Fixes #8 --- css/unround.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/css/unround.css b/css/unround.css index 293b9d5..34a23b5 100644 --- a/css/unround.css +++ b/css/unround.css @@ -7,10 +7,6 @@ border-radius: var(--border-radius-pill) !important; } -.icon-history{ - border-radius: 100px !important; /* Still E-mail, reversing the border for this icon as it has an animation that would overlap */ -} - .fc-day-today .fc-daygrid-day-number{ /* For Calendar app */ border-radius: var(--border-radius-pill) !important; } @@ -23,7 +19,7 @@ border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill) !important; } -/* For buttons */ +/* For buttons, needs to be before specific button overrides (like the E-mail icon-history) */ input[type='submit'], input[type='submit'].icon-confirm, input[type='button'], @@ -43,3 +39,6 @@ select { width: 269px !important; /* It's a hardcoded width, following the same hardcoded width from the two factor input. That's just sad :( */ } +.icon-history{ + border-radius: 100px !important; /* Still E-mail, reversing the border for this icon as it has an animation that would overlap */ +}