Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Navbar's right most element's border is not visible #4190

Closed
@ghost

Description

In JQM navbar the right margin for the right most nav bar element is not visible.
The jqm structure css file (line 634):

.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn {
    border-right-width: 0;
}

causes this.

Solution:
Set border-right-width: 1px; for the last child in the nav bar node.

.ui-navbar ul li:last-child .ui-btn {
    border-right-width: 1px;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions