Merge pull request #17676 from nextcloud/backport/17469/stable17
[stable17] fix filename overlapping on mobile
This commit is contained in:
commit
a03f6c36a6
1 changed files with 5 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
|||
/* 938 = table min-width(688) + app-navigation width: 250
|
||||
$breakpoint-mobile +1 = size where app-navigation is hidden +1
|
||||
688 = table min-width */
|
||||
/* 938 = table min-width(688) + app-navigation width: 250\
|
||||
$breakpoint-mobile +1 = size where app-navigation is hidden +1
|
||||
688 = table min-width */
|
||||
$min-table-width: 688px;
|
||||
@media only screen and (max-width: $min-table-width + $navigation-width) and (min-width: $breakpoint-mobile -1), only screen and (max-width: $min-table-width) {
|
||||
@media only screen and (max-width: $min-table-width + $navigation-width) and (min-width: $breakpoint-mobile + 1), only screen and (max-width: $min-table-width) {
|
||||
|
||||
.app-files #app-content.dir-drop{
|
||||
background-color: rgba(255, 255, 255, 1)!important;
|
||||
|
@ -10,6 +10,7 @@ $min-table-width: 688px;
|
|||
|
||||
#body-user #filestable {
|
||||
min-width: 250px;
|
||||
display: initial;
|
||||
}
|
||||
|
||||
table th#headerSize,
|
||||
|
|
Loading…
Reference in a new issue