Browse Source

Fixes #630 Moves menu border to left side, removes on first-child

pull/594/merge
jlukic 10 years ago
parent
commit
c338148295
1 changed files with 5 additions and 1 deletions
  1. 6
      src/collections/menu.less

6
src/collections/menu.less

@ -181,7 +181,7 @@
position: absolute;
content: '';
top: 0%;
right: 0px;
left: 0px;
width: 1px;
height: 100%;
background-image: linear-gradient(
@ -190,6 +190,10 @@
rgba(0, 0, 0, 0.05) 100%)
;
}
.ui.menu > .menu:first-child > .item:first-child:before,
.ui.menu .item:first-child:before {
display: none;
}
.ui.menu .menu.right .item:before,
.ui.menu .item.right:before {
right: auto;

Loading…
Cancel
Save