diff options
| author | Fuwn <[email protected]> | 2020-12-14 23:21:39 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-12-14 23:21:39 -0800 |
| commit | 823344c19094680e80e2b56449a243e183db8b06 (patch) | |
| tree | 92277700547ea671331828caa258ace7aaaa46d5 /semantic/src/definitions/modules/shape.less | |
| parent | repo: angular (diff) | |
| download | me-823344c19094680e80e2b56449a243e183db8b06.tar.xz me-823344c19094680e80e2b56449a243e183db8b06.zip | |
:star:
Diffstat (limited to 'semantic/src/definitions/modules/shape.less')
| -rw-r--r-- | semantic/src/definitions/modules/shape.less | 155 |
1 files changed, 155 insertions, 0 deletions
diff --git a/semantic/src/definitions/modules/shape.less b/semantic/src/definitions/modules/shape.less new file mode 100644 index 0000000..4d0b8ab --- /dev/null +++ b/semantic/src/definitions/modules/shape.less @@ -0,0 +1,155 @@ +/*! + * # Fomantic-UI - Shape + * http://github.com/fomantic/Fomantic-UI/ + * + * + * Released under the MIT license + * http://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 !important; + backface-visibility: @backfaceVisibility; +} + +.ui.shape .side * { + backface-visibility: visible !important; +} + +/******************************* + 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; +} + +.loadUIOverrides(); |