bmbrands / moodle-theme_elegance

This is the new official elegance repository
http://basbrands.nl
23 stars 12 forks source link

FontAwesome is missing in menu items, in RTL mode #157

Closed nadavkav closed 7 years ago

nadavkav commented 8 years ago

Seems like you are missing font-family:fontawesome in the menu items (nodes) in RTL mode image Although, after fixing it, I am getting double "arrows" and I think it should be removed, not just fix the missing fontawsome. as seen after the fix: image The fix:

.dir-rtl .collapsed .tree_item.branch:before {
    content: " \f053";
    font-family: fontawesome;
}

What do you think?

nadavkav commented 8 years ago

Actually, what is better, is to hide FA icons, like this:

.dir-rtl .collapsed .tree_item.branch:before {
    display: none;
}