fomantic-ui
Version:
Fomantic empowers designers and developers by creating a shared vocabulary for UI.
148 lines (126 loc) • 2.86 kB
text/less
/*!
* # Fomantic-UI - Shape
* https://github.com/fomantic/Fomantic-UI/
*
*
* Released under the MIT license
* https://opensource.org/licenses/MIT
*
*/
/*******************************
Theme
*******************************/
@type: "module";
@element: "shape";
@import (multiple) "../../theme.config";
/*******************************
Shape
*******************************/
.ui.shape {
position: relative;
vertical-align: top;
display: @display;
perspective: @perspective;
transition: @transition;
}
.ui.shape .side,
.ui.shape .sides {
transform-style: preserve-3d;
}
.ui.shape .side {
display: none;
opacity: 1;
width: 100%;
margin: @sideMargin ;
backface-visibility: @backfaceVisibility;
}
.ui.shape .side * {
backface-visibility: visible ;
}
/*******************************
Types
*******************************/
& when (@variationShapeCube) {
.ui.cube.shape .side {
min-width: @cubeSize;
height: @cubeSize;
padding: @cubePadding;
background-color: @cubeBackground;
color: @cubeTextColor;
box-shadow: @cubeBoxShadow;
}
.ui.cube.shape .side > .content {
width: 100%;
height: 100%;
display: table;
text-align: @cubeTextAlign;
user-select: text;
}
.ui.cube.shape .side > .content > div {
display: table-cell;
vertical-align: middle;
font-size: @cubeFontSize;
}
}
/*******************************
Variations
*******************************/
& when (@variationShapeText) {
.ui.text.shape.animating .sides {
position: static;
}
.ui.text.shape .side {
white-space: nowrap;
}
.ui.text.shape .side > * {
white-space: normal;
}
}
/*******************************
States
*******************************/
& when (@variationShapeLoading) {
/* --------------
Loading
--------------- */
.ui.loading.shape {
position: absolute;
top: -9999px;
left: -9999px;
}
}
/* --------------
Animating
--------------- */
.ui.shape .animating.side {
position: absolute;
top: 0;
left: 0;
display: block;
z-index: @animatingZIndex;
}
.ui.shape .hidden.side {
opacity: @hiddenSideOpacity;
}
/* --------------
CSS
--------------- */
.ui.shape.animating .sides {
position: absolute;
transition: @transition;
}
.ui.shape.animating .side {
transition: @sideTransition;
}
.ui.shape .animating.side *,
.ui.shape.animating .side * {
transition: none;
}
/* --------------
Active
--------------- */
.ui.shape .active.side {
display: block;
}
// stylelint-disable no-invalid-position-at-import-rule
@import (multiple, optional) "../../overrides.less";