blob: dfe281aed2d5de7039b9d15ff73e5a40b5beadeb (
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
|
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------
.o_AttachmentList {
display: flex;
flex-flow: column;
justify-content: flex-start;
}
/* Avoid overflow of long attachment text */
.o_AttachmentList_attachment {
margin-bottom: map-get($spacers, 1);
margin-top: map-get($spacers, 1);
margin-inline-end: map-get($spacers, 1);
margin-inline-start: map-get($spacers, 0);
max-width: 100%;
}
.o_AttachmentList_partialList {
display: flex;
flex: 1;
flex-flow: wrap;
}
.o_AttachmentList_partialListNonImages {
margin: map-get($spacers, 1);
justify-content: flex-start;
}
|