home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 July & August / PCWorld_2005-07-08_cd.bin / komunikace / netscape / nsb-install-8-0.exe / res / quirk.css < prev    next >
Cascading Style Sheet File  |  2004-11-25  |  12KB  |  295 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.  
  40. /* Quirk: input images have a blue border (b=28010) */ 
  41.  
  42. /* default border */
  43. input[type=image] {
  44.   border: 2px solid blue;
  45. }
  46.  
  47. /* border when focused -- only change style to dotted */
  48. input[type=image]:focus {
  49.   border-style: dotted;
  50. }
  51.  
  52. /* border when disabled -- only change color to gray */
  53. input[type=image][disabled] {
  54.   border-color: GrayText;
  55. }
  56.  
  57.  
  58. /* Quirk: make orphaned LIs have inside bullet (b=1049) */
  59.  
  60. /* force inside position for orphaned lis */
  61. li {
  62.   list-style-position: inside; 
  63. }
  64.  
  65. /* restore outside position for lists inside LIs */
  66. li ul, li ol, li dir, li menu { 
  67.   list-style-position: outside; 
  68. }
  69.  
  70. /* undo previous two rules for properly nested lists */
  71.   ul ul,   ul ol,   ul dir,   ul menu,   ul li,
  72.   ol ul,   ol ol,   ol dir,   ol menu,   ol li,
  73.  dir ul,  dir ol,  dir dir,  dir menu,  dir li,
  74. menu ul, menu ol, menu dir, menu menu, menu li {
  75.   list-style-position: inherit;
  76. }
  77.  
  78.  
  79. /* Quirk: ensure that we get proper padding if the very first 
  80.  * node in an LI is another UL or OL. This is an ugly way to
  81.  * fix the problem, because it extends the LI up into what
  82.  * would otherwise appear to be the ULs space. (b=38832) */
  83.  
  84. /* Note: this fix will fail once we implement marker box 
  85.  * alignment correctly. */
  86. li > ul:-moz-first-node,
  87. li > ol:-moz-first-node {
  88.   padding-top: 1em;
  89. }
  90.  
  91.  
  92. /* Quirk: prevent bullet from resizing with the list item
  93.  *   see bug 97351
  94.  */
  95.  
  96. li::-moz-list-bullet {
  97.   font-size: -moz-initial;
  98. }
  99.  
  100.  
  101. table {
  102.   text-align: -moz-initial;
  103.   white-space: normal; /* compatible with IE & spec */
  104.   line-height: normal;
  105.  
  106.   /* Quirk: cut off all font inheritance in tables except for family. */
  107.   font-size: -moz-initial;
  108.   font-weight: -moz-initial;
  109.   font-style: -moz-initial;
  110.   font-variant: -moz-initial;
  111. }
  112.  
  113. /* make sure backgrounds are inherited in tables  -- see bug 4510*/
  114. td, th, tr {
  115.   background: inherit;
  116. }
  117.  
  118. /* Quirk: collapse top margin of BODY and TD and bottom margin of TD */
  119.  
  120. /*
  121.  * While it may seem simpler to use :-moz-first-node and :-moz-last-node without
  122.  * tags, it's slower, since we have to do the :-moz-first-node or :-moz-last-node
  123.  * check on every single element in the document.  If we list all the
  124.  * element names for which the UA stylesheet specifies a margin, the
  125.  * selectors will be hashed in the RuleHash and things will be much more
  126.  * efficient.
  127.  */
  128. body > form:-moz-first-node, td > form:-moz-first-node, th > form:-moz-first-node,
  129. body > p:-moz-first-node, td > p:-moz-first-node, th > p:-moz-first-node,
  130. body > dl:-moz-first-node, td > dl:-moz-first-node, th > dl:-moz-first-node,
  131. body > multicol:-moz-first-node, td > multicol:-moz-first-node, th > multicol:-moz-first-node,
  132. body > blockquote:-moz-first-node, td > blockquote:-moz-first-node, th > blockquote:-moz-first-node,
  133. body > h1:-moz-first-node, td > h1:-moz-first-node, th > h1:-moz-first-node,
  134. body > h2:-moz-first-node, td > h2:-moz-first-node, th > h2:-moz-first-node,
  135. body > h3:-moz-first-node, td > h3:-moz-first-node, th > h3:-moz-first-node,
  136. body > h4:-moz-first-node, td > h4:-moz-first-node, th > h4:-moz-first-node,
  137. body > h5:-moz-first-node, td > h5:-moz-first-node, th > h5:-moz-first-node,
  138. body > h6:-moz-first-node, td > h6:-moz-first-node, th > h6:-moz-first-node,
  139. body > listing:-moz-first-node, td > listing:-moz-first-node, th > listing:-moz-first-node,
  140. body > plaintext:-moz-first-node, td > plaintext:-moz-first-node, th > plaintext:-moz-first-node,
  141. body > xmp:-moz-first-node, td > xmp:-moz-first-node, th > xmp:-moz-first-node,
  142. body > pre:-moz-first-node, td > pre:-moz-first-node, th > pre:-moz-first-node,
  143. body > ul:-moz-first-node, td > ul:-moz-first-node, th > ul:-moz-first-node,
  144. body > menu:-moz-first-node, td > menu:-moz-first-node, th > menu:-moz-first-node,
  145. body > dir:-moz-first-node, td > dir:-moz-first-node, th > dir:-moz-first-node,
  146. body > ol:-moz-first-node, td > ol:-moz-first-node, th > ol:-moz-first-node {
  147.   margin-top: 0;
  148. }
  149.  
  150. td > form:-moz-last-node, th > form:-moz-last-node,
  151. td > p:-moz-last-node, th > p:-moz-last-node,
  152. td > dl:-moz-last-node, th > dl:-moz-last-node,
  153. td > multicol:-moz-last-node, th > multicol:-moz-last-node,
  154. td > blockquote:-moz-last-node, th > blockquote:-moz-last-node,
  155. td > h1:-moz-last-node, th > h1:-moz-last-node,
  156. td > h2:-moz-last-node, th > h2:-moz-last-node,
  157. td > h3:-moz-last-node, th > h3:-moz-last-node,
  158. td > h4:-moz-last-node, th > h4:-moz-last-node,
  159. td > h5:-moz-last-node, th > h5:-moz-last-node,
  160. td > h6:-moz-last-node, th > h6:-moz-last-node,
  161. td > listing:-moz-last-node, th > listing:-moz-last-node,
  162. td > plaintext:-moz-last-node, th > plaintext:-moz-last-node,
  163. td > xmp:-moz-last-node, th > xmp:-moz-last-node,
  164. td > pre:-moz-last-node, th > pre:-moz-last-node,
  165. td > ul:-moz-last-node, th > ul:-moz-last-node,
  166. td > menu:-moz-last-node, th > menu:-moz-last-node,
  167. td > dir:-moz-last-node, th > dir:-moz-last-node,
  168. td > ol:-moz-last-node, th > ol:-moz-last-node {
  169.   margin-bottom: 0;
  170. }
  171.  
  172. /* Similar as above, but for empty elements
  173.  *  collapse the bottom or top margins of empty elements
  174.  *  - see bug 97361
  175.  */
  176. body > form:empty:-moz-first-node, td > form:empty:-moz-first-node, th > form:empty:-moz-first-node,
  177. body > p:empty:-moz-first-node, td > p:empty:-moz-first-node, th > p:empty:-moz-first-node,
  178. body > dl:empty:-moz-first-node, td > dl:empty:-moz-first-node, th > dl:empty:-moz-first-node,
  179. body > multicol:empty:-moz-first-node, td > multicol:empty:-moz-first-node, th > multicol:empty:-moz-first-node,
  180. body > blockquote:empty:-moz-first-node, td > blockquote:empty:-moz-first-node, th > blockquote:empty:-moz-first-node,
  181. body > h1:empty:-moz-first-node, td > h1:empty:-moz-first-node, th > h1:empty:-moz-first-node,
  182. body > h2:empty:-moz-first-node, td > h2:empty:-moz-first-node, th > h2:empty:-moz-first-node,
  183. body > h3:empty:-moz-first-node, td > h3:empty:-moz-first-node, th > h3:empty:-moz-first-node,
  184. body > h4:empty:-moz-first-node, td > h4:empty:-moz-first-node, th > h4:empty:-moz-first-node,
  185. body > h5:empty:-moz-first-node, td > h5:empty:-moz-first-node, th > h5:empty:-moz-first-node,
  186. body > h6:empty:-moz-first-node, td > h6:empty:-moz-first-node, th > h6:empty:-moz-first-node,
  187. body > listing:empty:-moz-first-node, td > listing:empty:-moz-first-node, th > listing:empty:-moz-first-node,
  188. body > plaintext:empty:-moz-first-node, td > plaintext:empty:-moz-first-node, th > plaintext:empty:-moz-first-node,
  189. body > xmp:empty:-moz-first-node, td > xmp:empty:-moz-first-node, th > xmp:empty:-moz-first-node,
  190. body > pre:empty:-moz-first-node, td > pre:empty:-moz-first-node, th > pre:empty:-moz-first-node,
  191. body > ul:empty:-moz-first-node, td > ul:empty:-moz-first-node, th > ul:empty:-moz-first-node,
  192. body > menu:empty:-moz-first-node, td > menu:empty:-moz-first-node, th > menu:empty:-moz-first-node,
  193. body > dir:empty:-moz-first-node, td > dir:empty:-moz-first-node, th > dir:empty:-moz-first-node,
  194. body > ol:empty:-moz-first-node, td > ol:empty:-moz-first-node, th > ol:empty:-moz-first-node {
  195.   margin-bottom: 0;
  196. }
  197.  
  198. td > form:empty:-moz-last-node, th > form:empty:-moz-last-node,
  199. td > p:empty:-moz-last-node, th > p:empty:-moz-last-node,
  200. td > dl:empty:-moz-last-node, th > dl:empty:-moz-last-node,
  201. td > multicol:empty:-moz-last-node, th > multicol:empty:-moz-last-node,
  202. td > blockquote:empty:-moz-last-node, th > blockquote:empty:-moz-last-node,
  203. td > h1:empty:-moz-last-node, th > h1:empty:-moz-last-node,
  204. td > h2:empty:-moz-last-node, th > h2:empty:-moz-last-node,
  205. td > h3:empty:-moz-last-node, th > h3:empty:-moz-last-node,
  206. td > h4:empty:-moz-last-node, th > h4:empty:-moz-last-node,
  207. td > h5:empty:-moz-last-node, th > h5:empty:-moz-last-node,
  208. td > h6:empty:-moz-last-node, th > h6:empty:-moz-last-node,
  209. td > listing:empty:-moz-last-node, th > listing:empty:-moz-last-node,
  210. td > plaintext:empty:-moz-last-node, th > plaintext:empty:-moz-last-node,
  211. td > xmp:empty:-moz-last-node, th > xmp:empty:-moz-last-node,
  212. td > pre:empty:-moz-last-node, th > pre:empty:-moz-last-node,
  213. td > ul:empty:-moz-last-node, th > ul:empty:-moz-last-node,
  214. td > menu:empty:-moz-last-node, th > menu:empty:-moz-last-node,
  215. td > dir:empty:-moz-last-node, th > dir:empty:-moz-last-node,
  216. td > ol:empty:-moz-last-node, th > ol:empty:-moz-last-node {
  217.   margin-top: 0;
  218. }
  219.  
  220.  
  221. /* Quirk: support the ways of making PRE have wrapping */
  222.  
  223. pre[wrap], pre[cols], pre[width] {
  224.   white-space: -moz-pre-wrap;
  225. }
  226.  
  227.  
  228. /* Quirk: DD not in DL has text-indent instead of margin (b=5119) */
  229.  
  230. :not(dl) > dd {
  231.   display: inline;
  232.   margin: 0;
  233. }
  234.  
  235. :not(dl) > dd:before {
  236.   display: inline;
  237.   white-space: pre;
  238.   font-size: 1px;
  239.   line-height: 0;
  240.   content: "\A  ";
  241.   -moz-margin-end: 40px;
  242. }
  243.  
  244.  
  245. /* quirk to indent nested DL elements (b=8749) */
  246.  
  247. dl > dl {
  248.   display: block;
  249.   -moz-margin-start: 40px;
  250. }
  251.  
  252.  
  253. /* Quirk: MAP acts like an inline, not a block */
  254.  
  255. map {
  256.   display: inline;
  257. }
  258.  
  259.  
  260. /* Quirk: Make floated images have a margin  (b=58899) */
  261.  
  262. img[align=left] {
  263.   margin-right: 3px;
  264. }
  265.  
  266. img[align=right] {
  267.   margin-left: 3px;
  268. }
  269.  
  270.  
  271. /* Quirk: Make sure that the residual style tags' size info. 
  272.  * does not take precedence over heading tags' size. (b=77352)
  273.  * Note: This special attribute is set only for a residual 
  274.  * style tag within a heading tag.
  275.  */
  276.  
  277. /* XXX This is a potential performance problem.  This should not be
  278.  * using an attribute!
  279.  */
  280. *[_moz-rs-heading] { 
  281.   font-size: inherit !important; 
  282. }
  283.  
  284.  
  285. /*
  286.  * Quirk: Use border-box box sizing for text inputs, password inputs, and
  287.  * textareas.  (b=184478 on why we use content-box sizing in standards mode)
  288.  */
  289.  
  290. /* Note that all other <input>s already use border-box
  291.    sizing, so we're ok with this selector */
  292. input:not([type=image]), textarea {
  293.   -moz-box-sizing: border-box;
  294. }
  295.