ColdTrick / pages_tools

Different additions/modifications to the pages plugin

Home Page:http://elgg.org/plugins/1124515

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Long page name wrap highlights only part of name and highlight makes viewing name difficult.

spatialed opened this issue · comments

Long page names wrap in the navigation tree. All text of highlighted page name turns white, but blue highlight only occurs on first line of name, causing the additional lines to be difficult to read. Also, the lines do not wrap within the area of the sidebar and an ugly slider appears just under the last page name. Using FF.

If i am correct, the first 4 levels do not wrap. The highlighting issue is unsolvable at this moment as it is a bug in the js library we use. When we upgrade for Elgg 1.9 we will also update the library, so hopefully that will bring some improvements.

Just a note on this conversation - all levels wrap, even the first 4 :)

But the highlighting can be fixed - it's a css issue

.tree li a, .tree li span {
height: auto;
}

will fix it. Currently the default style provided by the js library hard-codes the height to 16px. If you override it with auto the full link will be highlighted properly.