summaryrefslogtreecommitdiff
path: root/addons/website/static/src/snippets/s_media_list/000.scss
blob: 6c22e3528d3466d35788a37c77db86ed80c21e84 (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

.s_media_list:not([data-vcss]) {
    .row {
        margin: $grid-gutter-width 0;
    }
    [class*="col-"] {
        padding: 0;
    }
    .s_media_list_body {
        padding: $grid-gutter-width;
        background-color: gray('white');
    }
    .s_media_list_options {
        @include o-position-absolute(auto,0,0,0);
        display: flex;
        border-top: 1px solid gray('400');
        .s_media_list_option {
            flex: 1 1 auto;
            padding: $grid-gutter-width/3 0;
            border-right: 1px solid gray('400');
            text-align: center;
            &:last-child {
                border-right: 0;
            }
        }
    }
}