diff options
author | Robin <robin@Amaya.(none)> | 2010-03-29 21:49:11 +0200 |
---|---|---|
committer | Robin <robin@Amaya.(none)> | 2010-03-29 21:49:11 +0200 |
commit | e658a0025895d5aecc2c067234c5120cc21a63a2 (patch) | |
tree | eb3b7c0f6ec449e3ebb5c73bb511de4e89bb31ff /css | |
parent | 5ac201dc834664989b04da9b28fc44bcd84874da (diff) | |
download | nextcloud-server-e658a0025895d5aecc2c067234c5120cc21a63a2.tar.gz nextcloud-server-e658a0025895d5aecc2c067234c5120cc21a63a2.zip |
show file actions in a dropdown menu
Diffstat (limited to 'css')
-rwxr-xr-x | css/default.php | 66 |
1 files changed, 63 insertions, 3 deletions
diff --git a/css/default.php b/css/default.php index 8d10b89cab9..6ab515cca7a 100755 --- a/css/default.php +++ b/css/default.php @@ -2,7 +2,10 @@ header('Content-Type: text/css'); require_once('../inc/lib_base.php'); ?> -body {background-color: #F9F9F9;} +body { + background-color: #F9F9F9; + margin:0px; +} body.error {background-color: #F0F0F0;} body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size:9.0pt;} @@ -28,7 +31,10 @@ td { } div#nav { - margin-bottom:2em; + width:100%; + background-color: #EEEEEE; + padding:0px; + margin:0px; } a#owncloud-logo { @@ -44,7 +50,7 @@ a#owncloud-logo span { display:none; } -.nametext a {color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;} +.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;} .datetext {color:#333333; font-size:7pt;} @@ -134,4 +140,58 @@ a#owncloud-logo span { padding:0px; border:0px; //do not use display:none here, it breaks iframes in some browsers +} + +div.OCNotification{ + background:#0c285a; + color:white; + border:white solid 1px; + padding:1px; + margin:4px; + min-width:200px; +} +div.OCNotificationHolder{ + right:20px; + bottom:0px; + position:absolute; + color:white; +} + +td img.file_actions{ + cursor:pointer; + height:0px; + width:9px; +} + +td:hover img.file_actions{ + height:auto; +} + +td img.rename, td img.delete{ + height:0px; + width:16px; + cursor:pointer; +} + +td:hover img.rename, tr:hover img.delete{ + height:16px; +} + +div.breadcrumb{ + background-color: #F0F0F0; +} + +div.fileactionlist{ + position:absolute; + background-color: #DDDDDD; + margin-top:5px; + border:1px black solid; +} + +div.fileactionlist td{ + cursor:pointer; +} + +div.fileactionlist td:hover{ + background-color: #CCCCCC; }
\ No newline at end of file |