Ready for 7.10.29 development.

This commit is contained in:
Colin Kuskie 2013-03-20 21:38:23 -07:00
commit c806f99b7b
4236 changed files with 1217679 additions and 0 deletions

View file

@ -0,0 +1,96 @@
div.dragable:hover
{
border: 1px dashed #aaaaaa;
}
.dragable
{
position: relative;
/*width:100%;*/
border: 1px solid #fff;
}
div.dragTrigger
{
position: relative;
top:0px;
left:0px;
cursor: move;
width:100%;
font-size:10pt;
font-weight:bold;
font-face:verdana;
color:white;
height:22px;
}
div.dragging
{
overflow-x:visible;
position: relative;
width: auto;
filter:alpha(opacity=60);
opacity:.60;
cursor: pointer; cursor: hand;
z-index: 2000;
/* border: 1px dotted #cccccc; */
}
div.dragging div.content
{
opacity:.60;
filter: alpha(opacity=60);
}
.draggedOverTop{
position: relative;
border: 1px dotted white;
margin-top: -1px;
border-top: 50px #dddddd solid;
}
.draggedOverBottom {
position: relative;
border: 1px dotted white;
margin-bottom: -1px;
border-bottom: 50px #dddddd solid;
}
.hidden
{
display: none;
}
.blank
{
position: relative;
opacity:0.5;
-moz-opacity:0.5;
filter: alpha(opacity=50);
cursor: pointer; cursor: hand;
background-color: white;
width:100%;
}
.blankOver
{
position: relative;
cursor: pointer; cursor: hand;
background-color: #dddddd;
}
.empty
{
position: relative;
padding: 0px;
margin: 3px;
width: 100%;
height: 50px;
}
.blankTable {
width:100%;
}
.blankColumn {
width:100%;
}