librenms-librenms/dist/jquery.gridster.css

58 lines
1.3 KiB
CSS
Raw Normal View History

2012-08-18 19:47:26 +02:00
/*! gridster.js - v0.1.0 - 2012-08-18
2012-07-27 13:51:15 +02:00
* http://gridster.net/
2012-07-27 13:29:50 +02:00
* Copyright (c) 2012 ducksboard; Licensed MIT */
2012-07-18 18:31:44 +02:00
.gridster {
2012-07-23 15:15:26 +02:00
position:relative;
2012-07-18 18:31:44 +02:00
}
.gridster > * {
2012-07-23 15:15:26 +02:00
margin: 0 auto;
-webkit-transition: height .4s;
-moz-transition: height .4s;
-o-transition: height .4s;
-ms-transition: height .4s;
transition: height .4s;
2012-07-18 18:31:44 +02:00
}
.gridster .gs_w{
2012-07-23 15:15:26 +02:00
z-index: 2;
position: absolute;
2012-07-18 18:31:44 +02:00
}
2012-07-23 15:15:26 +02:00
.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;
2012-07-18 18:31:44 +02:00
}
.gridster .preview-holder {
z-index: 1;
position: absolute;
2012-07-23 15:15:26 +02:00
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;
2012-07-18 18:31:44 +02:00
}
2012-07-23 15:15:26 +02:00
.gridster .dragging {
z-index: 10!important;
2012-07-23 22:08:09 +02:00
-webkit-transition: all 0s !important;
-moz-transition: all 0s !important;
-o-transition: all 0s !important;
transition: all 0s !important;
2012-07-18 18:31:44 +02:00
}
2012-07-23 15:15:26 +02:00
/* Uncomment this if you set helper : "clone" in draggable options */
/*.gridster .player {
2012-07-23 15:15:26 +02:00
opacity:0;
}*/