mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
774 B
CSS
38 lines
774 B
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 > *|*,
|
||
|
html|embed > *|*,
|
||
|
html|applet > *|* {
|
||
|
width: inherit;
|
||
|
height: inherit;
|
||
|
}
|
||
|
|
||
|
html|a {
|
||
|
text-align: -moz-center;
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
#missingPluginPlaceholder {
|
||
|
list-style-image: url(chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png);
|
||
|
display: block;
|
||
|
border: 0px;
|
||
|
width: 32px;
|
||
|
height: 32px;
|
||
|
}
|