Merge branch 'master' of linz:/srv/git/themes
[themes.git] / EarlyBlue / mozapps / plugins / pluginProblem.css
... / ...
CommitLineData
1@namespace html url(http://www.w3.org/1999/xhtml);
2
3/* These styles affect only the bound element, not other page content. */
4
5.mainBox {
6 text-align: center;
7 background-color: #CCD0DD;
8 color: #000000;
9 border-radius: 12px;
10 /* recessed effect with 'disabled' shadow */
11 box-shadow: inset 0 1px 5px #808080;
12 padding: 5px;
13 -moz-user-select: none;
14}
15
16html|a {
17 color: #000000;
18}
19
20.icon {
21 min-width: 48px;
22 min-height: 48px;
23 background-position: center;
24 background-repeat: no-repeat;
25}
26:-moz-type-unsupported .icon,
27:-moz-type-unsupported-platform .icon {
28 background-image: url("chrome://mozapps/skin/plugins/contentPluginMissing.png");
29}
30:-moz-type-unsupported .icon[status="ready"] {
31 background-image: url("chrome://mozapps/skin/plugins/contentPluginDownload.png");
32}
33:-moz-handler-clicktoplay .icon {
34 background-image: url("chrome://mozapps/skin/plugins/contentPluginClickToPlay.png");
35}
36:-moz-handler-disabled .icon {
37 background-image: url("chrome://mozapps/skin/plugins/contentPluginDisabled.png");
38}
39:-moz-handler-blocked .icon {
40 background-image: url("chrome://mozapps/skin/plugins/contentPluginBlocked.png");
41}
42:-moz-handler-crashed .icon {
43 background-image: url("chrome://mozapps/skin/plugins/contentPluginCrashed.png");
44}
45
46.throbber {
47 padding-left: 16px; /* width of the background image */
48 background: url("chrome://global/skin/icons/loading.gif") no-repeat;
49 margin-left: 5px;
50}
51
52.msg {
53 font-size: 12px;
54 cursor: default;
55}
56
57:-moz-handler-clicktoplay,
58.msgClickToPlay {
59 cursor: pointer;
60}
61
62@media not all and (-moz-touch-enabled) {
63 :-moz-handler-clicktoplay .msgTapToPlay {
64 display: none;
65 }
66}
67
68@media (-moz-touch-enabled) {
69 :-moz-handler-clicktoplay .msgClickToPlay {
70 display: none;
71 }
72}
73
74.submitStatus div {
75 min-height: 19px; /* height of biggest line (with throbber) */
76}
77
78.msgBottomLinks {
79 padding-left: 2px;
80 padding-right: 2px;
81}
82
83.helpIcon {
84 float: left;
85 display: inline-block;
86 min-width: 16px;
87 min-height: 16px;
88 background: url("chrome://mozapps/skin/plugins/pluginHelp-16.png") no-repeat;
89}