From 0573545d5a4a12cd32917eb199990d401b2ea561 Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Mon, 29 Jan 2018 17:06:16 +0100 Subject: [PATCH] ui: Fix Firefox align issue in dropdowns #10527 (#10662) --- public/sass/components/_dropdown.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/sass/components/_dropdown.scss b/public/sass/components/_dropdown.scss index 1bdda9a0b6e..d91a6d0a5a7 100644 --- a/public/sass/components/_dropdown.scss +++ b/public/sass/components/_dropdown.scss @@ -33,7 +33,7 @@ border-top: 4px solid $text-color-weak; border-right: 4px solid transparent; border-left: 4px solid transparent; - content: ""; + content: ''; } // Place the caret @@ -218,7 +218,7 @@ .caret { border-top: 0; border-bottom: 4px solid $black; - content: ""; + content: ''; } // Different positioning for bottom up menu .dropdown-menu { @@ -255,9 +255,9 @@ } // Caret to indicate there is a submenu -.dropdown-submenu > a::after { +.dropdown-submenu > a::before { display: block; - content: " "; + content: ' '; float: right; width: 0; height: 0; @@ -312,7 +312,7 @@ width: 2rem; display: inline-block; text-align: center; - content: "\f11c"; + content: '\f11c'; } }