Page 1 of 1

[REACT] Style for scrollRowIntoView Highlight

Posted: Fri Jul 30, 2021 1:37 am
by derulker

Hi,

I would like to change the color of the row highlight that shows after calling scrollRowIntoView, but I'm having some trouble finding the right class for the highlight. Could you please let me know which class has the styles for the highlight?

Thanks!


Re: [REACT] Style for scrollRowIntoView Highlight

Posted: Fri Jul 30, 2021 9:08 am
by Animal

It's this CSS in the default themes:

// Used by DomHelper.highlight
.b-fx-highlight {
    z-index            : 9999;
    animation-name     : b-fx-highlight-animation;
    animation-duration : 1s;
    animation          : b-fx-highlight-animation 1s ease 0s 1;
}

@keyframes b-fx-highlight-animation {
    0% {
        box-shadow : none;
    }
    50% {
        box-shadow : 0 0 10px 5px rgba(253, 126, 20, .5);
    }
    100% {
        box-shadow : none;
    }
}

You can override that in any way.


Re: [REACT] Style for scrollRowIntoView Highlight

Posted: Fri Jul 30, 2021 4:42 pm
by derulker

Thank you!