aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/workspace/tabs/activity-log/activity-log.less
blob: 24f83ec50329fb8c6535092b99ca622c2b7677b5 (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
69
70
71
72
73
74
75
76
77
78
79
80
.activity-log {
    .title-wrapper {
        display: flex;
        justify-content: flex-end;
    }

    .table-container-flex .table .body .scrollbar-container {
        max-height: 448px;
    }

    .view-mode {
        background-color: @main_color_p;
    }

    .table{
        height: 490px;
        margin-bottom: 0;
    }

    .table-container-flex {
        margin-top: 10px;

        .flex-item:nth-child(1) { width: 200px; }
        .flex-item:nth-child(2) { flex-grow: 20; }
        .flex-item:nth-child(3) { flex-grow: 30; }
        .flex-item:nth-child(4) { flex-grow: 20; }
        .flex-item:nth-child(5) { width: 80px; }

        .success {
            position: absolute;
            top: 11px;
            right: 20px;
            .sprite-new;
            .sdc-success;
        }

        .error {
            position: absolute;
            top: 11px;
            right: 20px;
            .sprite-new;
            .sdc-error;
        }

    }

    .data-row {
        position: relative;
    }

    .top-search {
        float: right;
        position: relative;

        input.search-text {
            .border-radius(2px);
            width: 245px;
            height: 32px;
            line-height: 32px;
            border: 1px solid @main_color_o;
            margin: 0;
            outline: none;
            text-indent: 10px;

            &::-webkit-input-placeholder { font-style: italic; } /* Safari, Chrome and Opera */
            &:-moz-placeholder { font-style: italic; } /* Firefox 18- */
            &::-moz-placeholder { font-style: italic; } /* Firefox 19+ */
            &:-ms-input-placeholder { font-style: italic; } /* IE 10+ */
            &:-ms-input-placeholder { font-style: italic; } /* Edge */
        }

        .magnification {
            position: absolute;
            top: 10px;
            right: 10px;
        }

    }

}