Skip to content

Commit

Permalink
Fix colored menus on System Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
jwrober committed Dec 3, 2021
1 parent 1d9afb4 commit aadfedb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
Binary file added data/themes/gui-qt/System/pattern.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions data/themes/gui-qt/System/resource.qss
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,32 @@ research_color {
color: #96b62e /*lines*/;
alternate-background-color: white /* box edge */;
}

QMenu {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 rgba(84, 85, 86, 225), stop:1 rgba(55, 55, 54, 255));
border:none;
}
QMenu::item {
color: #FFFFFF;
padding: 3px 20px 3px 25px;
border: 2px solid transparent;
}

QMenu::item:disabled {
color: #999999;
}

QMenu::item:selected {
color: #3399FF;
background-color: rgba(55, 55, 54, 255);
border: 2px solid grey;
border-radius: 9px;
}

QMainWindow {
border-image:url(LittleFingerpattern.png);
}

QLabel {
color: black;
}

0 comments on commit aadfedb

Please sign in to comment.