home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / linux / mozilla-installer_linux / xpi / browser.xpi / bin / res / forms.css < prev    next >
Cascading Style Sheet File  |  2001-11-20  |  9KB  |  405 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. /** 
  38.   Styles for old GFX form widgets
  39.  **/ 
  40.  
  41.  
  42. @namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
  43.  
  44. *|*:fieldset-content {
  45.   display: block;
  46. }
  47.  
  48. form {
  49.   display: block;
  50.   margin: 0 0 1em 0;
  51. }
  52.  
  53. /* miscellaneous form elements */
  54.  
  55. legend {
  56.   padding-left: 2px;
  57.   padding-right: 2px;
  58.   border: none;
  59. }
  60.  
  61. fieldset {
  62.   display: block;
  63.   border: 2px solid black;
  64.   padding: 4px 4px 4px 4px;
  65.   margin-left: 2px;
  66.   margin-right: 2px;
  67. }
  68.  
  69. label {
  70.   /* our <label> support is badly broken. 
  71.      does not support display types other than inline(b=100801) 
  72.    */
  73.   display: inline !important;
  74. }
  75.  
  76.  
  77. /* default inputs, text inputs, and selects */
  78. input {
  79.   background-color: -moz-Field;
  80.   border: 2px inset ThreeDFace;
  81.   color: -moz-FieldText;
  82.   cursor: text;
  83.   font: field;
  84.   text-align: start;
  85.   vertical-align: text-bottom;
  86.   -moz-box-sizing: border-box;
  87.   -moz-user-focus: normal;
  88.   -moz-binding: url("resource:///res/builtin/platformHTMLBindings.xml#inputFields");
  89.   padding: 1px 0 1px 0;
  90. }
  91.  
  92. textarea {
  93.   background-color: -moz-Field;
  94.   border: 2px inset ThreeDFace;
  95.   color: -moz-FieldText;
  96.   cursor: text;
  97.   font: medium -moz-fixed;
  98.   margin: 1px 0 1px 0;
  99.   text-align: start;
  100.   vertical-align: text-bottom;
  101.   -moz-box-sizing: border-box;
  102.   -moz-user-focus: normal;
  103.   -moz-binding: url("resource:///res/builtin/platformHTMLBindings.xml#textAreas");
  104. }
  105.  
  106. textarea > scrollbar {
  107.   cursor: default;
  108. }
  109.  
  110. *|*:-moz-singleline-textcontrol-frame {
  111.   overflow: hidden;
  112.   white-space: nowrap;
  113.   background-color: inherit;
  114.   text-align: inherit;
  115. }
  116.  
  117. select {
  118.   font: list;
  119.   background-color: -moz-Field;
  120.   border: 2px inset ThreeDFace !important;
  121.   margin: 0;
  122.   vertical-align: text-bottom;
  123.   color: -moz-FieldText;
  124.   white-space: nowrap;
  125.   text-align: start; 
  126.   cursor: default;
  127.   -moz-user-select: none;
  128.   -moz-user-focus: normal;
  129.   -moz-box-sizing: border-box;
  130. }
  131.  
  132. select[size] {
  133.   padding: 1px 0 1px 0;
  134. }
  135. select[size="1"] {
  136.   padding: 0;
  137. }
  138.  
  139. select > input[type="button"] {
  140.   position: static ! important;
  141.   white-space: nowrap;
  142.   background-image: url("arrow.gif") !important;
  143.   background-repeat: no-repeat !important;
  144.   background-position: center !important;
  145.   width: 12px;
  146.   height: 12px;
  147.   -moz-user-focus: none;
  148. }
  149.  
  150. select > input[type="button"]:active {
  151.   background-image: url("arrowd.gif") !important;
  152. }
  153.  
  154. select[size], :-moz-select-scrolled-content {
  155.   overflow: -moz-scrollbars-vertical;
  156. }
  157.  
  158. select:-moz-dummy-option { 
  159.   visibility: hidden; 
  160.   content: "XX"; /* demo 8, edge case test 1 */
  161. }
  162.  
  163. *|*:-moz-display-comboboxcontrol-frame {
  164.   overflow: hidden;
  165.   white-space: nowrap;
  166.   background-color: inherit;
  167.   color: inherit;
  168.   text-align: inherit;
  169.   padding: 1px 0 1px 4px;
  170.   -moz-user-select: none;
  171. }
  172.  
  173. option {
  174.   min-height: 1em;
  175.   display: block;
  176.   -moz-user-select: none;
  177.   -moz-user-focus: none;
  178. }
  179.  
  180. select > option {
  181.   padding: 0 5px 0 3px;
  182. }
  183.  
  184. option[_moz-option-selected] {
  185.   color: HighlightText ! important;
  186.   background-color: Highlight ! important;
  187. }
  188.  
  189. optgroup {
  190.   display: block;
  191.   font: list;
  192.   font-style: italic;
  193.   font-weight: bold;
  194.   -moz-user-select: none;
  195.   -moz-user-focus: none;
  196. }
  197.  
  198. optgroup > option {
  199.   padding-left: 20px;
  200.   font-style: normal;
  201.   font-weight: normal;
  202. }
  203.  
  204. optgroup:before {
  205.   display: block;
  206.   content: attr(label);
  207. }
  208.  
  209. *|*:-moz-dropdown-list {
  210.   background-color: inherit;
  211.   border: 1px outset black !important; 
  212.   z-index: 2147483647;
  213.   -moz-user-select: none;
  214.  
  215. input[disabled],
  216. textarea[disabled],
  217. option[disabled],
  218. optgroup[disabled],
  219. select[disabled],
  220. select[disabled]:-moz-display-comboboxcontrol-frame {
  221.   color: GrayText;
  222.   cursor: default;
  223. }
  224.  
  225. /* hidden inputs */
  226. input[type="hidden"] {
  227.   border: none;
  228.   visibility: hidden;
  229.   -moz-binding: none;
  230. }
  231.  
  232. /* image buttons */
  233. input[type="image"] {
  234.   border: none;
  235.   vertical-align: baseline;
  236.   background-color: transparent;
  237.   cursor: pointer;
  238.   font-family: sans-serif;
  239.   font-size: small;
  240.   -moz-binding: none;
  241.   padding: 0;
  242. }
  243.  
  244. input[type="image"][disabled] {
  245.   cursor: default;
  246. }
  247.  
  248. input[type="image"]:focus {
  249.   -moz-outline: 1px dotted -moz-FieldText;
  250. }
  251.  
  252. /* file selector */
  253. input[type="file"] {
  254.   white-space: nowrap;
  255.   border: none;
  256.   cursor: default;
  257.   -moz-binding: none;
  258.   padding: 0;
  259. }
  260.  
  261. /* button part of file selector */
  262. input[type="file"] > input[type="button"] {
  263.   height: inherit;
  264. }
  265.  
  266. input[type="file"] > input[type="button"]:-moz-focus-inner
  267.  {
  268.   padding: 0px 2px 0px 2px;
  269.   border: 1px dotted transparent;
  270. }
  271.  
  272. /* radio buttons */
  273. input[type="radio"] {
  274.   border: 2px inset ThreeDFace;
  275.   background-color: -moz-Field;
  276.   color: -moz-FieldText;
  277.   width: 12px;
  278.   height: 12px;
  279.   cursor: default;
  280.   vertical-align: baseline;
  281.   -moz-border-radius: 100%;
  282.   -moz-binding: none;
  283.   margin: 3px 3px 0px 5px;
  284.   padding: 0;
  285. }
  286.  
  287. /* check boxes */
  288. input[type="checkbox"] {
  289.   border: 2px inset ThreeDFace;
  290.   background-color: -moz-Field;
  291.   color: -moz-FieldText;
  292.   width: 13px;
  293.   height: 13px;
  294.   cursor: default;
  295.   vertical-align: text-bottom;
  296.   -moz-binding: none;
  297.   margin: 3px 3px 3px 4px;
  298.   padding: 0;
  299. }
  300.  
  301. /* common features of radio buttons and check boxes */
  302. input[type="radio"][disabled],
  303. input[type="radio"][disabled]:active,
  304. input[type="radio"][disabled]:hover,
  305. input[type="radio"][disabled]:hover:active,
  306. input[type="checkbox"][disabled],
  307. input[type="checkbox"][disabled]:active,
  308. input[type="checkbox"][disabled]:hover,
  309. input[type="checkbox"][disabled]:hover:active {
  310.   padding: 1px;
  311.   border: 1px inset ThreeDShadow;
  312.   background-color: GrayText;
  313. }
  314.  
  315. input[type="checkbox"]:focus,
  316. input[type="radio"]:focus {
  317.   border-style: groove;
  318. }
  319.  
  320. input[type="checkbox"]:hover:active,
  321. input[type="radio"]:hover:active {
  322.   border-style: inset;
  323.   background-color: ThreeDHighlight;
  324. }
  325.  
  326. *|*:-moz-radio {
  327.   background-color: -moz-FieldText;
  328.   width: 4px;
  329.   height: 4px;
  330.   left: 6px;
  331.   top: 6px;
  332.   -moz-border-radius: 3px;
  333. }
  334.  
  335. /* buttons */
  336. button, 
  337. input[type="reset"],
  338. input[type="button"],
  339. input[type="submit"] { 
  340.   border: 2px outset ButtonFace;
  341.   background-color: ButtonFace;
  342.   color: ButtonText; 
  343.   padding: 2px 0 2px 0;
  344.   font: button;
  345.   cursor: default;
  346.   white-space: pre;
  347.   -moz-box-sizing: border-box;
  348.   -moz-user-select: none;
  349.   -moz-user-focus: normal;
  350.   -moz-binding: none;
  351. }
  352.  
  353. *|*:button-content {
  354.   display: block;
  355.   text-align: center;
  356. }
  357.  
  358. button:active:hover,
  359. input[type="reset"]:active:hover,
  360. input[type="button"]:active:hover,
  361. input[type="submit"]:active:hover {
  362.   border-style: inset;
  363.   padding: 3px 0 1px 0;
  364. }
  365.  
  366. button:-moz-focus-inner,
  367. input[type="reset"]:-moz-focus-inner,
  368. input[type="button"]:-moz-focus-inner,
  369. input[type="submit"]:-moz-focus-inner {
  370.   padding: 1px 2px 1px 2px;
  371.   border: 1px dotted transparent;
  372. }
  373.  
  374. button:focus:-moz-focus-inner,
  375. input[type="reset"]:focus:-moz-focus-inner,
  376. input[type="button"]:focus:-moz-focus-inner,
  377. input[type="submit"]:focus:-moz-focus-inner {
  378.   border-color: ButtonText;
  379. }
  380.  
  381. button[disabled]:active, button[disabled],
  382. input[type="reset"][disabled]:active,
  383. input[type="reset"][disabled],
  384. input[type="button"][disabled]:active,
  385. input[type="button"][disabled],
  386. input[type="file"][disabled] > input[type="button"],
  387. input[type="file"][disabled] > input[type="button"]:active,
  388. select[disabled] > input[type="button"],
  389. select[disabled] > input[type="button"]:active,
  390. input[type="submit"][disabled]:active,
  391. input[type="submit"][disabled] {
  392.   border: 1px outset ButtonShadow;
  393.   padding: 3px 1px 3px 1px;
  394.   color: GrayText;
  395. }
  396.  
  397. @media print {
  398.   input, textarea, select, button {
  399.     -moz-user-focus: none !important;
  400.   }
  401.  
  402. }
  403.  
  404.