details: https://code.tryton.org/tryton/commit/d6e959a65a3f
branch: default
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
diffstat:
sao/src/sao.less | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diffs (32 lines):
diff -r 3bf40f27c83c -r d6e959a65a3f sao/src/sao.less
--- a/sao/src/sao.less Fri Apr 24 23:02:57 2026 +0200
+++ b/sao/src/sao.less Thu May 21 11:05:05 2026 +0200
@@ -441,6 +441,9 @@
}
ul.notification-menu {
+ background-color: @body-bg;
+ color: @text-color;
+
@media (min-width: @grid-float-breakpoint) {
width: 320px;
}
@@ -453,6 +456,7 @@
}
> a {
+ color: @text-color;
display: flex;
padding: 3px 10px;
@@ -489,6 +493,10 @@
}
}
}
+
+ > li.divider {
+ background-color: @dropdown-divider-bg;
+ }
}
}