style info popovers

This commit is contained in:
woodser 2025-05-29 09:21:34 -04:00
parent b71d156aaf
commit 6be83d4802
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
3 changed files with 18 additions and 2 deletions

View file

@ -423,7 +423,7 @@ tree-table-view:focused {
} }
.jfx-text-field:readonly, .hyperlink-with-icon { .jfx-text-field:readonly, .hyperlink-with-icon {
-fx-background-color: -bs-color-gray-1; -fx-background-color: -bs-color-background-form-field-readonly;
} }
.jfx-text-field:readonly > .input-line { .jfx-text-field:readonly > .input-line {
@ -2582,15 +2582,25 @@ textfield */
********************************************************************************************************************/ ********************************************************************************************************************/
.popover > .content { .popover > .content {
-fx-padding: 10; -fx-padding: 10;
-fx-background-color: -bs-color-background-popup;
-fx-border-radius: 3;
-fx-background-radius: 3;
-fx-background-insets: 1;
} }
.popover > .content .default-text { .popover > .content .default-text {
-fx-text-fill: -bs-text-color; -fx-text-fill: -bs-text-color;
} }
.popover > .content .text-field {
-fx-background-color: -bs-color-background-form-field-readonly !important;
-fx-border-radius: 4;
-fx-background-radius: 4;
}
.popover > .border { .popover > .border {
-fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-dropshadow) !important; -fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-dropshadow) !important;
-fx-fill: -bs-background-color !important; -fx-fill: -bs-color-background-popup !important;
} }
/******************************************************************************************************************** /********************************************************************************************************************

View file

@ -265,6 +265,11 @@
-fx-prompt-text-fill: -bs-color-gray-2; -fx-prompt-text-fill: -bs-color-gray-2;
-fx-text-fill: -bs-color-gray-3; -fx-text-fill: -bs-color-gray-3;
} }
.popover > .content .text-field {
-fx-background-color: -bs-color-background-form-field !important;
}
.jfx-combo-box > .text, .jfx-combo-box > .text,
.jfx-text-field-top-label, .jfx-text-area-top-label { .jfx-text-field-top-label, .jfx-text-area-top-label {
-fx-text-fill: -bs-color-gray-11; -fx-text-fill: -bs-color-gray-11;

View file

@ -109,6 +109,7 @@
-bs-soft-red: #aa4c3b; -bs-soft-red: #aa4c3b;
-bs-turquoise-light: #11eeee; -bs-turquoise-light: #11eeee;
-bs-color-border-form-field: -bs-background-gray; -bs-color-border-form-field: -bs-background-gray;
-bs-color-background-form-field-readonly: -bs-color-gray-1;
-bs-color-background-pane: -bs-background-color; -bs-color-background-pane: -bs-background-color;
-bs-color-background-row-even: -bs-color-background-pane; -bs-color-background-row-even: -bs-color-background-pane;
-bs-color-background-row-odd: derive(-bs-color-background-pane, -6%); -bs-color-background-row-odd: derive(-bs-color-background-pane, -6%);