home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / temacd / songbird / Songbird_0.4_windows-i686.exe / xulrunner / res / ua.css < prev    next >
Cascading Style Sheet File  |  2007-11-17  |  6KB  |  243 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  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 of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or 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 MPL, 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 MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. @import url(resource://gre/res/html.css);
  38. @import url(chrome://global/content/xul.css);
  39. @import url(resource://gre/res/quirk.css);
  40.  
  41. @namespace parsererror url(http://www.mozilla.org/newlayout/xml/parsererror.xml);
  42.  
  43. /* defaults for the root element that are easier to specify here than in
  44.    C++ code */
  45. *|*:root {
  46.   quotes: "\201C" "\201D" "\2018" "\2019";
  47. }
  48.  
  49. /* magic -- some of these rules are important to keep pages from overriding
  50.             them
  51. */
  52.  
  53. /* Tables */
  54.  
  55. *|*::-moz-table {
  56.   display: table !important;
  57.   -moz-box-sizing: border-box; /* XXX do we really want this? */
  58. }
  59.  
  60. *|*::-moz-inline-table {
  61.   display: inline-table !important;
  62.   -moz-box-sizing: border-box; /* XXX do we really want this? */
  63. }
  64.  
  65. *|*::-moz-table-outer {
  66.   display: inherit !important; /* table or inline-table */
  67.   margin: 0 ! important;
  68.   padding: 0 ! important;
  69.   border: none ! important;
  70.   float: inherit;
  71.   clear: inherit;
  72.   position: inherit;
  73.   top: inherit;
  74.   right: inherit;
  75.   bottom: inherit;
  76.   left: inherit;
  77.   z-index: inherit;
  78.   page-break-before: inherit;
  79.   page-break-after: inherit;
  80.   vertical-align: inherit; /* needed for inline-table */
  81.   line-height: inherit; /* needed for vertical-align on inline-table */
  82. }
  83.  
  84. *|*::-moz-table-row {
  85.   display: table-row !important;
  86. }
  87.  
  88. /* The ::-moz-table-column pseudo-element is for extra columns at the end 
  89.    of a table. */
  90. *|*::-moz-table-column {
  91.   display: table-column !important;
  92. }
  93.  
  94. *|*::-moz-table-column-group {
  95.   display: table-column-group !important;
  96. }
  97.  
  98. *|*::-moz-table-row-group {
  99.   display: table-row-group !important;
  100. }
  101.  
  102. *|*::-moz-table-cell {
  103.   display: table-cell !important;
  104.   white-space: inherit;
  105. }
  106.  
  107. /* Lists */
  108.  
  109. *|*::-moz-list-bullet, *|*::-moz-list-number {
  110.   display: inline;
  111.   vertical-align: baseline;
  112.   -moz-margin-end: 8px;
  113. }
  114.  
  115. /* Links */
  116.  
  117. *|*:-moz-any-link {
  118.   cursor: pointer;
  119. }
  120.  
  121. *|*:-moz-any-link:focus {
  122.   /* Don't specify the outline-color, we should always use initial value. */
  123.   outline: 1px dotted;
  124. }
  125.  
  126. /* Miscellaneous */
  127.  
  128. *|*::-moz-anonymous-block, *|*::-moz-cell-content {
  129.   display: block !important;
  130.   position: static !important;
  131. }
  132.  
  133. *|*::-moz-xul-anonymous-block {
  134.   display: block ! important;
  135.   position: static ! important;
  136.   float: none ! important;
  137. }
  138.  
  139. *|*::-moz-scrolled-content, *|*::-moz-scrolled-canvas,
  140. *|*::-moz-scrolled-page-sequence {
  141.   /* e.g., text inputs, select boxes */
  142.   padding: inherit;
  143.   display: inherit;
  144.   -moz-box-orient: inherit;
  145.   /* make unicode-bidi inherit, otherwise it has no effect on text inputs and
  146.      blocks with overflow: scroll; */
  147.   unicode-bidi: inherit;
  148.   -moz-column-count: inherit;
  149.   -moz-column-width: inherit;
  150.   -moz-column-gap: inherit;
  151.   /* Do not change these. nsCSSFrameConstructor depends on them to create a good
  152.      frame tree. */
  153.   position: static !important;
  154.   float: none !important;
  155. }
  156.  
  157. *|*::-moz-viewport, *|*::-moz-viewport-scroll, *|*::-moz-canvas, *|*::-moz-scrolled-canvas {
  158.   display: block !important;
  159.   background-color: inherit;
  160. }
  161.  
  162. *|*::-moz-viewport-scroll {
  163.   overflow: auto;
  164. }
  165.  
  166. *|*::-moz-column-content { 
  167.   /* the column boxes inside a column-flowed block */
  168.   /* make unicode-bidi inherit, otherwise it has no effect on column boxes */
  169.   unicode-bidi: inherit;
  170.   /* inherit the outer frame's display, otherwise we turn into an inline */
  171.   display: inherit !important;
  172.   /* Carry through our parent's height so that %-height children get
  173.   their heights set */
  174.   height: 100%;
  175. }
  176.  
  177. *|*::-moz-page, *|*::-moz-page-sequence, *|*::-moz-scrolled-page-sequence {
  178.   display: block !important;
  179.   background: transparent;
  180. }
  181.  
  182. *|*::-moz-pagecontent {
  183.   display: block !important;
  184. }
  185.  
  186. *|*::-moz-pagebreak {
  187.   display: block !important;
  188. }
  189.  
  190. *|*::-moz-anonymous-positioned-block {
  191.   display: block !important;
  192.   position: relative;
  193.   top: inherit; 
  194.   left: inherit;
  195.   bottom: inherit;
  196.   right: inherit;
  197.   z-index: inherit;
  198.   clip: inherit;
  199.   opacity: inherit;
  200. }
  201.  
  202. /* Printing */
  203.  
  204. @media print {
  205.  
  206.   * {
  207.     cursor: default !important;
  208.   }
  209.  
  210.   *|*::-moz-viewport, *|*::-moz-viewport-scroll, *|*::-moz-canvas,
  211.   *|*::-moz-scrolled-canvas {
  212.     background-color: #737373 !important;
  213.   }
  214.  
  215. }
  216.  
  217. /* XML parse error reporting */
  218.  
  219. parsererror|parsererror {
  220.   display: block;
  221.   font-family: sans-serif;
  222.   font-weight: bold;
  223.   white-space: pre;
  224.   margin: 1em;
  225.   padding: 1em;
  226.   border-width: thin;
  227.   border-style: inset;
  228.   border-color: red;
  229.   font-size: 14pt;
  230.   background-color: lightyellow;
  231. }
  232.  
  233. parsererror|sourcetext {
  234.   display: block;
  235.   white-space: pre;
  236.   font-family: -moz-fixed;
  237.   margin-top: 2em;
  238.   margin-bottom: 1em;
  239.   color: red;
  240.   font-weight: bold;
  241.   font-size: 12pt;
  242. }
  243.