Skip to content
Snippets Groups Projects
Commit 7f0bc2ea authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

callactionbar: homogenize menu item color

Change-Id: I2ce50289386e66db316773a8d8af8b47b170219f
Gitlab: #411
parent 30f9d446
No related branches found
No related tags found
No related merge requests found
......@@ -425,10 +425,10 @@ Control {
implicitHeight: implicitWidth
radius: type === HalfPill.None ? 0 : 5
color: overflowButton.down ?
"#80aaaaaa" :
"#c4777777":
overflowButton.hovered ?
"#80777777" :
"#80444444"
"#c4444444" :
"#c4272727"
type: {
if (overflowItemListView.count ||
urgentOverflowListView.count ||
......
......@@ -59,8 +59,11 @@ ItemDelegate {
color: {
if (supplimentaryBackground.visible)
return "#c4272727"
return wrapper.down ? "#c4777777" : wrapper.hovered
&& !menu.hovered ? "#c4444444" : "#c4272727"
return wrapper.down ?
"#c4777777" :
(wrapper.hovered && !menu.hovered) ?
"#c4444444" :
"#c4272727"
}
type: {
if (isVertical) {
......
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