From 002752eb12debe5912fbb28d17751392b655d16c Mon Sep 17 00:00:00 2001 From: Todd Bracken Date: Sat, 15 Oct 2016 13:01:44 -0700 Subject: [PATCH] [ref #904] added 4 positions for corner icons --- src/definitions/elements/icon.less | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less index 29290dc24..d3ca190dd 100755 --- a/src/definitions/elements/icon.less +++ b/src/definitions/elements/icon.less @@ -469,6 +469,30 @@ i.icons .corner.icon { font-size: @cornerIconSize; text-shadow: @cornerIconShadow; } +i.icons .top.right.corner.icon { + top: 0; + left: auto; + right: 0; + bottom: auto; +} +i.icons .top.left.corner.icon { + top: 0; + left: 0; + right: auto; + bottom: auto; +} +i.icons .bottom.left.corner.icon { + top: auto; + left: 0; + right: auto; + bottom: 0; +} +i.icons .bottom.right.corner.icon { + top: auto; + left: auto; + right: 0; + bottom: 0; +} i.icons .inverted.corner.icon { text-shadow: @cornerIconInvertedShadow;