wip pulldowns with white borders

This commit is contained in:
woodser 2025-05-06 15:32:07 -04:00
parent 205bdd2d08
commit a4bb43a1d5
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
3 changed files with 17 additions and 6 deletions

View file

@ -221,13 +221,23 @@
.jfx-combo-box {
-jfx-focus-color: transparent;
-fx-background-color: -bs-background-color;
-fx-background-radius: 999;
-fx-border-radius: 999;
-fx-border-color: -bs-background-gray;
-fx-padding: 5 14;
}
.jfx-combo-box .prompt-container {
-fx-padding: 0 0 14 0;
}
.jfx-text-field, .jfx-text-area {
-fx-padding: 9 18;
}
.jfx-combo-box, .jfx-text-field, .jfx-text-area {
-jfx-unfocus-color: transparent;
-fx-border-color: -bs-color-background-button-border;
-fx-background-radius: 999;
-fx-border-radius: 999;
}
.jfx-combo-box .arrow-button {
@ -351,7 +361,6 @@ tree-table-view:focused {
.jfx-text-field {
-jfx-focus-color: -bs-color-primary;
-fx-background-color: -bs-background-color;
-fx-padding: 0.333333em 0.333333em 0.333333em 0.333333em;
-fx-background-radius: 999;
-fx-border-radius: 999;
}
@ -561,7 +570,7 @@ tree-table-view:focused {
-jfx-default-color: -bs-color-primary;
}
.jfx-date-picker .jfx-text-field .jfx-text-area {
.jfx-date-picker {
-fx-padding: 0.333333em 0em 0.333333em 0em;
}

View file

@ -43,9 +43,10 @@
-bs-color-gray-bbb: #5a5a5a;
-bs-color-gray-aaa: #29292a;
-bs-color-gray-fafa: #0a0a0a;
-bs-color-gray-18: rgb(18, 18, 18);
-bs-color-gray-background: black;
-bs-color-background-button-background: rgb(18, 18, 18);
-bs-color-background-button-border: rgb(51, 51, 51);
-bs-color-background-button-border: rgb(65, 65, 65);
-bs-color-background-table-header: rgb(9, 9, 9);
-bs-color-background-table-cell-even: rgb(9, 9, 9);
-bs-color-background-table-cell-odd: rgb(19, 19, 19);
@ -236,9 +237,9 @@
/* text field */
.jfx-text-field, .jfx-text-area,
.jfx-combo-box, .jfx-combo-box > .list-cell {
-fx-background-color: derive(-bs-background-color, 15%);
-fx-prompt-text-fill: -bs-color-gray-6;
-fx-text-fill: -bs-color-gray-12;
-fx-border-width: 1;
}
.jfx-text-area:readonly, .jfx-text-field:readonly,

View file

@ -109,6 +109,7 @@
-bs-prompt-text: -fx-control-inner-background;
-bs-soft-red: #aa4c3b;
-bs-turquoise-light: #11eeee;
-bs-color-background-button-border: -bs-background-gray;
-bs-color-background-table-cell-even: derive(-bs-background-color, 5%);
-bs-color-background-table-cell-odd: derive(-bs-background-color, -5%);
-bs-color-table-cell-faded: -bs-color-gray-ccc;