fix: 2nd disk upload
parent
1cc8ace5a6
commit
4b039f974f
|
@ -10,7 +10,7 @@
|
|||
<link rel="icon" href="<?php echo $_SERVER['base_disk_path'];?>favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="<?php echo $_SERVER['base_disk_path'];?>favicon.ico" type="image/x-icon" />
|
||||
<style type="text/css">
|
||||
body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1em;color:#000;background-color:#f7f7f9;background-image:url("<?php echo getConfig('background')?getConfig('background'):($_SERVER['base_disk_path'].'background.jpg'); ?>");background-repeat:no-repeat;background-attachment:fixed}
|
||||
body{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:1em;color:#000;background-color:#f7f7f9;background-image:url("<?php echo getConfig('background')?getConfig('background'):($_SERVER['base_disk_path'].'background.jpg'); ?>");background-repeat:no-repeat;background-size:cover;background-size:100%;background-attachment:fixed}
|
||||
a{color:#24292e;cursor:pointer;text-decoration:none}
|
||||
a:hover{color:#24292e}
|
||||
.login ion-icon{vertical-align:bottom}
|
||||
|
@ -25,7 +25,8 @@
|
|||
.list-header-container .table-header{margin:0;border:0 none;padding:30px 60px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);word-break: break-all;word-wrap: break-word;}
|
||||
.list-body-container{position:relative;left:0;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;background:rgba(245,245,245,0.5)}
|
||||
.more-disk{margin:0;border:0 none;padding:30px 30px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);word-break: break-all;word-wrap: break-word;}
|
||||
.more-disk a{padding:5px}
|
||||
.more-disk a{padding:5px;transition-duration: 0.4s;border-radius: 12px; background-color: white; color: black; border: 2px solid rgba(85,85,85,0.7); }
|
||||
.more-disk a:hover{ background-color: rgba(85,85,85,0.7); color: white; }
|
||||
.list-table{width:100%;padding:0 20px 20px 20px;border-spacing:0}
|
||||
.list-table tr{height:40px}
|
||||
.list-table tr[data-to]:hover{background:rgba(85,85,85,0.7)}
|
||||
|
@ -1133,7 +1134,7 @@
|
|||
var td1=document.createElement('td');
|
||||
td1.setAttribute('class','file');
|
||||
var a1=document.createElement('a');
|
||||
a1.href=html.name.replace(/#/,'%23');
|
||||
a1.href='<?php echo $_SERVER['base_disk_path'];?>'+html.name.replace(/#/,'%23');
|
||||
a1.innerText=html.name;
|
||||
a1.target='_blank';
|
||||
var td2=document.createElement('td');
|
||||
|
|
Loading…
Reference in New Issue