home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / linux / mozilla-installer_linux / xpi / browser.xpi / bin / res / quirk.css < prev    next >
Cascading Style Sheet File  |  2001-11-20  |  9KB  |  341 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Netscape Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/NPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is 
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the NPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the NPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. @namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
  38.  
  39. /* Quirk: input images have a blue border (b=28010) */ 
  40.  
  41. /* default border */
  42. input[type=image] {
  43.   border: 2px solid blue;
  44. }
  45.  
  46. /* border when focused -- only change style to dotted */
  47. input[type=image]:focused {
  48.   border-style: dotted;
  49. }
  50.  
  51. /* border when focused -- only change color to gray */
  52. input[type=image][disabled] {
  53.   border-color: GrayText;
  54. }
  55.  
  56.  
  57. /* Quirk: make orphaned LIs have inside bullet (b=1049) */
  58.  
  59. /* force inside position for orphaned lis */
  60. li {
  61.   list-style-position: inside; 
  62. }
  63.  
  64. /* restore outside position for lists inside LIs */
  65. li ul, li ol, li dir, li menu { 
  66.   list-style-position: outside; 
  67. }
  68.  
  69. /* undo previous two rules for properly nested lists */
  70.   ul ul,   ul ol,   ul dir,   ul menu,   ul li,
  71.   ol ul,   ol ol,   ol dir,   ol menu,   ol li,
  72.  dir ul,  dir ol,  dir dir,  dir menu,  dir li,
  73. menu ul, menu ol, menu dir, menu menu, menu li {
  74.   list-style-position: inherit;
  75. }
  76.  
  77.  
  78. /* Quirk: ensure that we get proper padding if the very first 
  79.  * node in an LI is another UL or OL. This is an ugly way to
  80.  * fix the problem, because it extends the LI up into what
  81.  * would otherwise appear to be the ULs space. (b=38832) */
  82. /* Note: this fix will fail once we implement marker box 
  83.  * alignment correctly. */
  84. li > ul:first-node,
  85. li > ol:first-node {
  86.   padding-top: 1em;
  87. }
  88.  
  89. /* Quirk: prevent bullet from resizing with the list item
  90.  *   see bug 97351
  91.  */
  92. li:-moz-list-bullet {
  93.   font-size: -moz-initial;
  94. }
  95.  
  96. /* Quirk: cut off all font inheritance in tables and captions except for family. */
  97. table, caption {
  98.   font-size: -moz-initial;
  99.   font-weight: -moz-initial;
  100.   font-style: -moz-initial;
  101.   font-variant: -moz-initial;
  102. }
  103.  
  104. table {
  105.   text-align: -moz-initial;
  106.   white-space: normal; /* compatible with IE & spec */
  107.   line-height: normal;
  108. }
  109.  
  110. /* Quirk: make sure backgrounds are inherited in tables */
  111. td, th, tr {
  112.   background: inherit;
  113. }
  114.  
  115. /* Quirk: collapse top margin of BODY and TD and bottom margin of TD */
  116.  
  117. /*
  118.  * While it may seem simpler to use :first-node and :last-node without
  119.  * tags, it's slower, since we have to do the :first-node or :last-node
  120.  * check on every single element in the document.  If we list all the
  121.  * element names for which the UA stylesheet specifies a margin, the
  122.  * selectors will be hashed in the RuleHash and things will be much more
  123.  * efficient.
  124.  */
  125.  
  126. body > form:first-node, td > form:first-node,
  127. body > p:first-node, td > p:first-node,
  128. body > dl:first-node, td > dl:first-node,
  129. body > multicol:first-node, td > multicol:first-node,
  130. body > blockquote:first-node, td > blockquote:first-node,
  131. body > h1:first-node, td > h1:first-node,
  132. body > h2:first-node, td > h2:first-node,
  133. body > h3:first-node, td > h3:first-node,
  134. body > h4:first-node, td > h4:first-node,
  135. body > h5:first-node, td > h5:first-node,
  136. body > h6:first-node, td > h6:first-node,
  137. body > listing:first-node, td > listing:first-node,
  138. body > plaintext:first-node, td > plaintext:first-node,
  139. body > xmp:first-node, td > xmp:first-node,
  140. body > pre:first-node, td > pre:first-node,
  141. body > ul:first-node, td > ul:first-node,
  142. body > menu:first-node, td > menu:first-node,
  143. body > dir:first-node, td > dir:first-node,
  144. body > ol:first-node, td > ol:first-node {
  145.   margin-top: 0;
  146. }
  147.  
  148. td > form:last-node,
  149. td > p:last-node,
  150. td > dl:last-node,
  151. td > multicol:last-node,
  152. td > blockquote:last-node,
  153. td > h1:last-node,
  154. td > h2:last-node,
  155. td > h3:last-node,
  156. td > h4:last-node,
  157. td > h5:last-node,
  158. td > h6:last-node,
  159. td > listing:last-node,
  160. td > plaintext:last-node,
  161. td > xmp:last-node,
  162. td > pre:last-node,
  163. td > ul:last-node,
  164. td > menu:last-node,
  165. td > dir:last-node,
  166. td > ol:last-node {
  167.   margin-bottom: 0;
  168. }
  169.  
  170. /* Similar as above, but for empty elements
  171.  *  collapse the bottom or top margins of empty elements
  172.  *  - see bug 97361
  173.  */
  174. body > form:empty:first-node, td > form:empty:first-node,
  175. body > p:empty:first-node, td > p:empty:first-node,
  176. body > dl:empty:first-node, td > dl:empty:first-node,
  177. body > multicol:empty:first-node, td > multicol:empty:first-node,
  178. body > blockquote:empty:first-node, td > blockquote:empty:first-node,
  179. body > h1:empty:first-node, td > h1:empty:first-node,
  180. body > h2:empty:first-node, td > h2:empty:first-node,
  181. body > h3:empty:first-node, td > h3:empty:first-node,
  182. body > h4:empty:first-node, td > h4:empty:first-node,
  183. body > h5:empty:first-node, td > h5:empty:first-node,
  184. body > h6:empty:first-node, td > h6:empty:first-node,
  185. body > listing:empty:first-node, td > listing:empty:first-node,
  186. body > plaintext:empty:first-node, td > plaintext:empty:first-node,
  187. body > xmp:empty:first-node, td > xmp:empty:first-node,
  188. body > pre:empty:first-node, td > pre:empty:first-node,
  189. body > ul:empty:first-node, td > ul:empty:first-node,
  190. body > menu:empty:first-node, td > menu:empty:first-node,
  191. body > dir:empty:first-node, td > dir:empty:first-node,
  192. body > ol:empty:first-node, td > ol:empty:first-node {
  193.   margin-bottom: 0;
  194. }
  195.  
  196. td > form:empty:last-node,
  197. td > p:empty:last-node,
  198. td > dl:empty:last-node,
  199. td > multicol:empty:last-node,
  200. td > blockquote:empty:last-node,
  201. td > h1:empty:last-node,
  202. td > h2:empty:last-node,
  203. td > h3:empty:last-node,
  204. td > h4:empty:last-node,
  205. td > h5:empty:last-node,
  206. td > h6:empty:last-node,
  207. td > listing:empty:last-node,
  208. td > plaintext:empty:last-node,
  209. td > xmp:empty:last-node,
  210. td > pre:empty:last-node,
  211. td > ul:empty:last-node,
  212. td > menu:empty:last-node,
  213. td > dir:empty:last-node,
  214. td > ol:empty:last-node {
  215.   margin-top: 0;
  216. }
  217.  
  218. /* Quirk: support the ways of making PRE have wrapping */
  219. pre[wrap], pre[cols], pre[width] {
  220.   white-space: -moz-pre-wrap;
  221. }
  222.  
  223.  
  224. /* Temporary - Test of full time Standard mode for forms Bug 91602 
  225. input[type="text"] {
  226.   padding: 1px 0 0 0;
  227.  
  228. input[type="radio"] {
  229.   margin: 2px 5px 4px 3px;
  230.   vertical-align: bottom;
  231. }
  232.  
  233. input[type="checkbox"] {
  234.   margin: 3px 4px 3px 3px;
  235.   vertical-align: bottom;
  236. }
  237.  
  238. button, 
  239. input[type="reset"],
  240. input[type="button"],
  241. input[type="submit"] { 
  242.   vertical-align: bottom;
  243. }
  244.  
  245. td select[size] {
  246.   margin-top: 0px;
  247.   margin-bottom: 1px;
  248. }
  249.  
  250. td select, td select[size="1"] {
  251.   margin-top: 2px;
  252.   margin-bottom: 2px;
  253. }
  254.  
  255. td input[type="text"], input[type="password"] {
  256.   margin-top: 1px;
  257.   margin-bottom: 1px;
  258. }
  259.  
  260. td input[type="checkbox"],
  261. td input[type="radio"] {
  262.   margin-bottom: 1px;
  263. }
  264.  
  265. td textarea {
  266.   margin-top: 1px;
  267.   margin-bottom: 2px;
  268. }
  269. */
  270.  
  271. /* Quirk: HRs avoid floats (b=18754) */
  272.  
  273. hr {
  274.   display: inline;
  275.   -moz-box-sizing: border-box;
  276.   margin: 0 0.1% 0 0.1%; /* Mmm! Hack-on-a-hack for bug 81776 */
  277. }
  278.  
  279. hr:before {
  280.   white-space: pre;
  281.   content: "\A";
  282. }
  283.  
  284. hr:after {
  285.   white-space: pre;
  286.   content: "\A";
  287. }
  288.  
  289. /* Quirk: DD not in DL has text-indent instead of margin (b=5119) */
  290.  
  291. :not(dl) > dd {
  292.   display: inline;
  293.   margin: 0;
  294. }
  295.  
  296. :not(dl) > dd:before {
  297.   display: inline;
  298.   white-space: pre;
  299.   font-size: 1px;
  300.   line-height: 0;
  301.   content: "\A  ";
  302.   margin-right: 40px;
  303. }
  304.  
  305. /* quirk to indent nested DL elements (b=8749) */
  306. dl > dl {
  307.   display: block;
  308.   margin-left: 40px;
  309. }
  310.  
  311. /* Quirk: MAP acts like an inline, not a block */
  312. map {
  313.   display: inline;
  314. }
  315.  
  316. /* Quirk: Make floated images have a margin  (b=58899) */
  317. img[align=left] {
  318.   margin-right: 3px;
  319. }
  320.  
  321. img[align=right] {
  322.   margin-left: 3px;
  323. }
  324.  
  325. /*
  326.  * XXX This is a potential performance problem.  This should not be
  327.  * using an attribute!
  328.  */
  329.  
  330. /* Quirk: Make sure that the residual style tags' size info. 
  331.  * does not take precedence over heading tags' size. (b=77352)
  332.  * Note: This special attribute is set only for a residual 
  333.  * style tag within a heading tag.
  334.  */
  335. *[_moz-rs-heading] { 
  336.   font-size: inherit !important; 
  337. }
  338.  
  339.  
  340.