try to make mac menubar not bring up an empty toolbar
[themes.git] / LCARStrek / global / plugins.css
CommitLineData
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/. */
3d6dd546 4
5/* ===== plugins.css =====================================================
6 == Styles used by the about:plugins dialog.
7 ======================================================================= */
8
9body {
10 background-color: #000000;
11 color: #FF9F00;
4ed82c79 12 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
3d6dd546 13}
14
15a:link, a:visited, a:active {
569543b3 16 border-radius: 3px;
3d6dd546 17 color: #FFCF00;
18 background-color: #000000;
19 text-decoration: none;
eac11502
RK
20 -moz-padding-start: 1px;
21 -moz-padding-end: 1px;
3d6dd546 22}
23
24a:hover {
25 color: #000000;
26 background-color: #FFCF00;
27}
28
29hr {
30 display: none;
31}
32
33div#outside {
eac11502
RK
34 text-align: justify;
35 width: 90%;
36 -moz-margin-start: 5%;
37 -moz-margin-end: 5%;
3d6dd546 38}
39
40div#plugs {
569543b3 41 border-radius: 15px;
3d6dd546 42 background-color: #008484;
43 color: #000000;
44 padding: 3px;
45 text-align: center;
46 font-size: 24px;
47 font-weight: bold;
48}
49
50div#noplugs {
51 color: #FF0000;
52 font-size: 18px;
53 font-weight: bold;
54}
55
56div#findmore {
57 margin-top: 2em;
58}
59
60div.plugname {
569543b3 61 border-radius: 10px;
3d6dd546 62 background-color: #E7ADE7;
63 color: #000000;
64 padding: 2px;
8caa872d 65 -moz-padding-start: 12px;
3d6dd546 66 margin-top: 2em;
67 margin-bottom: 1em;
68 font-size: 16px;
69 text-align: left;
70 font-weight: bold;
71}
72
73dl {
02920d2b 74 margin: 0px 0px 3px;
3d6dd546 75}
76
77span.label {
78 font-style: italic;
79 color: #8050B0;
80}
81
82table {
83 background-color: #000000;
84 color: #E7ADE7;
85 text-align: left;
86 width: 100%;
569543b3 87 border-radius: 10px;
3d6dd546 88 border: 1px solid #9C9FFF;
89 border-spacing: 0px;
90}
91
92th {
93 text-align: center;
94 background-color: #008484;
95 color: #FFCF00;
96}
97
98th + th,
99td + td {
6bcac19c 100 border-left: 1px dotted #9C9FFF;
3d6dd546 101}
102
103td {
104 text-align: left;
105 border-top: 1px dotted #9C9FFF;
106}
107
108th, td {
109 padding: 3px;
110}
111
eac11502 112th:first-child {
569543b3 113 border-radius: 9px 0px 0px 0px;
3d6dd546 114}
115
116th.type, th.suff {
eac11502 117 width: 25%;
3d6dd546 118}
119
120th.desc {
121 width: 50%;
122}
123
eac11502 124th:last-child {
569543b3 125 border-radius: 0px 9px 0px 0px;
eac11502 126}