mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
88609aff7a
--HG-- rename : toolkit/themes/gnomestripe/mozapps/plugins/pluginGeneric-16.png => toolkit/themes/gnomestripe/mozapps/plugins/pluginBlocked-16.png rename : toolkit/themes/gnomestripe/mozapps/plugins/pluginGeneric.png => toolkit/themes/gnomestripe/mozapps/plugins/pluginDisabled.png rename : toolkit/themes/pinstripe/mozapps/plugins/pluginGeneric-16.png => toolkit/themes/pinstripe/mozapps/plugins/pluginBlocked-16.png rename : toolkit/themes/pinstripe/mozapps/plugins/pluginGeneric.png => toolkit/themes/pinstripe/mozapps/plugins/pluginDisabled.png rename : toolkit/themes/winstripe/mozapps/plugins/pluginGeneric-16-aero.png => toolkit/themes/winstripe/mozapps/plugins/pluginBlocked-16-aero.png rename : toolkit/themes/winstripe/mozapps/plugins/pluginGeneric-16.png => toolkit/themes/winstripe/mozapps/plugins/pluginBlocked-16.png rename : toolkit/themes/winstripe/mozapps/plugins/pluginGeneric-aero.png => toolkit/themes/winstripe/mozapps/plugins/pluginDisabled-aero.png rename : toolkit/themes/winstripe/mozapps/plugins/pluginGeneric.png => toolkit/themes/winstripe/mozapps/plugins/pluginDisabled.png
69 lines
1.4 KiB
CSS
69 lines
1.4 KiB
CSS
/*
|
|
* This file's style only applies to broken objects, not the rest
|
|
* of the page.
|
|
*/
|
|
|
|
@namespace html url(http://www.w3.org/1999/xhtml);
|
|
|
|
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;
|
|
}
|
|
|
|
html|object > *|*,
|
|
html|embed > *|*,
|
|
html|applet > *|* {
|
|
width: inherit;
|
|
height: inherit;
|
|
}
|
|
|
|
html|a, html|div {
|
|
display: inline-block;
|
|
/* overflow:hidden makes baseline vertical-alignment act like plugins */
|
|
overflow: hidden;
|
|
vertical-align: inherit;
|
|
border: 1px outset;
|
|
padding: 5px;
|
|
font-size: 12px;
|
|
font-family: sans-serif;
|
|
background: white;
|
|
-moz-user-select: none;
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
vbox {
|
|
width: inherit;
|
|
height: inherit;
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
#missingPluginPlaceholder {
|
|
list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png);
|
|
}
|
|
|
|
#disabledPluginPlaceholder {
|
|
list-style-image: url(chrome://mozapps/skin/plugins/pluginDisabled.png);
|
|
}
|
|
|
|
#blockedPluginPlaceholder {
|
|
list-style-image: url(chrome://mozapps/skin/plugins/pluginBlocked.png);
|
|
}
|
|
|
|
#missingPluginPlaceholder,
|
|
#disabledPluginPlaceholder,
|
|
#blockedPluginPlaceholder {
|
|
display: block;
|
|
border: 0px;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|