vuebar icon indicating copy to clipboard operation
vuebar copied to clipboard

Dragger tracker background

Open DevoidCoding opened this issue 8 years ago • 2 comments

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

DevoidCoding avatar Sep 01 '17 14:09 DevoidCoding

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.

DominikSerafin avatar Sep 02 '17 00:09 DominikSerafin

@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;
  }

lethak avatar Nov 04 '17 03:11 lethak