home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / skinclas.xpi / bin / chrome / classic.jar / skin / classic / global / console.css < prev    next >
Cascading Style Sheet File  |  2001-08-01  |  3KB  |  130 lines

  1. /* 
  2.  * The contents of this file are subject to the Netscape Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/NPL/
  6.  *  
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *  
  12.  * The Original Code is mozilla.org code.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation. Portions created by Netscape are
  16.  * Copyright (C) 1998-1999 Netscape Communications Corporation. All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s): 
  20.  */
  21.  
  22. @import url(chrome://global/skin);
  23.  
  24. .console-box 
  25.   {
  26.     background-color    : -moz-Field;
  27.     color               : -moz-FieldText;
  28.   }
  29.  
  30. /* :::::::::: console rows :::::::::: */
  31.  
  32. .console-row 
  33.   {
  34.     padding             : 0px;
  35.     border-bottom       : 2px solid WindowText;
  36.   }
  37.  
  38. .console-row-icon 
  39.   {
  40.     border-right        : 1px outset ThreeDFace;
  41.     padding             : 5px;
  42.     background-color    : -moz-Dialog;
  43.     -moz-box-align      : start;
  44.   }
  45.  
  46. .console-icon 
  47.   {
  48.     list-style-image    : inherit !important;
  49.   }
  50.  
  51. /* error rows */
  52.  
  53. .console-row-code 
  54.   {
  55.     padding             : 3px 0px 3px 3px;
  56.     font-size           : larger;
  57.     color               : #0000BB;
  58.   }
  59.  
  60. .console-dots, .console-caret 
  61.   {
  62.     height              : 9px;
  63.   }
  64.  
  65. .console-dots 
  66.   {
  67.     background          : url("chrome://global/skin/console-error-dash.gif") repeat-x top;
  68.   }
  69.  
  70. .console-caret 
  71.   {
  72.     width               : 7px;
  73.     background          : url("chrome://global/skin/console-error-caret.gif") no-repeat top;
  74.   }
  75.  
  76. /* message rows */
  77.  
  78. .console-row[type="message"] 
  79.   {
  80.     font-family         : monospace;
  81.   } 
  82.  
  83. /* selected state */
  84.  
  85. .console-row[selected="true"] 
  86.   {
  87.     background-color    : Highlight;
  88.     color               : HighlightText;
  89.   }
  90.  
  91. .console-row-code[selected="true"],
  92. .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link 
  93.   {
  94.     color               : inherit !important;  
  95.   }
  96.  
  97. /* ::::: icons ::::: */
  98.  
  99. .console-row[type="error"],
  100. .console-row[type="exception"] 
  101.   {
  102.     list-style-image    : url("chrome://global/skin/error-icon.gif");
  103.   }
  104.  
  105. .console-row[type="warning"] 
  106.   {
  107.     list-style-image    : url("chrome://global/skin/alert-icon.gif");
  108.   }
  109.  
  110. .console-row[type="message"] {
  111.   list-style-image      : url("chrome://global/skin/message-icon.gif");
  112. }
  113.  
  114. /* ::::: toolbars ::::: */
  115.  
  116. #TextboxEval
  117.   {
  118.     margin            : 1px 2px 1px 2px ;
  119.   }
  120.  
  121. #ButtonEval 
  122.   {
  123.     margin            : 1px 2px 1px 0px;
  124.   }
  125.  
  126. toolbarseparator 
  127.   {
  128.     min-height        : 1em;
  129.   }
  130.