aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets/less/statusgroups.less
blob: 278f632e6a1ed7012a6c66ca688b2b5acc4f71df (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
81
82
83
84
85
86
87
88
section.course-statusgroups {
    article {
        header {
            h1 {
                a {
                    display: inline;

                    &.no-contentbox-link::before {
                        background-image: none;
                        width: 0;
                    }

                    img {
                        vertical-align: bottom;
                    }
                }

            }
        }

        section {
            border-left: 1px solid @content-color-20;
            border-right: 1px solid @content-color-20;

            table {
                td.memberactions {
                    text-align: right;
                }

                thead {
                    tr th {
                        background-color: @content-color-20;
                    }
                }

                tbody {
                    tr td {
                        span.member-invisible {
                            font-style: italic;
                            color: @light-gray-color;
                        }
                    }
                }

                tfoot {
                    tr td {
                        background-color: @content-color-20;
                        padding-left: 5px;
                        padding-right: 0;
                    }
                }
            }

            div.statusgroup-no-members {
                font-style: italic;
                margin: 15px;
            }
        }

        &.draggable.open {
            background-color: @white;
        }

    }

    footer {
        background-color: @content-color-20;
        border-top: 1px solid @black;
        font-size: medium;
        padding: 5px;
        padding-left: 18px;
        text-align: left;
    }

    &.ui-sortable {
        article.ui-sortable-placeholder {
            border-style: dotted;
        }

        .sg-sortable-handle {
            cursor: move;
            background-image: url("@{image-path}/anfasser_24.png");
            background-position: 3px center;
            background-repeat: no-repeat;
            width: 12px;
        }
    }
}