Filemanager: Let path in nm header have as much space as it wants

This commit is contained in:
nathan 2023-01-24 10:44:20 -07:00
parent 49d3d84f3a
commit 66a72bfac8
2 changed files with 14 additions and 6 deletions

View File

@ -1324,7 +1324,9 @@ et2-link-list et2-link:hover {
}
div.et2_vfsPath {
position: relative;
position: relative;
flex: 20 1 auto;
}
div.et2_vfsPath ul {
@ -1398,11 +1400,12 @@ li.vfsPath.et2_clickable:not(:first-child):after {
}
.et2_vfsPath input.et2_textbox.et2_vfs {
background-image: url(images/edit.png);
background-repeat: no-repeat;
background-size: 16px;
background-position: center;
background-position-x: 98%;
background-image: url(images/edit.png);
background-repeat: no-repeat;
background-size: 16px;
background-position: center;
background-position-x: 98%;
width: calc(100% - 1ex);
}
div.et2_vfsPath li:hover {

View File

@ -34,6 +34,11 @@ input#filemanager-index_path {
text-indent: 100px;
}
/* Let path have more space */
#filemanager-index_filemanager-index-header_row {
flex: 20 1 auto;
}
/**
* Tile view
*/