summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/components/chatter/chatter.scss
blob: d722e03b93bf1dd577927f7ce93e318dd7f148fc (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------

.o_Chatter {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: map-get($sizes, 100);
}

.o_Chatter_composer {
    border-bottom: $border-width solid;

    &.o-bordered {
        border-left: $border-width solid;
        border-right: $border-width solid;
    }
}

.o_Chatter_scrollPanel {
    overflow-y: auto;
}

// ------------------------------------------------------------------
// Style
// ------------------------------------------------------------------

.o_Chatter {
    background-color: white;
    border-color: $border-color;
}

.o_Chatter_composer {
    border-bottom-color: $border-color;

    &.o-bordered {
        border-left-color: $border-color;
        border-right-color: $border-color;
    }
}