Explorar el Código

Minor updates of file selector css

TC pushbot 5 hace 4 años
padre
commit
5033a58fd4
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      web/SystemAO/file_system/file_selector.html

+ 2 - 2
web/SystemAO/file_system/file_selector.html

@@ -343,7 +343,7 @@
                             }
                             var fileSize = folders[i].Displaysize;
                             $("#folderList").append(`<div class="fileObject item" fid="${count}" ondblclick="openFolder(event,this);" onclick="selectThis(this,event);" filepath="${encodeURIComponent(filepath)}" filename="${encodeURIComponent(filename)}" isDir="${isDir}">
-                                <span class="fileInfo" ><i class="${icon} icon" style="margin-right:12px;"></i> ${filename}</span>
+                                <span class="fileInfo"><i class="${icon} icon" style="margin-right:4px;"></i> ${filename}</span>
                             </div>`);
                             count++;
                         }
@@ -362,7 +362,7 @@
                             }
                             var fileSize = files[i].Displaysize;
                             $("#fileList").append(`<div class="fileObject item" fid="${count}"  ondblclick="chooseThisFile(this);"  onclick="selectThis(this,event);" filepath="${encodeURIComponent(filepath)}" filename="${encodeURIComponent(filename)}" isDir="${isDir}">
-                                <span class="fileInfo"><i class="${icon} icon" style="margin-right:12px;"></i> ${filename}</span>
+                                <span class="fileInfo"><i class="${icon} icon" style="margin-right:4px;margin-top: 2px;"></i> ${filename}</span>
                             </div>`);
                             count++;
                         }