mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-29 09:07:27 -04:00
pulldown popup is rounded
This commit is contained in:
parent
73c1049b97
commit
ccd72394fc
1 changed files with 26 additions and 0 deletions
|
@ -242,6 +242,32 @@
|
|||
-fx-shape: "M 0 0 l 3.5 4 l 3.5 -4";
|
||||
}
|
||||
|
||||
.combo-box-popup {
|
||||
-fx-background-radius: 10;
|
||||
-fx-border-radius: 10;
|
||||
-fx-padding: 5;
|
||||
}
|
||||
|
||||
.combo-box-popup .scroll-pane {
|
||||
-fx-background-radius: 10;
|
||||
-fx-border-radius: 10;
|
||||
-fx-padding: 5;
|
||||
}
|
||||
|
||||
.combo-box-popup > .list-view {
|
||||
-fx-background-radius: 10;
|
||||
-fx-border-radius: 10;
|
||||
-fx-padding: 5;
|
||||
}
|
||||
|
||||
/* Rounds the first and last list cells to create full round illusion */
|
||||
.combo-box-popup .list-cell:first-child {
|
||||
-fx-background-radius: 10 10 0 0;
|
||||
}
|
||||
.combo-box-popup .list-cell:last-child {
|
||||
-fx-background-radius: 0 0 10 10;
|
||||
}
|
||||
|
||||
.combo-box-popup .list-cell:hover {
|
||||
-fx-background-radius: 8;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue