Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudio Guglielmo2021-06-04 13:18:09 +0000
committerClaudio Guglielmo2021-06-04 13:59:02 +0000
commitbebe759e5b6d962da30e4c747d6491e82f009e39 (patch)
tree067b2cbabd9393b8547d758d4f2fe8d128468929
parenta36f38c54e11f5dcd70e2c96f9f9d77c9a479215 (diff)
downloadorg.eclipse.scout.rt-bebe759e5b6d962da30e4c747d6491e82f009e39.tar.gz
org.eclipse.scout.rt-bebe759e5b6d962da30e4c747d6491e82f009e39.tar.xz
org.eclipse.scout.rt-bebe759e5b6d962da30e4c747d6491e82f009e39.zip
Mobile: fix layout of selected item
Setting display: flex for the selected tree node in Tree.js broke the mobile bread crumb layout.
-rw-r--r--eclipse-scout-core/src/desktop/outline/Outline.less1
1 files changed, 1 insertions, 0 deletions
diff --git a/eclipse-scout-core/src/desktop/outline/Outline.less b/eclipse-scout-core/src/desktop/outline/Outline.less
index 84ad37a171..3b65c0a5a0 100644
--- a/eclipse-scout-core/src/desktop/outline/Outline.less
+++ b/eclipse-scout-core/src/desktop/outline/Outline.less
@@ -291,6 +291,7 @@
}
&.selected {
+ display: block;
background-color: transparent;
color: @desktop-navigation-color;

Back to the top