aboutsummaryrefslogtreecommitdiff
path: root/semantic/src/definitions/modules/shape.less
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-12-14 23:29:56 -0800
committerFuwn <[email protected]>2020-12-14 23:29:56 -0800
commit002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch)
tree428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/src/definitions/modules/shape.less
parent:star: (diff)
downloadme-rewrite-angular.tar.xz
me-rewrite-angular.zip
Diffstat (limited to 'semantic/src/definitions/modules/shape.less')
-rw-r--r--semantic/src/definitions/modules/shape.less155
1 files changed, 0 insertions, 155 deletions
diff --git a/semantic/src/definitions/modules/shape.less b/semantic/src/definitions/modules/shape.less
deleted file mode 100644
index 4d0b8ab..0000000
--- a/semantic/src/definitions/modules/shape.less
+++ /dev/null
@@ -1,155 +0,0 @@
-/*!
- * # 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();