gecko/toolkit/themes/pinstripe/mozapps/plugins/pluginProblem.css

84 lines
2.4 KiB
CSS
Raw Normal View History

@namespace html url(http://www.w3.org/1999/xhtml);
/* These styles affect only the bound element, not other page content. */
html|object:not([width]), html|object[width=""],
html|embed:not([width]), html|embed[width=""],
html|applet:not([width]), html|applet[width=""] {
width: 240px;
}
html|object:not([height]), html|object[height=""],
html|embed:not([height]), html|embed[height=""],
html|applet:not([height]), html|applet[height=""] {
height: 200px;
}
.mainBox {
width: inherit;
height: inherit;
overflow: hidden;
text-align: center;
background-image: -moz-repeating-linear-gradient(-45deg,
rgba(65, 65, 65, 0.8),
rgba(65, 65, 65, 0.8) 20px,
rgba(69, 69, 69, 0.8) 20px,
rgba(69, 69, 69, 0.8) 40px);
-moz-border-radius: 12px;
/* recessed effect with dark inner shadow and lightened bottom */
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.8),
0 1px 0 rgba(255,255,255,0.2);
padding: 5px;
-moz-user-select: none;
}
:-moz-type-unsupported .mainBox,
:-moz-handler-disabled .mainBox,
:-moz-handler-blocked .mainBox {
-moz-user-focus: normal;
}
:-moz-type-unsupported .mainBox:focus,
:-moz-handler-disabled .mainBox:focus,
:-moz-handler-blocked .mainBox:focus {
outline: 1px dotted;
}
.icon {
min-width: 48px;
min-height: 48px;
background-position: center;
background-repeat: no-repeat;
}
:-moz-type-unsupported .icon {
background-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png);
}
:-moz-handler-disabled .icon {
background-image: url(chrome://mozapps/skin/plugins/pluginDisabled.png);
}
:-moz-handler-blocked .icon {
background-image: url(chrome://mozapps/skin/plugins/pluginBlocked.png);
}
:-moz-handler-crashed .icon {
background-image: url(chrome://mozapps/skin/plugins/pluginCrashed.png);
}
.msg {
display: none;
color: white;
font: 12px sans-serif;
font-weight: bold;
cursor: default;
text-shadow: rgba(0,0,0,0.8) 0 0 5px;
}
:-moz-type-unsupported .msgUnsupported,
:-moz-handler-disabled .msgDisabled,
:-moz-handler-blocked .msgBlocked,
:-moz-handler-crashed .msgCrashed,
:-moz-handler-crashed .msgReload {
display: block;
}
html|A {
color: white;
}