Browse Source

Popup, fix transform origin order

pull/2369/head
jlukic 9 years ago
parent
commit
becbb7ef81
1 changed files with 7 additions and 6 deletions
  1. 13
      src/definitions/modules/popup.less

13
src/definitions/modules/popup.less

@ -1,3 +1,4 @@
/*!
* # Semantic UI - Popup
* http://github.com/semantic-org/semantic-ui/
@ -88,13 +89,13 @@
margin: 0em 0em @popupDistanceAway;
}
.ui.top.left.popup {
transform-origin: bottom left;
transform-origin: left bottom;
}
.ui.top.center.popup {
transform-origin: bottom center;
transform-origin: center bottom;
}
.ui.top.right.popup {
transform-origin: bottom right;
transform-origin: right bottom;
}
/* Extending from Vertical Center */
@ -112,13 +113,13 @@
margin: @popupDistanceAway 0em 0em;
}
.ui.bottom.left.popup {
transform-origin: top left;
transform-origin: left top;
}
.ui.bottom.center.popup {
transform-origin: top center;
transform-origin: center top;
}
.ui.bottom.right.popup {
transform-origin: top right;
transform-origin: right top;
}
/*--------------

Loading…
Cancel
Save