update both themes for toolkit windows theme changes in Mozilla 24 cycle
[themes.git] / EarlyBlue / mozapps / plugins / pluginProblem.css
... / ...
CommitLineData
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/. */
4
5@namespace html url(http://www.w3.org/1999/xhtml);
6
7/* These styles affect only the bound element, not other page content. */
8
9.mainBox {
10 text-align: center;
11 display: table;
12 width: 100%;
13 height: 100%;
14 background-color: #CCD0DD;
15 color: #000000;
16 -moz-user-select: none;
17 position: relative;
18}
19
20.hoverBox {
21 display: table-cell;
22 -moz-box-sizing: border-box;
23 padding: 5px;
24 vertical-align: middle;
25 width: 100%;
26 height: 100%;
27}
28:-moz-handler-vulnerable-updatable .hoverBox:active,
29:-moz-handler-vulnerable-no-update .hoverBox:active,
30:-moz-handler-clicktoplay .hoverBox:active {
31 background-color: #CCCCCC;
32}
33
34:-moz-handler-vulnerable-updatable .hoverBox,
35:-moz-handler-vulnerable-no-update .hoverBox,
36:-moz-handler-blocked .hoverBox,
37:-moz-handler-crashed .hoverBox {
38}
39
40html|a {
41 color: #000000;
42}
43
44.icon {
45 width: 48px;
46 height: 48px;
47 background-position: center;
48 background-repeat: no-repeat;
49 border: none;
50 background-color: transparent;
51 -moz-user-focus: ignore;
52 margin-bottom: 6px;
53}
54
55:-moz-type-unsupported .icon,
56:-moz-type-unsupported-platform .icon {
57 background-image: url("chrome://mozapps/skin/plugins/contentPluginMissing.png");
58}
59:-moz-type-unsupported .icon[installable] {
60 background-image: url("chrome://mozapps/skin/plugins/contentPluginDownload.png");
61}
62:-moz-handler-vulnerable-updatable .icon,
63:-moz-handler-vulnerable-no-update .icon {
64 background-image: url("chrome://mozapps/skin/plugins/contentPluginBlocked.png");
65 -moz-user-focus: normal;
66}
67:-moz-handler-blocked .icon {
68 background-image: url("chrome://mozapps/skin/plugins/contentPluginBlocked.png");
69}
70:-moz-handler-clicktoplay .icon {
71 background-image: url("chrome://mozapps/skin/plugins/contentPluginActivate.png");
72 -moz-user-focus: normal;
73}
74:-moz-handler-disabled .icon {
75 background-image: url("chrome://mozapps/skin/plugins/contentPluginDisabled.png");
76}
77:-moz-handler-crashed .icon {
78 background-image: url("chrome://mozapps/skin/plugins/contentPluginCrashed.png");
79}
80
81.throbber {
82 padding-left: 16px; /* width of the background image */
83 background: url("chrome://global/skin/icons/loading.gif") no-repeat;
84 margin-left: 5px;
85}
86
87@media not all and (-moz-touch-enabled) {
88 :-moz-handler-clicktoplay .msgTapToPlay {
89 display: none;
90 }
91}
92
93@media (-moz-touch-enabled) {
94 :-moz-handler-clicktoplay .msgClickToPlay {
95 display: none;
96 }
97}
98
99.submitStatus div {
100 min-height: 19px; /* height of biggest line (with throbber) */
101}
102
103.submitComment {
104 width: 340px;
105 height: 70px;
106 padding: 5px;
107 border: none;
108 border-radius: 5px;
109 resize: none;
110 font-family: inherit;
111 font-size: inherit;
112}
113
114.submitURLOptInBox {
115 text-align: start;
116}
117
118.submitURLOptIn {
119 margin-left: -1px;
120}
121
122.mainBox[chromedir="rtl"] .submitURLOptIn {
123 margin-left: 0;
124 margin-right: -1px;
125}
126
127.submitButtonBox {
128 margin-top: 7px;
129}
130
131.submitButton {
132 float: right;
133}
134
135.mainBox[chromedir="rtl"] .submitButton {
136 float: left;
137}
138
139.helpIcon {
140 float: left;
141 display: inline-block;
142 min-width: 16px;
143 min-height: 16px;
144 background: url("chrome://mozapps/skin/plugins/pluginHelp-16.png") no-repeat;
145 cursor: pointer;
146 float: left;
147}
148
149.mainBox[chromedir="rtl"] .helpIcon {
150 float: right;
151}
152
153.closeIcon {
154 display: block;
155 position: absolute;
156 width: 16px;
157 height: 16px;
158 top: 4px;
159 right: 4px;
160 border: none;
161 background-color: transparent;
162 background-image: url("chrome://mozapps/skin/plugins/contentPluginClose.png");
163 background-repeat: no-repeat;
164}
165
166.mainBox[chromedir="rtl"] .closeIcon {
167 right: auto;
168 left: 4px;
169}
170
171.action-link {
172 display: inline-block;
173 border-radius: 10px;
174 background-color: #9999CC;
175 padding: 2px 8px;
176 margin-top: 7px;
177 text-decoration: none;
178}
179.action-link:active {
180 background-color: #666699;
181}
182
183:-moz-handler-vulnerable-updatable .action-link {
184 background-color: #CCCC60;
185}
186:-moz-handler-vulnerable-updatable .action-link:active {
187 background-color: #AAAA40;
188}