aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets/scss/statusgroups.scss
blob: de4e8e6305f9b39fe5cdbc3d5847f614422018ee (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
section.course-statusgroups {
    article {
        header {
            h1 {
                a {
                    display: inline;

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

                    img {
                        vertical-align: middle;
                        margin-bottom: 2px;
                    }
                }

            }
        }

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

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

                tfoot {
                    tr td {
                        padding-left: 5px;
                        padding-right: 0;
                    }
                }
            }

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

        &.draggable.open {
            background-color: var(--white);
        }

    }

    footer {
        background-color: var(--color--table-header);
        font-size: medium;
        padding: 5px 5px 5px 18px;
        text-align: left;
    }

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