Toolbar dividers in horizontal state end abruptly and shortcut edit link wraps.
Currently looks like this by default. Odd wrap, abrupt end of borders between list items.
This is what happens if you add a bunch of shortcuts:
All this requires is:
Removing clearfix class from the user-defined-shortcuts UL markup
remove these two selectors from toolbar.theme.css:
.toolbar .horizontal .menu li:last-child {
border-right: 1px solid #dddddd;
}
.toolbar .horizontal .menu li + li {
border-left: 1px solid #dddddd;
}
Change the float of the edit shortcuts link in shortcut.theme.css to visually separate it from the shortcuts:
.toolbar .horizontal .edit-shortcuts { float:left;
float: right;
}
(and the reverse in the rtl file)
With the changes applied you get this:
Which actually also makes menu less noisy. Simpler is better.
Attachment | Size | Status | Test result | Operations |
---|---|---|---|---|
Screen Shot 2013-07-13 at 12.34.54 PM.png | 102.33 KB | Ignored: Check issue status. | None | None |
Screen Shot 2013-07-13 at 8.46.08 PM.png | 22.6 KB | Ignored: Check issue status. | None | None |
Screen Shot 2013-07-13 at 8.43.19 PM.png | 28.81 KB | Ignored: Check issue status. | None | None |
Screen Shot 2013-07-13 at 8.45.15 PM.png | 23.04 KB | Ignored: Check issue status. | None | None |