From 927bdebd650b6dcc02af40f3871027086cd2fab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 1 Nov 2018 21:00:22 +0100 Subject: [PATCH 1/2] Revert "make .button inline-block" This reverts commit 87c3f79399f4b3e71fa1d0ff6d774c9c9f6ddc18. --- core/css/inputs.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 7d30f0386c..2611e1bb2f 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -163,7 +163,6 @@ input[type='reset'] { padding: 6px 12px; width: auto; min-height: 34px; - display: inline-block; cursor: pointer; box-sizing: border-box; background-color: var(--color-background-dark); From 9387294993140c27502e1f9613154831637db61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 1 Nov 2018 21:00:44 +0100 Subject: [PATCH 2/2] Revert "Fix .hidden class specificity, should not be overridable, ref #12138" This reverts commit 25e70e1eb798d9292b4d5864d89c6c424ff0218c. --- core/css/global.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/global.scss b/core/css/global.scss index 06dc3688a2..9511d4324f 100644 --- a/core/css/global.scss +++ b/core/css/global.scss @@ -25,12 +25,12 @@ } .hidden { - display: none !important; /* Hiding should take precedence */ + display: none; } .hidden-visually { position: absolute; - left: -10000px; + left:-10000px; top: auto; width: 1px; height: 1px; @@ -47,4 +47,4 @@ .inlineblock { display: inline-block; -} +} \ No newline at end of file