From 077fdf3e5ca967e26222e5a1157d05e9053b7a61 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 22 Jul 2015 16:28:38 -0400 Subject: [PATCH] Fixes #2700 circular labeled icon button --- src/definitions/elements/button.less | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 85695fd1b..60cc8c601 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -767,13 +767,14 @@ position: absolute; height: 100%; line-height: 1; + border-radius: 0px; + border-top-left-radius: inherit; + border-bottom-left-radius: inherit; width: @labeledIconWidth; background-color: @labeledIconBackgroundColor; text-align: center; color: @labeledIconColor; - - border-radius: @borderRadius 0px 0px @borderRadius; box-shadow: @labeledIconLeftShadow; } @@ -792,7 +793,9 @@ .ui[class*="right labeled"].icon.button > .icon { left: auto; right: 0em; - border-radius: 0em @borderRadius @borderRadius 0em; + border-radius: 0px; + border-top-right-radius: inherit; + border-bottom-right-radius: inherit; box-shadow: @labeledIconRightShadow; }