app/assets/stylesheets/semantic-ui/elements/_icon.scss in semantic-ui-sass-2.2.1.1 vs app/assets/stylesheets/semantic-ui/elements/_icon.scss in semantic-ui-sass-2.2.2.0
- old
+ new
@@ -1,7 +1,7 @@
/*!
- * # Semantic UI 2.2.1 - Icon
+ * # Semantic UI 2.2.2 - Icon
* http://github.com/semantic-org/semantic-ui/
*
*
* Released under the MIT license
* http://opensource.org/licenses/MIT
@@ -151,14 +151,16 @@
--------------------*/
i.flipped.icon,
i.horizontally.flipped.icon {
-webkit-transform: scale(-1, 1);
+ -ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
i.vertically.flipped.icon {
-webkit-transform: scale(1, -1);
+ -ms-transform: scale(1, -1);
transform: scale(1, -1);
}
/*-------------------
Rotated
@@ -166,15 +168,17 @@
i.rotated.icon,
i.right.rotated.icon,
i.clockwise.rotated.icon {
-webkit-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
transform: rotate(90deg);
}
i.left.rotated.icon,
i.counterclockwise.rotated.icon {
-webkit-transform: rotate(-90deg);
+ -ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}
/*-------------------
Bordered
@@ -443,20 +447,22 @@
i.icons .icon {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
+ -ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
margin: 0em;
margin: 0;
}
i.icons .icon:first-child {
position: static;
width: auto;
height: auto;
vertical-align: top;
-webkit-transform: none;
+ -ms-transform: none;
transform: none;
margin-right: 0.25rem;
}
/* Corner Icon */
@@ -464,9 +470,10 @@
top: auto;
left: auto;
right: 0;
bottom: 0;
-webkit-transform: none;
+ -ms-transform: none;
transform: none;
font-size: 0.45em;
text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}
i.icons .inverted.corner.icon {