Commit | Line | Data |
---|---|---|
9099c61d RK |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
76983f4c | 4 | |
5 | /* ===== plugins.css ===================================================== | |
6 | == Styles used by the about:plugins dialog. | |
7 | ======================================================================= */ | |
8 | ||
9 | body { | |
10 | background-color: #FFFFFF; | |
11 | color: #000000; | |
4ed82c79 | 12 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
76983f4c | 13 | } |
14 | ||
15 | a:link, a:visited, a:active { | |
16 | color: #336699; | |
17 | text-decoration: underline; | |
18 | } | |
19 | ||
20 | hr { | |
21 | display: none; | |
22 | } | |
23 | ||
24 | div#outside { | |
25 | text-align: justify; | |
26 | width: 90%; | |
8caa872d RK |
27 | -moz-margin-start: 5%; |
28 | -moz-margin-end: 5%; | |
76983f4c | 29 | } |
30 | ||
31 | div#plugs { | |
32 | text-align: center; | |
33 | font-size: 24px; | |
34 | font-weight: bold; | |
35 | } | |
36 | ||
37 | div#noplugs { | |
38 | font-size: 18px; | |
39 | font-weight: bold; | |
40 | } | |
41 | ||
42 | div#findmore { | |
43 | margin-top: 2em; | |
44 | } | |
45 | ||
46 | div.plugname { | |
47 | margin-top: 2em; | |
48 | margin-bottom: 1em; | |
49 | font-size: 16px; | |
50 | text-align: left; | |
51 | font-weight: bold; | |
52 | } | |
53 | ||
54 | dl { | |
02920d2b | 55 | margin: 0px 0px 3px; |
76983f4c | 56 | } |
57 | ||
58 | span.label { | |
59 | font-style: italic; | |
60 | } | |
61 | ||
62 | table { | |
63 | background-color: #CCD0DD; | |
64 | color: #000000; | |
76983f4c | 65 | text-align: left; |
66 | width: 100%; | |
67 | border: 1px solid #9999CC; | |
68 | border-spacing: 0px; | |
69 | } | |
70 | ||
71 | th { | |
72 | text-align: center; | |
73 | background-color: #666699; | |
74 | color: #CCD0DD; | |
75 | } | |
76 | ||
77 | th + th, | |
78 | td + td { | |
6bcac19c | 79 | border-left: 1px dotted #9999CC; |
76983f4c | 80 | } |
81 | ||
82 | td { | |
83 | text-align: left; | |
84 | border-top: 1px dotted #9999CC; | |
85 | } | |
86 | ||
87 | th, td { | |
88 | padding: 3px; | |
89 | } | |
90 | ||
91 | th.type, th.suff { | |
eac11502 | 92 | width: 25%; |
76983f4c | 93 | } |
94 | ||
95 | th.desc { | |
96 | width: 50%; | |
97 | } |