[SSE] Bug 43432 - change sheet style when moving tab (#294)

This commit is contained in:
JuliaSvinareva 2020-01-13 16:59:58 +03:00 committed by Alexey Golubev
parent 3b43b1d543
commit 6a9fe67bd4

View file

@ -241,11 +241,21 @@
&.mousemove {
> a {
background: linear-gradient(to right, #49795d, @gray-light 3px);
background: linear-gradient(to right, @gray-deep 0px, @gray-deep 2px, @gray-light 2px);
}
&.right {
> a {
background: linear-gradient(to left, #49795d, @gray-light 3px);
background: linear-gradient(to left, @gray-deep 0px, @gray-deep 2px, @gray-light 2px);
}
}
&.selected {
> a {
background: linear-gradient(to right, @gray-deep 0px, @gray-deep 2px, #FFFFFF 2px);
}
&.right {
> a {
background: linear-gradient(to left, @gray-deep 0px, @gray-deep 2px, #FFFFFF 2px);
}
}
}
}