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

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -