NCEAS / metacatui-themes

Themes for MetacatUI repositories
1 stars 0 forks source link

Implement fix for logged in user menu positioning in default theme #28

Open iannesbitt opened 4 months ago

iannesbitt commented 4 months ago

Fix for NCEAS/metacatui#1978 works well in both DRP and Smithsonian themes. I will add this to the default theme. OP re: fix is reproduced below:

This issue can be solved by adding the following to metacatui.css under the heading /* Logged-in view and user controls in navbar */

    /* Keep logged-in nav dropdown from going off page right */
    .navbar-inner .dropdown-menu {
        left: unset;
        right: 0;
    }

Originally posted by @iannesbitt in https://github.com/NCEAS/metacatui/issues/1978#issuecomment-1932139438