Skip to content
Snippets Groups Projects
Commit 4a026b15 authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Be explicit about the text color on the context menu

[ci skip]
parent af80c251
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,6 @@ message(STATUS "Version: ${PROJECT_VERSION}")
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
-std=c++11 \
-Wall \
-Wextra \
-Werror \
......
......@@ -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:
......
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