webgui/www/extras/draggable.css
JT Smith f27d8d16be better xhtml compliance
better admin console
some bug fixes
2006-04-20 02:32:50 +00:00

51 lines
860 B
CSS

div.dragable:hover {
border: 1px dashed #aaaaaa;
}
.dragable{
position: relative;
border: 1px dotted #cccccc;
}
.dragTrigger{
position: absolute;
cursor: move;
right: 0px;
top: 0px;
}
.dragging{
position: relative;
opacity:0.6;
-moz-opacity:0.6;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
cursor: pointer;
z-index: 2000;
}
.draggedOverTop{
position: relative;
border: 1px dotted #aaaaaa;
border-top: 8px #aaaaaa dotted;
}
.draggedOverBottom {
position: relative;
border: 1px dotted #aaaaaa;
border-bottom: 8px #aaaaaa dotted;
}
.hidden{
display: none;
}
.blank {
position: relative;
cursor: pointer;
background-color: white;
}
.blankOver {
position: relative;
cursor: pointer;
background-color: black;
}
.empty {
position: relative;
padding: 25px;
width: 50px;
height: 100px;
}