You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
2.4 KiB
152 lines
2.4 KiB
/*
|
|
* # Semantic - Shape
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Copyright 2014 Contributor
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Theme
|
|
*******************************/
|
|
|
|
@type : 'module';
|
|
@element : 'shape';
|
|
|
|
@import '../../semantic.config';
|
|
|
|
|
|
/*******************************
|
|
Shape
|
|
*******************************/
|
|
|
|
.ui.shape {
|
|
position: relative;
|
|
display: @display;
|
|
perspective: @perspective;
|
|
}
|
|
|
|
.ui.shape .sides {
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.ui.shape .side {
|
|
opacity: 1;
|
|
width: 100%;
|
|
|
|
margin: @sideMargin !important;
|
|
|
|
backface-visibility: @backfaceVisibility;
|
|
}
|
|
|
|
.ui.shape .side {
|
|
display: none;
|
|
}
|
|
|
|
.ui.shape .side > * {
|
|
backface-visibility: visible !important;
|
|
}
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
.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
|
|
*******************************/
|
|
|
|
.ui.text.shape.animating .sides {
|
|
position: static;
|
|
}
|
|
.ui.text.shape .side {
|
|
white-space: nowrap;
|
|
}
|
|
.ui.text.shape .side > * {
|
|
white-space: normal;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
/*--------------
|
|
Loading
|
|
---------------*/
|
|
|
|
.ui.loading.shape {
|
|
position: absolute;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
}
|
|
|
|
|
|
/*--------------
|
|
Animating
|
|
---------------*/
|
|
|
|
.ui.shape .animating.side {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
z-index: @animatingZIndex;
|
|
}
|
|
.ui.shape .hidden.side {
|
|
opacity: @hiddenSideOpacity;
|
|
}
|
|
|
|
|
|
/*--------------
|
|
CSS
|
|
---------------*/
|
|
|
|
.ui.shape.animating {
|
|
transition: @transition;
|
|
}
|
|
.ui.shape.animating .sides {
|
|
position: absolute;
|
|
}
|
|
.ui.shape.animating .sides {
|
|
transition: @transition;
|
|
}
|
|
.ui.shape.animating .side {
|
|
transition: @sideTransition;
|
|
}
|
|
|
|
/*--------------
|
|
Active
|
|
---------------*/
|
|
|
|
.ui.shape .active.side {
|
|
display: block;
|
|
}
|
|
|
|
.loadUIOverrides();
|