Skip to content
Snippets Groups Projects
Commit b2065f58 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

Qml Designer: fix styling of ComBox popup

parent b6fb23a5
No related branches found
No related tags found
No related merge requests found
......@@ -388,6 +388,7 @@ QMenu {
padding: 2px;
color: #404040;
border-radius: 4px;
padding: 2px 25px 2px 20px;
}
QMenu::separator {
height: 1px;
......@@ -395,3 +396,14 @@ QMenu::separator {
margin-left: 5px;
margin-right: 5px;
}
QComboBox QAbstractItemView {
show-decoration-selected: 1; /* make the selection span the entire width of the view */
background-color: #494949; /* sets background of the menu */
border: 1px solid black;
margin: 0px; /* some spacing around the menu */
color: #cacaca;
selection-background-color: #d2d2d2;
selection-color: #404040;
}
......@@ -63,10 +63,15 @@ QLineEdit
QListView::item:selected {
color: white;
}
QComboBox QAbstractItemView {
color: black;
border: 2px solid darkgray;
selection-background-color: lightgray;
QComboBox QAbstractItemView {
show-decoration-selected: 1; /* make the selection span the entire width of the view */
background-color: #494949; /* sets background of the menu */
border: 1px solid black;
margin: 0px; /* some spacing around the menu */
color: #cacaca;
selection-background-color: #d2d2d2;
selection-color: #404040;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment