SpartnerNL / Laravel-Sidebar

A Laravel Sidebar builder
MIT License
111 stars 58 forks source link

Double borders issue #2

Closed nWidart closed 9 years ago

nWidart commented 9 years ago

There some kind of 'bug' with the borders on the items, which makes it 'blurry':

screen_shot_2015-02-13_at_7_00_54_pm

nWidart commented 9 years ago

From what I can see it is cause by the fact that every item is the first element. Since every item is one ul.

.skin-blue .sidebar > .sidebar-menu > li:first-of-type {
border-top: 1px solid #dbdbdb;
}
nWidart commented 9 years ago

Fixed with css fiddling.

I wouldn't recommend having one UL for each item though. It should be one li item for list item.