diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-01 20:13:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 20:13:51 +0100 |
commit | d70a35b382df4dc62e8736164079dcf9d8e4b668 (patch) | |
tree | 9236f2e16dbf5cd11611db32f910bb9b275b4cd2 /core/css | |
parent | 6b931eb64b71a276f4aeb9e24208d6a656d3d657 (diff) | |
parent | 958463e1c70118a1af970ca46aae07e2017effa6 (diff) | |
download | nextcloud-server-d70a35b382df4dc62e8736164079dcf9d8e4b668.tar.gz nextcloud-server-d70a35b382df4dc62e8736164079dcf9d8e4b668.zip |
Merge pull request #8573 from nextcloud/appnav-ie11-fixes
Fixed app navigation for IE11
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.scss | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 9d35f8b8c18..691a0c07131 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -234,7 +234,7 @@ kbd { text-overflow: ellipsis; color: $color-main-text; opacity: .57; - flex: 1 1 0; + flex: 1 1 0px; z-index: 100; /* above the bullet to allow click*/ /* TODO: forbid using img as icon in menu? */ &:first-child img { @@ -473,7 +473,7 @@ kbd { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; - flex: 1 1 0; + flex: 1 1 0px; line-height: 44px; } .app-navigation-entry-deleted-button { @@ -497,6 +497,7 @@ kbd { opacity 250ms ease-in-out, z-index 250ms ease-in-out; position: absolute; + left: 0; background-color: $color-main-background; box-sizing: border-box; } @@ -1019,6 +1020,8 @@ kbd { object-fit: cover; user-select: none; cursor: pointer; + top: 50%; + margin-top: -20px; } .app-content-list-item-line-one, @@ -1029,7 +1032,7 @@ kbd { overflow: hidden; text-overflow: ellipsis; order: 1; - flex: 1 1 0; + flex: 1 1 0px; padding-right: 10px; cursor: pointer; } @@ -1037,7 +1040,8 @@ kbd { .app-content-list-item-line-two { opacity: .5; order: 3; - flex: 1 0 calc(100% - 24px); + flex: 1 0; + flex-basis: calc(100% - 24px); } .app-content-list-item-details { |