commit
00c01d5bf4
@ -1 +1,207 @@
|
|||||||
html,body{overflow:hidden}body,form,th,td{margin:0;padding:0}a{cursor:pointer}*{font-family:Tahoma,Verdana,Arial,sans-serif;font-size:11px}table{border-collapse:collapse}#left{float:left;display:block;width:25%}#right{float:left;display:block;width:75%}#settings{display:none;padding:0;float:left;width:100%}#settings>div{float:left}#folders{padding:5px;overflow:auto}#toolbar{padding:5px}#files{padding:5px;overflow:auto}#status{padding:5px;float:left;overflow:hidden}#fileinfo{float:left}#clipboard div{width:16px;height:16px}.folders{margin-left:16px}div.file{overflow-x:hidden;float:left;text-align:center;cursor:default;white-space:nowrap}div.file .thumb{background:no-repeat center center}#files table{width:100%}tr.file{cursor:default}tr.file>td{white-space:nowrap}tr.file>td.name{background-repeat:no-repeat;background-position:left center;padding-left:20px;width:100%}tr.file>td.time,tr.file>td.size{text-align:right}#toolbar{cursor:default;white-space:nowrap}#toolbar a{padding-left:20px;text-decoration:none;background:no-repeat left center}#toolbar a:hover,a[href="#upload"].uploadHover{color:#000}#upload{position:absolute;overflow:hidden;opacity:0;filter:alpha(opacity=0)}#upload input,#upload input::-webkit-file-upload-button{cursor:pointer}span.brace{padding-left:11px;cursor:default}span.brace.opened,span.brace.closed{cursor:pointer}#menu,#clipboard{position:absolute;display:none;z-index:101;cursor:default}#menu .box,#alert{max-width:350px}#clipboard{z-index:99}#loading{display:none;float:right}.menu{background:#888;white-space:nowrap}.menu a{display:block}.menu .list{max-height:0;overflow-y:auto;overflow-x:hidden;white-space:nowrap}#uploadResponse,.file .access,.file .hasThumb{display:none}#resizer{position:absolute;z-index:98;top:0;background:#000;opacity:0;filter:alpha(opacity=0)}body.mobile{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none}body.firefox #files>div{overflow:auto;margin-bottom:5px}
|
html, body {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
body, form, th, td {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
#left {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#right {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings {
|
||||||
|
display: none;
|
||||||
|
padding: 0;
|
||||||
|
float: left;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings > div {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#folders {
|
||||||
|
padding: 5px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toolbar {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#files {
|
||||||
|
padding: 5px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#status {
|
||||||
|
padding: 5px;
|
||||||
|
float: left;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fileinfo {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clipboard div {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folders {
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.file {
|
||||||
|
overflow-x: hidden;
|
||||||
|
float: left;
|
||||||
|
text-align: center;
|
||||||
|
cursor: default;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.file .thumb {
|
||||||
|
background: no-repeat center center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#files table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.file {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.file > td {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.file > td.name {
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: left center;
|
||||||
|
padding-left: 20px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.file > td.time,
|
||||||
|
tr.file > td.size {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toolbar {
|
||||||
|
cursor: default;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toolbar a {
|
||||||
|
padding-left: 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
background: no-repeat left center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toolbar a:hover, a[href="#upload"].uploadHover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload {
|
||||||
|
position: absolute;
|
||||||
|
overflow: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
filter: alpha(opacity=0);
|
||||||
|
}
|
||||||
|
#upload input, #upload input::-webkit-file-upload-button {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.brace {
|
||||||
|
padding-left: 11px;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.brace.opened, span.brace.closed {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu, #clipboard {
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
z-index: 101;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu .box, #alert {
|
||||||
|
max-width: 350px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clipboard {
|
||||||
|
z-index: 99;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loading {
|
||||||
|
display: none;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
background: #888;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu a {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .list {
|
||||||
|
max-height: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#uploadResponse,
|
||||||
|
.file .access,
|
||||||
|
.file .hasThumb {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#resizer {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 98;
|
||||||
|
top: 0;
|
||||||
|
background: #000;
|
||||||
|
opacity: 0;
|
||||||
|
filter: alpha(opacity=0);
|
||||||
|
}body.mobile {
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.firefox #files > div {
|
||||||
|
overflow: auto;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
new Image().src="themes/default/img/loading.gif";
|
new Image().src = 'themes/default/img/loading.gif'; // preload animated gif
|
||||||
|
Loading…
Reference in New Issue