Let's say I have a class called TextEditor which extends TextArea, so what's the right selector for this? Selector like .text-editor
didn't help.
Well, actually .text-area
works fine, but that's no the solution.
Let's say I have a class called TextEditor which extends TextArea, so what's the right selector for this? Selector like .text-editor
didn't help.
Well, actually .text-area
works fine, but that's no the solution.
CSS isn't aware of the Java classes that you have created. Manually add a CSS class and use that to style it. E.g. class="TextEditor" then style it with .TextEditor
You may define your own selector that customizes the default .text-area
selector. And set the id of your custom class with this selector. See the "Changing the table column header style : Customzing" section of this answer.