css - Removing the focused effect on all the elements -
currently use button:
.button:focused{ -fx-background-insets: 0; }
but there way remove effect on elements @ same time? or have add id
elements can focused , put line id
?
also seems '.' annotation works button, tried .textfield
or .scrollpane
yet didn't seem work, or have write in other way?
if wanted generate colored border (like focused one) how should it? tried with:
#highlight{ -fx-background-insets: 2; -fx-background-color: blue; }
but doesn't seem work (-fx-background-color
fills color)
Comments
Post a Comment