]> source.dussan.org Git - nextcloud-server.git/commitdiff
Show thumbnail on rename
authorMorris Jobke <hey@morrisjobke.de>
Thu, 15 Nov 2018 11:14:15 +0000 (12:14 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Thu, 15 Nov 2018 11:14:15 +0000 (12:14 +0100)
* does not hide thumbnail when rename is shown
* fixes layout for grid and list view
* fixes #11901

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
apps/files/css/files.scss
apps/files/js/filelist.js

index bc99790f5005a202ad9bdb5fd19487aa369a7168..8ad255a34bf9b0a740d1639be31b1259f8a5a3fa 100644 (file)
 #filestable tbody tr.highlighted .name:focus,
 #filestable tbody tr.selected,
 #filestable tbody tr.searchresult,
+#filestable tbody tr:hover .filename form,
 table tr.mouseOver td {
        transition: background-color 0.3s ease;
        background-color: var(--color-background-dark);
@@ -332,10 +333,14 @@ table td.filename .thumbnail {
 }
 table td.filename input.filename {
        width: 70%;
-       margin-top: 9px;
        margin-left: 48px;
        cursor: text;
 }
+table td.filename form {
+       margin-top: -40px;
+       position: relative;
+       top: -6px;
+}
 
 table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:3px 8px 8px 3px; }
 table td.filename .nametext, .modified, .column-last>span:first-child { float:left; padding:15px 0; }
@@ -908,6 +913,16 @@ table.dragshadow td.size {
                                                }
                                        }
                                }
+
+                               form {
+                                       padding: 3px 14px;
+                                       border-radius: var(--border-radius);
+
+                                       input.filename {
+                                               width: 100%;
+                                               margin-left: 0;
+                                       }
+                               }
                        }
 
                        /* No space for filesize and date in grid view */
index 648a4f026419ca506dd5c7cb49d16e7384d7201c..83510762c1af031b565fc10f7ffde030b1c4905b 100644 (file)
                        input = $('<input type="text" class="filename"/>').val(oldName);
                        form = $('<form></form>');
                        form.append(input);
-                       td.children('a.name').hide();
+                       td.children('a.name').children(':not(.thumbnail-wrapper)').hide();
                        td.append(form);
                        input.focus();
                        //preselect input
                                input.tooltip('hide');
                                tr.data('renaming',false);
                                form.remove();
-                               td.children('a.name').show();
+                               td.children('a.name').children(':not(.thumbnail-wrapper)').show();
                        }
 
                        function updateInList(fileInfo) {
                                                        basename = newName.substr(0, newName.lastIndexOf('.'));
                                                }
                                                td.find('a.name span.nametext').text(basename);
-                                               td.children('a.name').show();
+                                               td.children('a.name').children(':not(.thumbnail-wrapper)').show();
 
                                                var path = tr.attr('data-path') || self.getCurrentDirectory();
                                                self.filesClient.move(OC.joinPaths(path, oldName), OC.joinPaths(path, newName))