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

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
Labels
No labels