blob: bfc201afc7a37e8e6679eeabeec4f2529a15e186 (
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
|
/*!
* File description page
*/
div.mw-filepage-resolutioninfo {
font-size: smaller;
}
/*
* File histories
*/
h2#filehistory {
clear: both;
}
table.filehistory th,
table.filehistory td {
vertical-align: top;
}
table.filehistory th {
text-align: left;
}
table.filehistory td.mw-imagepage-filesize,
table.filehistory th.mw-imagepage-filesize {
white-space: nowrap;
}
table.filehistory td.filehistory-selected {
font-weight: bold;
}
/*
* Add a checkered background image on hover for file
* description pages. (bug 26470)
*/
.filehistory a img,
#file img:hover {
/* @embed */
background: white url(images/checker.png) repeat;
}
/*
* filetoc
*/
ul#filetoc {
text-align: center;
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
padding: 5px;
font-size: 95%;
margin-bottom: 0.5em;
margin-left: 0;
margin-right: 0;
}
#filetoc li {
display: inline;
list-style-type: none;
padding-right: 2em;
}
/*
* Shared images hint
*/
#shared-image-dup,
#shared-image-conflict {
font-style: italic;
}
|