summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes/_activity-log.scss
blob: 19f4757eac1586b630542f0c7ae1d58bc8caeb13 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@charset 'UTF-8';

.animation--highlight {
    &:before {
        animation: highlight 1.5s ease;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        display: inline-block;
    }
}

.activity-log__table {
    border-top: 1px solid $light-gray;
    display: table;
    line-height: 1.8;
    padding: 15px 0;
    width: 100%;

    &:first-child {
        border: none;
        padding-top: 0;
    }

    > div {
        display: table-cell;
        vertical-align: top;
    }

    .activity-log__report {
        width: 80%;
    }

    .activity-log__action {
        text-align: right;
    }

    .report__platform {
        font-size: 15px;
        font-weight: 600;

        .fa {
            margin-right: 6px;
        }
    }

    .report__info {
        @include opacity(.8);
    }
}

.session-help-text {
    padding: 0 0 20px;
}