I have used following code for increasing the left border of particular column using id selector:

div#PriceCurveCurrent {
    border-left: 1px solid black;
}
1

There are 1 best solutions below

0
Dinkheller On

The quick solution.

.x-gridcolumn > .x-header-el {
    border-right-width: 12px;
}

Another solution might be to use the ExtJS theme variables.

Here is a starting point.