Skip to content

Commit

Permalink
fix: Fixed drag popup CSS on default theme
Browse files Browse the repository at this point in the history
  • Loading branch information
win32kbase committed Oct 29, 2021
1 parent 255bedb commit b65afd9
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/main/resources/style/ui-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,26 @@
-fx-background-insets: 0;
-fx-border-width: 0 0 1 0;
-fx-border-color: rgb(125, 125, 125);
}
}

/* 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);
}

0 comments on commit b65afd9

Please sign in to comment.