diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 13:30:57 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 13:30:57 +0100 |
commit | 86d510ba281af02e171c6b157230ae2b440815e4 (patch) | |
tree | c4cc06d9290d463b6e2c0c65552c106a55cc3336 /apps | |
parent | babc0e4ac6d4ee3b33d0d2a2f40f08765c747982 (diff) | |
download | nextcloud-server-86d510ba281af02e171c6b157230ae2b440815e4.tar.gz nextcloud-server-86d510ba281af02e171c6b157230ae2b440815e4.zip |
fix switched values from previous commit
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 18b0a9c9348..99c39f0acdb 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -66,7 +66,7 @@ table th { height:2em; padding:0 .5em; color:#999; } table th .name { float:left; margin-left:.5em; } table th, table td { border-bottom:1px solid #ddd; text-align:left; font-weight:normal; } table td { border-bottom:1px solid #eee; font-style:normal; background-position:1em .5em; background-repeat:no-repeat; } -table th#headerName { width:100%; } +table th#headerName { width:100em; /* not really sure why this works better than 100% … table styling */ } table th#headerSize, table td.filesize { min-width:3em; padding:0 1em; text-align:right; } table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-align:left; } @@ -89,7 +89,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } #fileList tr td.filename>input[type="checkbox"]:hover:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } #fileList tr td.filename>input[type="checkbox"]:checked:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } #fileList tr td.filename { - position:relative; width:100em; /* not really sure why this works better than 100% … table styling */ + position:relative; width:100%; -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } #select_all { float:left; margin:.3em 0.6em 0 .5em; } |