Chris@0
|
1 /**
|
Chris@0
|
2 * @file
|
Chris@0
|
3 * Default style for file module.
|
Chris@0
|
4 */
|
Chris@0
|
5
|
Chris@0
|
6 /* File icons. */
|
Chris@0
|
7
|
Chris@0
|
8 .file {
|
Chris@0
|
9 display: inline-block;
|
Chris@0
|
10 min-height: 16px;
|
Chris@18
|
11 padding-left: 20px; /* LTR */
|
Chris@0
|
12 background-repeat: no-repeat;
|
Chris@0
|
13 background-position: left center; /* LTR */
|
Chris@0
|
14 }
|
Chris@0
|
15 [dir="rtl"] .file {
|
Chris@18
|
16 padding-right: 20px;
|
Chris@0
|
17 padding-left: inherit;
|
Chris@0
|
18 background-position: right center;
|
Chris@0
|
19 }
|
Chris@0
|
20 .file--general,
|
Chris@0
|
21 .file--application-octet-stream {
|
Chris@0
|
22 background-image: url(../../images/icons/application-octet-stream.png);
|
Chris@0
|
23 }
|
Chris@0
|
24 .file--package-x-generic {
|
Chris@0
|
25 background-image: url(../../images/icons/package-x-generic.png);
|
Chris@0
|
26 }
|
Chris@0
|
27 .file--x-office-spreadsheet {
|
Chris@0
|
28 background-image: url(../../images/icons/x-office-spreadsheet.png);
|
Chris@0
|
29 }
|
Chris@0
|
30 .file--x-office-document {
|
Chris@0
|
31 background-image: url(../../images/icons/x-office-document.png);
|
Chris@0
|
32 }
|
Chris@0
|
33 .file--x-office-presentation {
|
Chris@0
|
34 background-image: url(../../images/icons/x-office-presentation.png);
|
Chris@0
|
35 }
|
Chris@0
|
36 .file--text-x-script {
|
Chris@0
|
37 background-image: url(../../images/icons/text-x-script.png);
|
Chris@0
|
38 }
|
Chris@0
|
39 .file--text-html {
|
Chris@0
|
40 background-image: url(../../images/icons/text-html.png);
|
Chris@0
|
41 }
|
Chris@0
|
42 .file--text-plain {
|
Chris@0
|
43 background-image: url(../../images/icons/text-plain.png);
|
Chris@0
|
44 }
|
Chris@0
|
45 .file--application-pdf {
|
Chris@0
|
46 background-image: url(../../images/icons/application-pdf.png);
|
Chris@0
|
47 }
|
Chris@0
|
48 .file--application-x-executable {
|
Chris@0
|
49 background-image: url(../../images/icons/application-x-executable.png);
|
Chris@0
|
50 }
|
Chris@0
|
51 .file--audio {
|
Chris@0
|
52 background-image: url(../../images/icons/audio-x-generic.png);
|
Chris@0
|
53 }
|
Chris@0
|
54 .file--video {
|
Chris@0
|
55 background-image: url(../../images/icons/video-x-generic.png);
|
Chris@0
|
56 }
|
Chris@0
|
57 .file--text {
|
Chris@0
|
58 background-image: url(../../images/icons/text-x-generic.png);
|
Chris@0
|
59 }
|
Chris@0
|
60 .file--image {
|
Chris@0
|
61 background-image: url(../../images/icons/image-x-generic.png);
|
Chris@0
|
62 }
|