diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:51:44 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:51:48 +0200 |
commit | f62b31515937f2687f7543c5c6286252c5812e6d (patch) | |
tree | e7cd572047a5914313cdea969dea306aee3ad377 /files/css | |
parent | 9ba303a95f22e881a2f2cc8657645560ca646d05 (diff) | |
download | nextcloud-server-f62b31515937f2687f7543c5c6286252c5812e6d.tar.gz nextcloud-server-f62b31515937f2687f7543c5c6286252c5812e6d.zip |
file hovering now very fancy, CSS fade for row and extension
Diffstat (limited to 'files/css')
-rw-r--r-- | files/css/files.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/files/css/files.css b/files/css/files.css index 7901c3c6a0e..262feb3c7f0 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -26,10 +26,20 @@ /* FILE TABLE */ span#emptyfolder { position:absolute; margin:10em 0 0 10em; font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } table { position:relative; top:37px; width:100%; } +table tr { -webkit-transition:background-color 100ms ease-in 100ms; +-moz-transition:background-color 100ms ease-in 100ms; +-o-transition:background-color 100ms ease-in 100ms; +transition:background-color 100ms ease-in 100ms; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; height:1em; } tbody tr.selected { background-color:#eee; } tbody a { color:#000; } span.extention, td.date { color:#999; } +span.extention { opacity:0; +-webkit-transition:opacity 100ms ease-in 100ms; +-moz-transition:opacity 100ms ease-in 100ms; +-o-transition:opacity 100ms ease-in 100ms; +transition:opacity 100ms ease-in 100ms; } +tr:hover span.extention { opacity:1; } div.crumb { float:left; display:block; background:no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } div.crumb:first-child { padding-left:1.5em; } div.crumb:last-child { font-weight:bold; } |