From b65afd96666b3f8a6a615a86cc374554301156f8 Mon Sep 17 00:00:00 2001 From: wolfie Date: Fri, 29 Oct 2021 14:02:55 -0500 Subject: [PATCH] fix: Fixed drag popup CSS on default theme --- src/main/resources/style/ui-default.css | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/main/resources/style/ui-default.css b/src/main/resources/style/ui-default.css index 91dbb2f2c..8c0a91797 100644 --- a/src/main/resources/style/ui-default.css +++ b/src/main/resources/style/ui-default.css @@ -18,4 +18,26 @@ -fx-background-insets: 0; -fx-border-width: 0 0 1 0; -fx-border-color: rgb(125, 125, 125); -} \ No newline at end of file +} + +/* Drag popup */ + .drag-popup-wrapper { + -fx-background-radius: 0; + -fx-background-color: white; + -fx-background-insets: 0; + -fx-border-width: 1; + -fx-border-color: rgb(125, 125, 125); + } + .drag-popup-wrapper .scroll-pane { + -fx-background-insets: 0; + -fx-border-width: 0; + -fx-padding: 15; + } + .drag-popup-header { + -fx-padding: 5; + -fx-background-radius: 0; + -fx-background-color: rgb(230, 230, 235); + -fx-background-insets: 0; + -fx-border-width: 0 0 1 0; + -fx-border-color: rgb(125, 125, 125); + } \ No newline at end of file