2011-03-03 01:06:23 +03:00
|
|
|
/* FILE MENU */
|
|
|
|
|
|
|
|
#file_menu
|
|
|
|
{
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2011-06-04 22:16:44 +04:00
|
|
|
right:0px;
|
2011-03-03 01:06:23 +03:00
|
|
|
background-color: #EEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#file_menu ul
|
|
|
|
{
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#file_menu li a
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
padding: 0.5em 5em 0.5em 2em;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_form, #file_newfolder_form {
|
2011-04-19 04:51:59 +04:00
|
|
|
display: inline;
|
2011-07-20 03:18:43 +04:00
|
|
|
margin-left:3em;
|
2011-04-19 04:51:59 +04:00
|
|
|
}
|
|
|
|
|
2011-06-03 04:44:31 +04:00
|
|
|
#fileSelector, #file_upload_submit, #file_newfolder_submit {
|
2011-04-17 00:56:40 +04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_filename, #file_newfolder_name {
|
2011-04-19 12:47:20 +04:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0.5em 0;
|
|
|
|
padding-left: 2em;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_filename {
|
2011-07-06 21:17:28 +04:00
|
|
|
background-image:url(../img/file.png); font-weight:bold;
|
2011-06-03 04:44:31 +04:00
|
|
|
}
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_start {opacity:0;filter: alpha(opacity = 0);}
|
2011-04-19 14:21:55 +04:00
|
|
|
|
|
|
|
#file_newfolder_name {
|
2011-07-06 21:17:28 +04:00
|
|
|
background-image:url(../img/folder.png); font-weight:bold;
|
2011-04-19 14:21:55 +04:00
|
|
|
width: 14em;
|
2011-04-19 01:44:41 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_start, .file_upload_filename{
|
2011-06-03 04:44:31 +04:00
|
|
|
position:absolute;
|
|
|
|
top:0px;
|
|
|
|
left:0px;
|
|
|
|
width:30ex;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_wrapper{
|
2011-06-03 04:44:31 +04:00
|
|
|
position:relative;
|
|
|
|
top:-1.2em;
|
|
|
|
left:-2em;
|
|
|
|
display: -moz-inline-box; /* fallback for older firefox versions*/
|
|
|
|
display: inline-block;
|
|
|
|
width:30ex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#file_newfolder_submit, #file_upload_submit {
|
2011-04-19 14:21:55 +04:00
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:50:42 +04:00
|
|
|
.file_upload_target {
|
2011-04-17 18:19:21 +04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
/* FILE TABLE */
|
|
|
|
|
2011-04-18 14:24:49 +04:00
|
|
|
table {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2011-07-07 04:51:24 +04:00
|
|
|
tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#eee; }
|
2011-07-07 02:19:38 +04:00
|
|
|
tbody a { color:#000; }
|
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
table td.filesize, table td.date
|
|
|
|
{
|
|
|
|
width: 5em;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.date
|
|
|
|
{
|
|
|
|
width: 11em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.selection, table th.selection, table td.fileaction
|
|
|
|
{
|
|
|
|
width: 2em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.filename a
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
background-image: url(../img/file.png);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2011-06-04 22:16:44 +04:00
|
|
|
.dropArrow{
|
|
|
|
height:16px;
|
|
|
|
width:16px;
|
|
|
|
display: -moz-inline-box; /* fallback for older firefox versions*/
|
|
|
|
display: inline-block;
|
2011-06-20 22:29:30 +04:00
|
|
|
background-image:url('../img/drop-arrow.png');
|
2011-07-06 21:17:28 +04:00
|
|
|
}
|
2011-07-07 04:41:22 +04:00
|
|
|
|
|
|
|
span.extention{
|
2011-07-07 04:51:24 +04:00
|
|
|
color:#999;
|
|
|
|
}
|
2011-07-07 23:43:35 +04:00
|
|
|
|
|
|
|
div.crumb{
|
|
|
|
float:left;
|
|
|
|
}
|