Javafx 2.0 :Как изменить размер круга радиокнопок -с помощью CSS?

Я пытаюсь изменить размер радиокнопок -в сборке моего приложения с помощью FXML и CSS. Я использую сценабилдер.

Спасибо за вашу помощь !

Вот мой фактический код CSS для радиокнопок -:

.radio-button.radio{
-fx-border-width     : 1px   ;
-fx-border-color     : #000  ;
-fx-background-color : white ;
-fx-background-image : null  ;
-fx-border-radius    : 15px  ;
-fx-height           : 15px  ; /* Not working */
height               : 5px   ; /* Not working */
}
.radio-button.radio:selected{
-fx-background-color : white ;
-fx-background-image : null  ;
}
.radio-button -radio:armed{
-fx-background-color : white ;
-fx-background-image : null  ;
}
.radio-button -radio:determinate{
-fx-background-color : white ;
-fx-background-image : null  ;
}
.radio-button -radio:indeterminate{
-fx-background-color : white ;
-fx-background-image : null  ;
}
6
задан A.Fauchere 20 August 2012 в 13:00
поделиться