Blame view
sources/apps/files_tree/css/files_tree.css
2.09 KB
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
#fileTable{
width:86%;
float:right;
margin-top:2.8em;
position:relative;
}
#fileTable.multiselect thead{
position:relative;
}
#content #filestable{
width:86%;
float:right;
position:relative;
}
#content #filestable.multiselect{
top:36px;
}
#content #filestable.multiselect thead{
position:relative;
top:0;
}
#files_tree{
position:absolute;
width:14%;
height:100%;
overflow:hidden;
box-shadow:#CCC -10px 30px 30px inset;
}
/** Button **/
#files_tree_refresh{
position:absolute;
width:20px;
height:20px;
top:42px;
right:27px;
background-color:transparent;
cursor:pointer;
display:none;
background-repeat:no-repeat;
background-position: center center;
}
#files_tree:hover #files_tree_refresh{
display:block;
}
/** Switcher **/
#files_tree_switcher{
position:absolute;
width:10px;
height:100%;
top:0;
right:0;
background:#EEE;
cursor:pointer;
border-left:#CCC 1px solid;
}
#files_tree_switcher:hover{
background:#CCC;
}
/** Browser **/
#dir_browser{
margin:38px 10px 0 0px;
padding-left:15px;
font-size:1em;
width:100px;
height:300px;
overflow:auto;
background:none !important;
}
#dir_browser ul{
padding-left:0px;
position:relative;
font-size:0.95em;
line-height:1.1em;
}
#dir_browser ul.collapsed li, #dir_browser ul.expanded ul.collapsed li{
display:none;
}
#dir_browser ul li{
display:block;
padding-left:21px;
margin-left:-14px;
padding-top:-10px;
background-image: url(../img/closed.png);
background-repeat:no-repeat;
background-position: 2px 0px;
min-height:14px;
}
#dir_browser a{
display:block;
margin:7px 0;
}
#dir_browser ul li:first-child{
position:absolute;
top:-18px;
left:-2px;
width:6px;
height:6px;
min-height:6px;
padding:1px;
border:#999 1px solid;
background:#FFF;
display:block !important;
opacity:0;
}
#dir_browser ul li.o{
/*border:#333 1px solid;*/
}
#dir_browser ul li.c{
/*border:#CCC 1px solid;*/
}
.loading{
font-weight:bold;
color:#999;
font-size:0.9em;
}
#dir_browser:hover ul li:first-child{
opacity:1;
}
|