lessen height of form inputs

This commit is contained in:
woodser 2025-05-09 13:11:28 -04:00
parent 073c11b80f
commit f434ca70a5
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
2 changed files with 7 additions and 7 deletions

View file

@ -220,15 +220,15 @@
.jfx-combo-box {
-jfx-focus-color: transparent;
-fx-background-color: -bs-background-color;
-fx-padding: 4 14 4 14;
-fx-padding: 2 14 2 14;
}
.jfx-text-area {
-fx-padding: 9 18 9 18;
-fx-padding: 7 18 7 18;
}
.jfx-text-field {
-fx-padding: 9 18 9 18;
-fx-padding: 7 18 7 18;
}
.jfx-text-field.label-float .prompt-container {
@ -511,7 +511,7 @@ tree-table-view:focused {
}
.offer-input-readonly .icon {
-fx-padding: 4.5;
-fx-padding: 6.5;
}
.jfx-badge .badge-pane {
@ -763,7 +763,7 @@ tree-table-view:focused {
-fx-border-color: -bs-rd-nav-primary-border;
-fx-background-radius: 999;
-fx-border-radius: 999;
-fx-padding: 9 0 5 20;
-fx-padding: 9 0 9 20;
}
.nav-secondary {
@ -1561,7 +1561,7 @@ textfield */
-fx-border-radius: 999;
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
-fx-padding: 9 18 9 18;
-fx-padding: 7 18 7 18;
-fx-border-width: 1px;
-fx-border-color: -bs-color-background-button-border;
-fx-background-insets: 0;

View file

@ -41,5 +41,5 @@ public class Layout {
public static final double GRID_GAP = 5d;
public static final double LIST_ROW_HEIGHT = 34;
public static final double ROUNDED_ARC = 20;
public static final double FLOATING_ICON_Y = 10; // adjust when .jfx-text-field padding is changed for right icons on make/take offer
public static final double FLOATING_ICON_Y = 8; // adjust when .jfx-text-field padding is changed for right icons on make/take offer
}