angular-table icon indicating copy to clipboard operation
angular-table copied to clipboard

"hover-color" would be nice

Open m48u opened this issue 11 years ago • 3 comments

Hi there, and congratulations! This is a really great project! A nice new feature for this would be "on-hover". You already implemented "selected-color", "even-color" and "odd-color". It would be very nice to have a "hovered-color" in order to indicate the actual hovered item.

Thanks in advance! m48u

m48u avatar Jul 15 '13 08:07 m48u

Found a solution for this...

enter some code in angular-table (somewhere in the area of line number 320)

ngClass = " ng-class='{hovered: hoveredItemNr == $index}' ";
ngMouse = " ng-mouseenter='hoveredItemNr = $index' ng-mouseleave='hoveredItemNr = null' ";

and then add some CSS to this CSS class

.table tbody tr.hovered>td {
    background-color: lightblue;
    color: black;
}

Maybe you find a way to make it selectable like the other colors

m48u avatar Jul 15 '13 09:07 m48u

Thank you! I will add this as a new feature in the future.

davidjnelson avatar Jul 15 '13 14:07 davidjnelson

No, thank you!

m48u avatar Jul 16 '13 04:07 m48u