summaryrefslogtreecommitdiffstats
path: root/include/ui
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-31 23:44:04 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-31 23:44:04 +0300
commit4a026b1511da08ac007a769803f30f69043022c1 (patch)
tree273b7b0eae89b74b53a7ba14a5a90ab4092cd2e6 /include/ui
parentaf80c251d75e5e8bf7e8c6f870f8c8b069a822e1 (diff)
Be explicit about the text color on the context menu
[ci skip]
Diffstat (limited to 'include/ui')
-rw-r--r--include/ui/Menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ui/Menu.h b/include/ui/Menu.h
index 78a35b43..44c13b79 100644
--- a/include/ui/Menu.h
+++ b/include/ui/Menu.h
@@ -10,9 +10,9 @@ public:
{
setFont(QFont("Open Sans", 10));
setStyleSheet(
- "QMenu { background-color: white; margin: 0px;}"
- "QMenu::item { padding: 7px 20px; border: 1px solid transparent; margin: 2px 0px; }"
- "QMenu::item:selected { background: rgba(180, 180, 180, 100); }");
+ "QMenu { color: black; background-color: white; margin: 0px;}"
+ "QMenu::item { color: black; padding: 7px 20px; border: 1px solid transparent; margin: 2px 0px; }"
+ "QMenu::item:selected { color: black; background: rgba(180, 180, 180, 100); }");
};
protected: