mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
small fixes
This commit is contained in:
parent
8058b24227
commit
35711d7534
3 changed files with 11 additions and 3 deletions
|
|
@ -92,6 +92,11 @@ a#owncloud-logo span {
|
|||
display:none;
|
||||
}
|
||||
|
||||
td.nametext{
|
||||
position:relative;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.nametext a, .breadcrumb a{color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;}
|
||||
.errortext {color:#CC3333; font-size:9pt; font-weight:bold; text-decoration:none;}
|
||||
.highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;}
|
||||
|
|
@ -223,6 +228,7 @@ div.breadcrumb{
|
|||
div.fileactionlist{
|
||||
z-index:50;
|
||||
position:absolute;
|
||||
top:20px;
|
||||
background-color: #DDDDDD;
|
||||
margin-top:5px;
|
||||
border:1px black solid;
|
||||
|
|
|
|||
|
|
@ -96,6 +96,8 @@ a#owncloud-logo span {
|
|||
|
||||
td.nametext{
|
||||
white-space:nowrap;
|
||||
display:block;
|
||||
position:relative;
|
||||
/*overflow:hidden;*/
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
|
@ -239,7 +241,7 @@ div.breadcrumb{
|
|||
}
|
||||
|
||||
div.fileactionlist{
|
||||
z-index:50;
|
||||
z-index:100;
|
||||
position:absolute;
|
||||
background-color: #DDDDDD;
|
||||
margin-top:5px;
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ class OC_UTIL {
|
|||
}
|
||||
}
|
||||
$prems=substr(decoct(fileperms($CONFIG_DATADIRECTORY_ROOT)),-3);
|
||||
if(substr($CONFIG_DATADIRECTORY_ROOT,2,1)!='0'){
|
||||
if(substr($prems,-1)!='0'){
|
||||
chmodr($CONFIG_DATADIRECTORY_ROOT,0770);
|
||||
clearstatcache();
|
||||
$prems=substr(decoct(fileperms($CONFIG_DATADIRECTORY_ROOT)),-3);
|
||||
|
|
@ -182,7 +182,7 @@ class OC_UTIL {
|
|||
}
|
||||
if($CONFIG_ENABLEBACKUP){
|
||||
$prems=substr(decoct(fileperms($CONFIG_BACKUPDIRECTORY)),-3);
|
||||
if(substr($CONFIG_BACKUPDIRECTORY,2,1)!='0'){
|
||||
if(substr($prems,-1)!='0'){
|
||||
chmodr($CONFIG_BACKUPDIRECTORY,0770);
|
||||
clearstatcache();
|
||||
$prems=substr(decoct(fileperms($CONFIG_BACKUPDIRECTORY)),-3);
|
||||
|
|
|
|||
Loading…
Reference in a new issue