blob: de8278725869f62a37d6a9a870efb5e298d2e155 (
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
67
68
69
70
|
/*!
* Styling for Special:Version
*/
.mw-version-ext-name,
.mw-version-library-name {
font-weight: bold;
}
.mw-version-ext-vcs-timestamp {
display: block;
}
.mw-body-content thead {
font-size: 0.9em;
}
.mw-version-credits {
column-width: 18em;
-moz-column-width: 18em;
-webkit-column-width: 18em;
}
.mw-version-credits ul {
margin-top: 0;
margin-bottom: 0;
}
.mw-version-license-info strong {
font-weight: normal;
}
.mw-version-license-info em {
font-style: normal;
}
.mw-installed-software {
width: 100%;
table-layout: fixed;
word-break: break-word;
td,
th {
vertical-align: top;
}
th:nth-child( 1 ) {
/* Name */
width: 13em;
}
th:nth-child( 2 ) {
/* Version */
width: 13em;
}
th:nth-child( 3 ) {
/* License */
width: 6em;
}
th:nth-child( 4 ) {
/* Description */
width: 50%;
}
th:nth-child( 5 ) {
/* Authors */
width: 50%;
}
}
|