tweak alignment of no deposit and account toggles

This commit is contained in:
woodser 2025-05-24 21:21:23 -04:00
parent dd6fb7dcbd
commit 6151e9309a
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
3 changed files with 1 additions and 2 deletions

View file

@ -1606,6 +1606,7 @@ textfield */
-fx-border-width: 1px;
-fx-border-color: -bs-color-border-form-field;
-fx-background-insets: 0;
-fx-pref-height: 36px;
}
.toggle-button-no-slider:hover {

View file

@ -194,7 +194,6 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
matchingOffersToggleButton = AwesomeDude.createIconToggleButton(AwesomeIcon.USER, null, "1.5em", null);
matchingOffersToggleButton.getStyleClass().add("toggle-button-no-slider");
matchingOffersToggleButton.setPrefHeight(27);
Tooltip matchingOffersTooltip = new Tooltip(Res.get("offerbook.matchingOffers"));
Tooltip.install(matchingOffersToggleButton, matchingOffersTooltip);

View file

@ -826,7 +826,6 @@ public class FormBuilder {
}
public static InputTextField addInputTextField(GridPane gridPane, int rowIndex, String title, double top) {
InputTextField inputTextField = new InputTextField();
inputTextField.setLabelFloat(true);
inputTextField.getStyleClass().add("label-float");