diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 20:16:44 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 20:16:44 +0200 |
commit | 1eb0faa2642babdd3031fdfa611ee10d1a3ccec5 (patch) | |
tree | 78b311b484839586f78200bb4b537627de89958a /files/css | |
parent | 3892fe55110ce86d742cabcf1422d96115590c5b (diff) | |
download | nextcloud-server-1eb0faa2642babdd3031fdfa611ee10d1a3ccec5.tar.gz nextcloud-server-1eb0faa2642babdd3031fdfa611ee10d1a3ccec5.zip |
make fileactions extendable by plugins
Diffstat (limited to 'files/css')
-rw-r--r-- | files/css/files.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/files/css/files.css b/files/css/files.css index 1cfca68ff55..7c7965ab847 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -4,6 +4,7 @@ { display: none; position: absolute; + right:0px; background-color: #EEE; } @@ -36,7 +37,7 @@ #file_upload_filename { background-image:url(../../img/mimetypes/file.png); } -#file_upload_start {opacity:0;} +#file_upload_start {opacity:0;filter: alpha(opacity = 0);} #file_newfolder_name { background-image:url(../../img/places/folder.png); font-weight: bold; @@ -104,3 +105,10 @@ table td.filename a text-decoration: none; } +.dropArrow{ + height:16px; + width:16px; + display: -moz-inline-box; /* fallback for older firefox versions*/ + display: inline-block; + background-image:url('../../img/drop-arrow.png'); +}
\ No newline at end of file |