Search code examples
csstabulator

How to edit the SASS variable headerSeperatorColor in CSS file?


I am currently customising the styling of a tabulator table and wish to edit the headerSeperatorColor variable.

I can edit the standard CSS variables easily.

For example, I have changed the background colour of the odd and even rows as follows:

.tabulator .tabulator-row-odd {
    background-color: black;
}

.tabulator .tabulator-row-even {
    background-color: white;
}

However, I also need to edit one of the SASS variables called headerSeperatorColor.

Can this be achieved in the same CSS file? If not, how do you edit the variable?

I am using version 4.4.3


Solution

  • .tabulator .tabulator-header {
        border-bottom: GREEN;
    }