Our state of the art Gantt chart


Post 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!


Post 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.


Post by derulker »

Thank you!


Post Reply