From 2ed268a732f5c38f8835b8b34f9a29122a33a7b5 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Mon, 6 Jun 2016 14:40:49 -0400 Subject: [PATCH] Fix margin when floated content after top attached label --- src/definitions/elements/label.less | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index cfb0679ea..4335cca4f 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -140,7 +140,8 @@ a.ui.label { } /* Padding on next content after a label */ -.ui.top.attached.label:first-child + :not(.attached) { +.ui.top.attached.label:first-child + :not(.attached), +.ui.top.attached.label + [class*="right floated"] + * { margin-top: @attachedSegmentPadding !important; } .ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { @@ -1254,4 +1255,4 @@ a.ui.basic.label:hover { font-size: @massive; } -.loadUIOverrides(); \ No newline at end of file +.loadUIOverrides();