Skip to content

Commit 46bb3fe

Browse files
authored
Merge pull request #8609 from nextcloud/ie11-nav-flex-fix
[stable13] Fixed app navigation for IE11
2 parents 364e7fe + bc2032b commit 46bb3fe

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

core/css/apps.scss

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ kbd {
218218
text-overflow: ellipsis;
219219
color: $color-main-text;
220220
opacity: .57;
221-
flex: 1 1 0;
221+
flex: 1 1 0px;
222222
z-index: 100; /* above the bullet to allow click*/
223223
/* TODO: forbid using img as icon in menu? */
224224
&:first-child img {
@@ -457,7 +457,7 @@ kbd {
457457
white-space: nowrap;
458458
text-overflow: ellipsis;
459459
overflow: hidden;
460-
flex: 1 1 0;
460+
flex: 1 1 0px;
461461
line-height: 44px;
462462
}
463463
.app-navigation-entry-deleted-button {
@@ -481,6 +481,7 @@ kbd {
481481
opacity 250ms ease-in-out,
482482
z-index 250ms ease-in-out;
483483
position: absolute;
484+
left: 0;
484485
background-color: $color-main-background;
485486
box-sizing: border-box;
486487
}
@@ -1009,6 +1010,8 @@ kbd {
10091010
object-fit: cover;
10101011
user-select: none;
10111012
cursor: pointer;
1013+
top: 50%;
1014+
margin-top: -20px;
10121015
}
10131016

10141017
.app-content-list-item-line-one,
@@ -1019,15 +1022,16 @@ kbd {
10191022
overflow: hidden;
10201023
text-overflow: ellipsis;
10211024
order: 1;
1022-
flex: 1 1 0;
1025+
flex: 1 1 0px;
10231026
padding-right: 10px;
10241027
cursor: pointer;
10251028
}
10261029

10271030
.app-content-list-item-line-two {
10281031
opacity: .5;
10291032
order: 3;
1030-
flex: 1 0 calc(100% - 24px);
1033+
flex: 1 0;
1034+
flex-basis: calc(100% - 24px);
10311035
}
10321036

10331037
.app-content-list-item-details {

0 commit comments

Comments
 (0)