diff options
author | Simon Birnbach <simon@simon-birnbach.de> | 2012-04-15 23:52:36 +0200 |
---|---|---|
committer | Simon Birnbach <simon@simon-birnbach.de> | 2012-04-15 23:52:36 +0200 |
commit | 965a8ba2c60eb04e2f65a4ace215113ac61f7c98 (patch) | |
tree | 38292db21226c43c41ce68eb2ccd638d457e678d /files/css | |
parent | 8e27b725ba2aa26cb9037b44b18ff800649017b1 (diff) | |
download | nextcloud-server-965a8ba2c60eb04e2f65a4ace215113ac61f7c98.tar.gz nextcloud-server-965a8ba2c60eb04e2f65a4ace215113ac61f7c98.zip |
Fixed cancelling of uploads and wrong merge conflict resolution
Diffstat (limited to 'files/css')
-rw-r--r-- | files/css/files.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/css/files.css b/files/css/files.css index 544b323bb29..5dc7983bec4 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -42,9 +42,9 @@ tbody tr { background-color:#fff; height:2.5em; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } tbody tr.selected { background-color:#eee; } tbody a { color:#000; } -span.extention, span.uploading, td.date { color:#999; } -span.extention { opacity:0; -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } -tr:hover span.extention { opacity:1; } +span.extension, span.uploading, td.date { color:#999; } +span.extension { text-transform:lowercase; opacity:0; -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } +tr:hover span.extension { 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:1em; } div.crumb.last { font-weight:bold; } |