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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -