mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
58 lines
1.3 KiB
CSS
58 lines
1.3 KiB
CSS
/*! gridster.js - v0.1.0 - 2012-07-23
|
|
* https://github.com/ducksboard/gridster.js
|
|
* Copyright (c) 2012 ducksboard; Licensed MIT, GPL */
|
|
|
|
.gridster {
|
|
position:relative;
|
|
}
|
|
|
|
.gridster > * {
|
|
margin: 0 auto;
|
|
-webkit-transition: height .4s;
|
|
-moz-transition: height .4s;
|
|
-o-transition: height .4s;
|
|
-ms-transition: height .4s;
|
|
transition: height .4s;
|
|
}
|
|
|
|
.gridster .gs_w{
|
|
z-index: 2;
|
|
position: absolute;
|
|
}
|
|
|
|
.ready .gs_w:not(.preview-holder) {
|
|
-webkit-transition: opacity .3s, left .3s, top .3s;
|
|
-moz-transition: opacity .3s, left .3s, top .3s;
|
|
-o-transition: opacity .3s, left .3s, top .3s;
|
|
transition: opacity .3s, left .3s, top .3s;
|
|
}
|
|
|
|
.gridster .preview-holder {
|
|
z-index: 1;
|
|
position: absolute;
|
|
background-color: #fff;
|
|
border-color: #fff;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.gridster .player-revert {
|
|
z-index: 10!important;
|
|
-webkit-transition: left .3s, top .3s!important;
|
|
-moz-transition: left .3s, top .3s!important;
|
|
-o-transition: left .3s, top .3s!important;
|
|
transition: left .3s, top .3s!important;
|
|
}
|
|
|
|
.gridster .dragging {
|
|
z-index: 10!important;
|
|
-webkit-transition: none!important;
|
|
-moz-transition: none!important;
|
|
-o-transition: none!important;
|
|
transition: none!important;
|
|
}
|
|
|
|
/* Uncomment this if you set helper : "clone" in draggable options */
|
|
/*.gridster .player {
|
|
opacity:0;
|
|
}*/
|