details:   https://code.tryton.org/tryton/commit/811a72d02b82
branch:    8.0
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 4617b09a35ac -r 811a72d02b82 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
@@ -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;
+        }
     }
 }
 

Reply via email to