Fix upload button in filemanager mobile view

This commit is contained in:
Hadi Nategh 2022-10-28 14:04:57 +02:00
parent 166168b5bf
commit bde2b7f86d
2 changed files with 9 additions and 3 deletions

View File

@ -132,12 +132,15 @@
padding: 0; padding: 0;
border: none; border: none;
} }
#filemanager-index_filemanager-index-header_left .et2_file.plus_button .et2_file_span { #filemanager-index_filemanager-index-header_left .et2_file.plus_button .et2_file_span::part(base) {
width: 50px; width: 50px;
height: 50px; height: 50px;
border: none; border: none;
background: none; background: none;
} }
#filemanager-index_filemanager-index-header_left .et2_file.plus_button .et2_file_span::part(prefix) {
display: none;
}
#filemanager-index_filemanager-index-header_left .et2_file.plus_button .et2_file_upload { #filemanager-index_filemanager-index-header_left .et2_file.plus_button .et2_file_upload {
width: 60px; width: 60px;
height: 60px; height: 60px;
@ -157,4 +160,3 @@
display: block; display: block;
} }
} }
/*# sourceMappingURL=app.css.map */

View File

@ -115,12 +115,16 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
border: none; border: none;
.et2_file_span{ .et2_file_span::part(base){
width:50px; width:50px;
height: 50px; height: 50px;
border: none; border: none;
background: none; background: none;
} }
.et2_file_span::part(prefix)
{
display: none;
}
.et2_file_upload { .et2_file_upload {
width: 60px; width: 60px;
height: 60px; height: 60px;