/****************************************************************
docking boxes core CSS: YOU MUST NOT CHANGE OR OVERRIDE THESE
*****************************************************************/
.dbx-clone
{
position:absolute;
visibility:hidden;
}
.dbx-clone, .dbx-clone .dbx-handle-cursor
{
cursor:move !important;
}
.dbx-dummy
{
display:block;
width:0;
height:0;
overflow:hidden;
margin:0 !important;
padding:0 !important;
}
.dbx-group, .dbx-box, .dbx-handle
{
position:relative;
display:block;
}
/****************************************************************
DO NOT ADD padding, margins or borders to dbx-box,
to avoid layout discrepancies between it and the clone.
dbx-box is best left as visually unstyled as possible
(instead, have another element inside the box, and style that)
*****************************************************************/
.dbx-box
{
margin:0;
padding:0;
border:none;
}
/****************************************************************
otherwise, do what you like :)
*****************************************************************/
/* group containers */
.dbx-group
{
}
/* boxes */
.dbx-box
{
}
/* + boxes when open */
.dbx-box-open
{
}
/* + boxes when closed */
.dbx-box-closed
{
}
/* + boxes in their focus state */
.dbx-box-focus
{
}
/* + boxes in their hover state */
.dbx-box-hover
{
}
/* + boxes in their active state */
.dbx-box-active
{
}
/* + target boxes */
.dbx-box-target
{
}
/* + boxes that cannot be grabbed */
.dbx-nograb
{
}
/* inner content area */
.dbx-content
{
}
/* */
.dbx-box-open .dbx-content
{
}
/* */
.dbx-box-closed .dbx-content
{
}
/* handles */
.dbx-handle
{
}
/* + handle cursors */
.dbx-handle-cursor
{
}
/* toggle links or buttons */
.dbx-toggle, .dbx-toggle:visited
{
}
/* + open */
.dbx-toggle-open, .dbx-toggle-open:visited
{
}
/* + closed */
.dbx-toggle-closed, .dbx-toggle-closed:visited
{
}
/* + open and highlighted */
.dbx-toggle-hilite-open, .dbx-toggle-hilite-open:visited
{
}
/* + closed and highlighted */
.dbx-toggle-hilite-closed, .dbx-toggle-hilite-closed:visited
{
}
/* keyboard navigation tooltip with CSS2 system colors */
.dbx-tooltip
{
margin:100px 0 0 0;
width:120px;
display:block;
position:absolute;
border:1px solid InfoText;
background:InfoBackground;
color:InfoText;
font:small-caption;
font-weight:normal;
padding:2px 4px 3px 5px;
text-align:left;
}
/* + clone styles */
.dbx-clone
{
}
/* + additional drag clone styles */
.dbx-dragclone
{
}
/* + additional animation clone styles */
.dbx-aniclone
{
}
/* + additional dialog styles */
.dbx-dialog
{
}
/* + dialog that indicates position is not allowed */
.dbx-dialog-no
{
}
/* + dialog that indicates position is allowed */
.dbx-dialog-yes
{
}