diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 10:53:50 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 10:53:50 +0100 |
commit | 5107ccbedaaaec0d00bfd7b650589ee4a0565895 (patch) | |
tree | 58b11f91ac017b6e8c639a60876fc1655922dde8 /apps/files/css | |
parent | e0ada2c24f3db0e93239f45bcbb7a8bb6d831018 (diff) | |
download | nextcloud-server-5107ccbedaaaec0d00bfd7b650589ee4a0565895.tar.gz nextcloud-server-5107ccbedaaaec0d00bfd7b650589ee4a0565895.zip |
move CSS from JS to CSS
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index ccf33c8493b..dbddaf695fb 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -66,8 +66,9 @@ 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#headerSize, table td.filesize { width:3em; padding:0 1em; text-align:right; } -table th#headerDate, table td.date { width:11em; padding:0 .1em 0 1em; text-align:left; } +table th#headerName { width:100%; } +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; } /* Multiselect bar */ table.multiselect { top:63px; } @@ -87,7 +88,10 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } #fileList tr td.filename>input[type="checkbox"]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } #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 { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; position:relative; } +#fileList tr td.filename { + 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; } #uploadsize-message,#delete-confirm { display:none; } .fileactions { position:relative; top:.3em; font-size:.8em; float:right; } |