aboutsummaryrefslogtreecommitdiff
path: root/semantic/src/definitions/modules/sticky.less
diff options
context:
space:
mode:
Diffstat (limited to 'semantic/src/definitions/modules/sticky.less')
-rw-r--r--semantic/src/definitions/modules/sticky.less74
1 files changed, 0 insertions, 74 deletions
diff --git a/semantic/src/definitions/modules/sticky.less b/semantic/src/definitions/modules/sticky.less
deleted file mode 100644
index 2dabc6d..0000000
--- a/semantic/src/definitions/modules/sticky.less
+++ /dev/null
@@ -1,74 +0,0 @@
-/*!
- * # Fomantic-UI - Sticky
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'module';
-@element : 'sticky';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Sticky
-*******************************/
-
-.ui.sticky {
- position: static;
- transition: @transition;
- z-index: @zIndex;
-}
-
-/*******************************
- States
-*******************************/
-
-/* Bound */
-.ui.sticky.bound {
- position: absolute;
- left: auto;
- right: auto;
-}
-
-/* Fixed */
-.ui.sticky.fixed {
- position: fixed;
- left: auto;
- right: auto;
-}
-
-/* Bound/Fixed Position */
-.ui.sticky.bound.top,
-.ui.sticky.fixed.top {
- top: 0;
- bottom: auto;
-}
-.ui.sticky.bound.bottom,
-.ui.sticky.fixed.bottom {
- top: auto;
- bottom: 0;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-.ui.native.sticky {
- position: -webkit-sticky;
- position: -moz-sticky;
- position: -ms-sticky;
- position: -o-sticky;
- position: sticky;
-}
-
-.loadUIOverrides();