]> source.dussan.org Git - nextcloud-server.git/commitdiff
increase size of preview to size of row
authorGeorg Ehrke <georg@ownCloud.com>
Wed, 26 Jun 2013 16:19:10 +0000 (18:19 +0200)
committerGeorg Ehrke <georg@ownCloud.com>
Wed, 26 Jun 2013 16:19:13 +0000 (18:19 +0200)
apps/files/css/files.css
lib/helper.php

index be29186cbb745709c78a224d8c130ff4d9608dd0..222cc9c83efc3334495a18da5ab943955f3df94f 100644 (file)
@@ -118,7 +118,7 @@ table td.filename a.name {
 }
 table tr[data-type="dir"] td.filename a.name span.nametext {font-weight:bold; }
 table td.filename input.filename { width:100%; cursor:text; }
-table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:.2em .5em .5em 0; }
+table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:.2em .5em .5em .3em; }
 table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0; }
 .modified {
        position: absolute;
index e8cc81774ddae945062fa5dfcddfa313511d4a1e..0a8962a5312c5b825110338418c23a662e9a3ebb 100644 (file)
@@ -231,7 +231,7 @@ class OC_Helper {
         * Returns the path to the preview of the file.
         */
        public static function previewIcon($path) {
-               return self::linkToRoute( 'core_ajax_preview', array('x' => 32, 'y' => 32, 'file' => $path));
+               return self::linkToRoute( 'core_ajax_preview', array('x' => 44, 'y' => 44, 'file' => $path));
        }
 
        /**