aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_revisions.scss
blob: 619fe7e53e751c5be148ec0482dcb272ff91a1ac (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
58
59
60
61
62
63
64
65
66
67
68
.manage-revisions-modal {
    .revision-list-item {
        &.selected {
            .selectable,
            .selectable:hover {
                border-width: 2px;
                border-color: $light-blue;
            }
        }
        .selectable:hover {
            border-color: $gray;
        }
        .selectable:active {
            border-color: $light-blue;
        }
    }

    .list-editor-view-list-scroller {
        margin-top: 0px;
    }

    .list-editor-view-header {
        border-bottom: none;
        .list-editor-view-title {
            @extend .heading-5;
            text-transform: none;
            color: $blue;
        }
    }

    .list-editor-item-view-content {
        background-color: $background-gray;
    }
    .revision-list-item-fields {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        .revision-user {
            flex-basis: 50%;
            fill: transparent;
            stroke: $blue;
            .svg-icon-label {
                margin-left: 13px;
            }
        }

        .revision-date {
            flex-basis: 50%;
            text-align: right;
            @extend .body-3;
            color: $gray;
            .revision-time {
                margin-left: 5px;
            }
        }

        .revision-message {
            flex-basis: 100%;
            margin-top: 5px;
            @extend .body-2;
            .more-less {
                @extend .body-3;
                color: $blue;
                margin-left: 5px;
            }
        }
    }
}