change the feedback after inline editing

change the feedback after inline editing

guidolsguidols Posts: 38Questions: 14Answers: 1

Hi,

how can I change the color of the "feedback" after a row has been edited? Is there a CSS rule?

For example here, if you inline edit a row, then the row flashes in yellow.

Thanks!

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,665Questions: 1Answers: 10,096 Site admin
    Answer ✓

    Yes, it uses CSS.

    table.dataTable tbody tr.highlight {
      background-color:red !important;
    }
    

    Should do the job - although there are other classes in the Editor file which are used for styling older versions of DataTables. Search for highlight as the class name in the file to see them all.

    Allan

Sign In or Register to comment.