Sha256: 07fd15305218a99f8f8ca1f2ab56e080075c55042d7e7eaa3e1e65c5d56b49fb
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
/*! * # Semantic UI 2.2.7 - Sticky * http://github.com/semantic-org/semantic-ui/ * * * Released under the MIT license * http://opensource.org/licenses/MIT * */ /******************************* Sticky *******************************/ .ui.sticky { position: static; -webkit-transition: none; transition: none; z-index: 800; } /******************************* 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: 0px; bottom: auto; } .ui.sticky.bound.bottom, .ui.sticky.fixed.bottom { top: auto; bottom: 0px; } /******************************* Types *******************************/ .ui.native.sticky { position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky; position: -o-sticky; position: sticky; } /******************************* Theme Overrides *******************************/ /******************************* Site Overrides *******************************/
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
semantic-ui-sass-2.2.7.1 | app/assets/stylesheets/semantic-ui/modules/_sticky.scss |
semantic-ui-sass-2.2.7.0 | app/assets/stylesheets/semantic-ui/modules/_sticky.scss |