Skip to content

Commit d1e5d6e

Browse files
committedFeb 11, 2019
[themes] Fix style of line edit within combo box
1 parent 0647188 commit d1e5d6e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎resources/themes/Blend of Gray/style.qss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,9 @@ QComboBox:editable {
242242
background-color: @darkgradient;
243243
}
244244
QComboBox:editable QLineEdit {
245-
background-color: @itemdarkbackground;
245+
background-color: transparent;
246246
color:@itembackground;
247+
border: 0;
247248
}
248249

249250
QComboBox QAbstractItemView, QComboBox QListView {

‎resources/themes/Night Mapping/style.qss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,11 @@ QComboBox:editable {
252252
background-color: @darkgradient;
253253
}
254254
QComboBox:editable QLineEdit {
255-
border-color: @itemdarkbackground;
256-
background-color: @itemdarkbackground;
255+
background-color: transparent;
257256
color:@text;
258257
selection-background-color: @selection;
259258
selection-color: @text;
259+
border: 0;
260260
}
261261

262262
QComboBox QAbstractItemView, QComboBox QListView {

0 commit comments

Comments
 (0)
Please sign in to comment.