44 lines
631 B
CSS
44 lines
631 B
CSS
#treeContainer
|
|
{
|
|
float: left;
|
|
width: 45%;
|
|
}
|
|
#permissionsPanel
|
|
{
|
|
display: none;
|
|
float: right;
|
|
height: auto !important;
|
|
min-height: 300px;
|
|
height: 300px;
|
|
width: 48%;
|
|
border-left: 1px solid #D9D7D7;
|
|
margin-left: 20px;
|
|
padding-left: 20px;
|
|
|
|
position: relative;
|
|
z-index: 100;
|
|
}
|
|
#nodepermissionsList
|
|
{
|
|
list-style: none;
|
|
}
|
|
|
|
#nodepermissionsList li
|
|
{
|
|
background-color:white;
|
|
}
|
|
|
|
/* new clearfix */
|
|
.clearfix:after {
|
|
visibility: hidden;
|
|
display: block;
|
|
font-size: 0;
|
|
content: " ";
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
* html .clearfix { zoom: 1; } /* IE6 */
|
|
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
|
|
|
|
|