use default text area background unless readonly

This commit is contained in:
woodser 2025-05-30 11:18:20 -04:00
parent 76076510b7
commit 20c350ad71
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

View file

@ -2627,7 +2627,6 @@ textfield */
.flat-text-area-with-border {
-fx-background-radius: 8;
-fx-border-radius: 8;
-fx-background-color: transparent !important;
-fx-font-size: 1.077em;
-fx-font-family: "IBM Plex Sans";
-fx-font-weight: normal;
@ -2636,6 +2635,11 @@ textfield */
-fx-border-color: -bs-color-border-form-field !important;
}
.grid-pane .text-area:readonly,
.flat-text-area-with-border {
-fx-background-color: transparent !important;
}
.grid-pane .text-area {
-fx-max-height: 150 !important;
}