Skip to content

Commit ed5eb29

Browse files
committed
#178: add combobox-styling
1 parent 9078865 commit ed5eb29

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/main/resources/css/dsStyles.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,27 @@
110110
}
111111
.hyperlink:hover {
112112
-fx-text-fill: #00A5E1;
113+
}
114+
115+
/* ComboBox */
116+
.combo-box {
117+
-fx-background-color: white;
118+
-fx-border-color: #00759e;
119+
-fx-border-width: 1px;
120+
-fx-border-radius: 5px;
121+
-fx-background-radius: 5px;
122+
}
123+
.combo-box:hover {
124+
-fx-border-color: #00A5E1;
125+
}
126+
.combo-box:focused {
127+
-fx-border-color: #00A5E1;
128+
}
129+
.combo-box .list-view {
130+
-fx-background-color: white;
131+
-fx-border-color: #00759e;
132+
-fx-border-radius: 5px;
133+
}
134+
.combo-box .list-cell:hover {
135+
-fx-background-color: #00A5E1;
113136
}

0 commit comments

Comments
 (0)