summaryrefslogtreecommitdiffstats
path: root/toolkit/pluginproblem/content/pluginProblemContent.css
blob: cf8755635c7f6927995ab13bdb2e6b7454e4ca34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

@namespace html url(http://www.w3.org/1999/xhtml);

/* Do not change this without also changing the appropriate line in
 * browser-plugins.js (near where this file is mentioned). */
html|object:not([width]), html|object[width=""],
html|embed:not([width]), html|embed[width=""],
html|applet:not([width]), html|applet[width=""] {
  width: 240px;
}

/* Do not change this without also changing the appropriate line in
 * browser-plugins.js (near where this file is mentioned). */
html|object:not([height]), html|object[height=""],
html|embed:not([height]), html|embed[height=""],
html|applet:not([height]), html|applet[height=""] {
  height: 200px;
}

a .mainBox,
:-moz-handler-clicktoplay .mainBox,
:-moz-handler-vulnerable-updatable .mainBox,
:-moz-handler-vulnerable-no-update .mainBox,
:-moz-handler-blocked .mainBox {
  -moz-user-focus: normal;
}
a .mainBox:focus,
:-moz-handler-clicktoplay .mainBox:focus,
:-moz-handler-vulnerable-updatable .mainBox:focus,
:-moz-handler-vulnerable-no-update .mainBox:focus,
:-moz-handler-blocked .mainBox:focus {
  outline: 1px dotted;
}

.mainBox {
  width: inherit;
  height: inherit;
  overflow: hidden;
  direction: ltr;
  unicode-bidi: embed;
  /* used to block inherited properties */
  text-transform: none;
  text-indent: 0;
  cursor: initial;
  white-space: initial;
  word-spacing: initial;
  letter-spacing: initial;
  line-height: initial;
}

%ifndef MC_PALEMOON
/* Initialize the overlay with visibility:hidden to prevent flickering if
* the plugin is too small to show the overlay */
.mainBox > .hoverBox,
.mainBox > .closeIcon {
  visibility: hidden;
}

.visible > .hoverBox,
.visible > .closeIcon {
  visibility: visible;
}
%endif

.mainBox[chromedir="rtl"] {
  direction: rtl;
}

a .hoverBox,
:-moz-handler-clicktoplay .hoverBox,
:-moz-handler-vulnerable-updatable .hoverBox,
:-moz-handler-vulnerable-no-update .hoverBox {
  cursor: pointer;
}

.hoverBox > label {
  cursor: inherit;
}
.icon {
  cursor: inherit;
}

.msg {
  display: none;
}

a .msgClickToPlay,
a .msgTapToPlay,
:-moz-handler-clicktoplay .msgClickToPlay,
:-moz-handler-vulnerable-updatable .msgVulnerabilityStatus,
:-moz-handler-vulnerable-updatable .msgCheckForUpdates,
:-moz-handler-vulnerable-updatable .msgClickToPlay,
:-moz-handler-vulnerable-no-update .msgVulnerabilityStatus,
:-moz-handler-vulnerable-no-update .msgClickToPlay,
:-moz-handler-clicktoplay .msgTapToPlay,
:-moz-handler-blocked .msgBlocked,
:-moz-handler-crashed .msgCrashed {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  z-index: 9999;
}

.submitStatus[status] {
  display: -moz-box;
  -moz-box-align: center;
  -moz-box-pack: center;
  height: 160px;
}

.submitStatus[status="noReport"]   .msgNoCrashReport,
.submitStatus[status="please"]     .msgPleaseSubmit,
.submitStatus[status="noSubmit"]   .msgNotSubmitted,
.submitStatus[status="submitting"] .msgSubmitting,
.submitStatus[status="success"]    .msgSubmitted,
.submitStatus[status="failed"]     .msgSubmitFailed {
  display: block;
}