nextcloud/files/css/files.css

121 lines
1.9 KiB
CSS
Raw Normal View History

/* FILE MENU */
#file_menu
{
display: none;
position: absolute;
2011-06-04 22:16:44 +04:00
right:0px;
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;
}
.file_upload_form, #file_newfolder_form {
display: inline;
margin-left:3em;
}
#fileSelector, #file_upload_submit, #file_newfolder_submit {
2011-04-17 00:56:40 +04:00
display: none;
}
.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;
}
.file_upload_filename {
background-image:url(../img/file.png); font-weight:bold;
}
.file_upload_start {opacity:0;filter: alpha(opacity = 0);}
2011-04-19 14:21:55 +04:00
#file_newfolder_name {
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
}
.file_upload_start, .file_upload_filename{
position:absolute;
top:0px;
left:0px;
width:30ex;
font-size: 0.9em;
}
.file_upload_wrapper{
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;
}
.file_upload_target {
2011-04-17 18:19:21 +04:00
display: none;
}
/* 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; }
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-07 04:41:22 +04:00
span.extention{
2011-07-07 04:51:24 +04:00
color:#999;
}
div.crumb{
float:left;
}