vuebar
vuebar copied to clipboard
Dragger tracker background
First of all, thank you for that amazing directive, it's awesome and marry well with my design !
I'm here to ask if it's possible to improve the actual behavior, and put a background behind de dragger, something like this : http://i.imgur.com/1FwzGi4.png
Hey @DevoidCoding it will be introduced in the version 2.0 of Vuebar (https://github.com/DominikSerafin/vuebar/projects/1).
For now, as a workaround, you can use pseudo elements ::before/::after on Vuebar el1 to add that background.
@DevoidCoding I've done it with
.vb.vb-visible::after {
background-color: rgba(0, 0 , 0, .15);
position: absolute;
top:0;
right:0;
width: 7px;
height: 100%;
content: "";
margin-right: 5px;
}