details: https://code.tryton.org/tryton/commit/bb5b7f949274
branch: 7.8
user: Cédric Krier <[email protected]>
date: Thu May 21 11:05:05 2026 +0200
description:
Always use the body background for notification menu
On small screen the menu inherits of the navbar background which
reduces the
contrast with the item of the menu.
Closes #14855
(grafted from d6e959a65a3f1ec3fb65f96808df61b66bedb4cb)
diffstat:
sao/src/sao.less | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diffs (32 lines):
diff -r ec2d3c60022b -r bb5b7f949274 sao/src/sao.less
--- a/sao/src/sao.less Wed Jun 03 12:48:36 2026 +0200
+++ b/sao/src/sao.less Thu May 21 11:05:05 2026 +0200
@@ -460,6 +460,9 @@
}
ul.notification-menu {
+ background-color: @body-bg;
+ color: @text-color;
+
@media (min-width: @grid-float-breakpoint) {
width: 320px;
}
@@ -472,6 +475,7 @@
}
> a {
+ color: @text-color;
display: flex;
padding: 3px 10px;
@@ -508,6 +512,10 @@
}
}
}
+
+ > li.divider {
+ background-color: @dropdown-divider-bg;
+ }
}
}