summaryrefslogtreecommitdiff
path: root/web_notify/static/src/scss/webclient.scss
blob: 82f3c1544bbec68ff5e0c1ae0756b8c48dca25d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.o_notification_manager {
    .o_notification {
        &.o_success {
            color: white;
            background-color: theme-color("success");
        }
        &.o_danger {
            color: white;
            background-color: theme-color("danger");
        }
        &.o_warning {
            color: white;
            background-color: theme-color("warning");
        }
        &.o_info {
            color: white;
            background-color: theme-color("info");
        }
        &.o_default {
            color: black;
            background-color: theme-color("default");
        }
    }
}