Show handle on sortable buttons resolves #9.

This commit is contained in:
Arpad Csanyi
2016-03-15 22:45:03 +01:00
parent 5da91749af
commit 0eaea4852b
2 changed files with 26 additions and 3 deletions

View File

@@ -171,6 +171,29 @@ ul {
max-width: 100%;
}
.grip {
position: relative;
&:before {
content: '';
display: none;
width: 5px;
height: 20px;
background-image: url(../images/grips/vertical_dark.png);
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 7px;
margin-top: -10px;
}
&:hover {
&:before {
display: block;
}
}
}
// BOF: These styles will be deleted when removing OWL carousel.
.owl-carousel {
max-width: 991px;