myems/myems-admin/js/jcui/integralui.treeview.css

156 lines
3.0 KiB
Python

.iui-treeview
{
background-color: white;
border: solid thin gray;
border-radius: 3px;
padding: 3px;
color: black;
cursor: default;
overflow: hidden;
position: relative;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
.iui-treeview div /*Compatibility with Bootstrap */
{
-webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: content-box; /* Firefox, other Gecko */
box-sizing: content-box;
}
.iui-treeview-rtl
{
direction: rtl;
}
.iui-treeview-block, .iui-treeview-block-top, .iui-treeview-block-bottom
{
margin: 0;
overflow: hidden;
padding: 0 1px; /*1px;*/
position: absolute;
left: 2px;
}
.iui-treeview-block
{
top: 1px;
}
.iui-treeview-block-top
{
background: white;
top: 0;
border-bottom: thin solid #dedede;
z-index: 2;
}
.iui-treeview-block-bottom
{
background: white;
bottom: 0;
border-top: thin solid #dedede;
z-index: 1;
}
.iui-treeview-block-rtl
{
direction: rtl;
}
.iui-treeview-block-shift-left
{
/*margin-left: 16px !important;*/
padding-left: 15px;
}
.iui-treeview-block-shift-right
{
margin-right: 16px;
}
.iui-treeview-item-block
{
padding: 0 0 0 15px;
}
.iui-treeview-item-block-rtl
{
padding: 0 15px 0 0;
}
.iui-treeview-item, .iui-treeview-item-fixed
{
display: block;
list-style-type: none;
margin: 1px 0;
padding: 0;
white-space: nowrap;
}
.iui-treeview-item-fixed
{
background: #efefef;
}
.iui-treeview-item-fixed .iui-treeview-item-content:focus {
outline: none !important;
border: thin dotted transparent;
}
.iui-treeview-item-content
{
border-radius: 3px;
margin: 0;
vertical-align: middle;
}
.iui-treeview-expand-box
{
background: url(../../img/tree-icon/empty.png) no-repeat 0 0;
display: inline-block;
position: relative;
width: 16px;
height: 16px;
vertical-align: middle;
z-index: 1;
}
.iui-treeview-expand-box-load
{
background: url(../../img/tree-icon/load.gif) no-repeat 0 0;
}
.iui-treeview-expand-box-open
{
background: url(../../img/tree-icon/expand.png) no-repeat 0 0;
}
.iui-treeview-expand-box-open-disabled
{
background: url(../../img/tree-icon/expand-disabled.png) no-repeat 0 0;
}
.iui-treeview-expand-box-close
{
background: url(../../img/tree-icon/collapse.png) no-repeat 0 0;
}
.iui-treeview-expand-box-close-disabled
{
background: url(../../img/tree-icon/collapse-disabled.png) no-repeat 0 0;
}
.iui-treeview-expand-box-open-rtl
{
background: url(../../img/tree-icon/expand-rtl.png) no-repeat 0 0;
}
.iui-treeview-expand-box-open-rtl-disabled
{
background: url(../../img/tree-icon/expand-rtl-disabled.png) no-repeat 0 0;
}
.iui-treeview-expand-box-close-rtl
{
background: url(../../img/tree-icon/collapse-rtl.png) no-repeat 0 0;
}
.iui-treeview-expand-box-close-rtl-disabled
{
background: url(../../img/tree-icon/collapse-rtl-disabled.png) no-repeat 0 0;
}
.iui-treeview-status-icon
{
position: absolute;
left: 0px;
}
.iui-treeview-line
{
display: block;
position: absolute;
border-left: thin dotted gray;
border-top: thin dotted gray;
z-index:0
}