From 62dcda8f49926b971f1702c9b058d0e10fa6295d Mon Sep 17 00:00:00 2001 From: Marco 'Lubber' Wienkoop Date: Fri, 16 Oct 2020 23:08:03 +0200 Subject: [PATCH] feat(header): icon content was not aligned The specificity has changed for icons by #1593 . This had an impact when using an aligned icon header to not correctly be aligned anymore because of the wrong display setting. This PR adjusts the specificity again --- src/definitions/elements/header.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index 669f31614e..38319ab18a 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -111,7 +111,7 @@ } /* After Icon */ -.ui.header > i.icon + .content { +.ui.header:not(.centered):not(.aligned) > i.icon + .content { padding-left: @iconMargin; display: table-cell; vertical-align: @contentIconAlignment;