summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/style.css
blob: dca38eeb23927f5a853467d2ca4f9abd381d4550 (plain) (blame)
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
.table {
    margin-top: 20px;
}

.scrollingTable {
    height: 500px;
    overflow: auto;
}

/* vcenter .label in table cell */
td > .label {
    display: inline-block;
    margin: 2px 0;
}

/* lists in tree view: hide bullet points, first entry bold, ... */
.tree-container ul {
    list-style-type: none;
}

.tree-container > ul {
    display: inline-block;
    width: 100%;
    padding: 0;
}

.tree-container > ul > li > div > label {
    font-weight: bold;
}

/* number of columns in tree view depending on screen size */
.tree-container {
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .tree-container {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .tree-container {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

.btn-group-muted > button {
    color: #aaa;
}

h1 span.glyphicon {
    top: 9px;
}