-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
67 lines (55 loc) · 1.38 KB
/
styles.css
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
.mod_groupselect .mygroup,
#page-mod-groupselect-view .me {
font-weight: bold;
}
.mod_groupselect .membershidden {
color:#AAAAAA;
}
.mod_groupselect .maxlimitreached {
color:#AAAAAA;
}
.mod_groupselect .export_url {
color: red;
}
.mod_groupselect .edit, .mod_groupselect .text_to_html, .mod_groupselect td {
/*word-wrap:break-word !important;*/
word-break: break-all !important;
}
.mod_groupselect table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"
}
/*fix hyphens in table for narrow views*/
.mod_groupselect .groupselect-table {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
/*fix width and wrap for groupselect table*/
.mod_groupselect .groupselect-table .lastcol input[type="submit"],
.mod_groupselect .groupselect-table .lastcol input[type="submit"]:first-child{
white-space: pre-wrap;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
/*fix button width*/
min-width: 144px;
}
.mod_groupselect .c3 span, .mod_groupselect .c3 a {
white-space: nowrap;
}
.mod_groupselect td.cell.c3 {
min-width: 185px;
max-width: 200px;
width: auto;
}
.mod_groupselect .c3 a img {
margin-top: 4px;
}
.mod_groupselect tr div{
word-break: normal;
}
.mod_groupselect th {
white-space: nowrap;
}