home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd1.bin / tema / mozilla / skin / ieskin-0.0.3-IE5.5-skinVersion1.5.xpi / ieskin.jar / global / console.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-01-05  |  3.2 KB  |  143 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 Communicator client code, released
  13.  * March 31, 1998.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation. Portions created by Netscape are
  17.  * Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *
  22.  */
  23.  
  24. /* ===== console.css ====================================================
  25.   == Styles used by the JavaScript Console window.
  26.   ======================================================================= */
  27.  
  28. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  29.  
  30.  
  31. /* ::::: primary toolbar ::::: */
  32.  
  33. .toolbarbutton-text {
  34.   margin: 0;
  35.   min-width: 4.8em;
  36.   padding: 4px;
  37. }
  38.  
  39. toolbarseparator {
  40.   min-height: 21px;
  41. }
  42.  
  43. #ButtonEval {
  44.   list-style-image: url("chrome://communicator/skin/icons/go.gif");
  45.   padding: 1px 3px 1px 6px;
  46. }
  47.  
  48. #ButtonEval:hover {
  49.   list-style-image: url("chrome://communicator/skin/icons/go-hov.gif");
  50. }
  51.  
  52. #ButtonEval:hover:active {
  53.   list-style-image: url("chrome://communicator/skin/icons/go-act.gif");
  54.   padding: 2px 2px 0px 7px;
  55. }
  56.  
  57. #TextboxEval {
  58.   height: 21px;
  59.   margin: 0px;
  60. }
  61.  
  62.  
  63. /* ::::: console box ::::: */
  64.  
  65. .console-box {
  66.   background-color: -moz-Field;
  67.   color: -moz-FieldText;
  68. }
  69.  
  70.  
  71. /* ::::: console rows ::::: */
  72.  
  73. .console-row {
  74.   border-bottom: 2px solid -moz-FieldText;
  75.   padding: 0px;
  76. }
  77.  
  78. .console-row-icon {
  79.   border-right: 1px solid ThreeDShadow;
  80.   padding: 5px;
  81.   background-color: -moz-Dialog;
  82.   -moz-box-align: start !important;
  83. }
  84.  
  85. .console-icon {
  86.   list-style-image: inherit;
  87. }
  88.  
  89. /* ..... error rows ..... */
  90.  
  91. .console-row-code {
  92.   padding: 3px 0px 3px 3px;
  93.   color: #0000BB;
  94.   font-size: larger;
  95. }
  96.  
  97. .console-dots, 
  98. .console-caret {
  99.   height: 9px;
  100. }
  101.  
  102. .console-dots {
  103.   background: url("chrome://global/skin/console/error-dash.gif") repeat-x top;
  104. }
  105.  
  106. .console-caret {
  107.   width: 7px;
  108.   background: url("chrome://global/skin/console/error-caret.gif") no-repeat top;
  109. }
  110.  
  111. /* ..... message rows ..... */
  112.  
  113. .console-row[type="message"] {
  114.   font-family: monospace;
  115.  
  116. /* ..... selected state ..... */
  117.  
  118. .console-row[selected="true"] {
  119.   background-color: #B7DBEB !important;
  120. }
  121.  
  122. .console-row-code[selected="true"],
  123. .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link {
  124.   color: inherit !important;  
  125. }
  126.  
  127.  
  128. /* ::::: icons ::::: */
  129.  
  130. .console-row[type="error"],
  131. .console-row[type="exception"] {
  132.   list-style-image: url("chrome://global/skin/icons/alert-error.gif");
  133. }
  134.  
  135. .console-row[type="warning"] {
  136.   list-style-image: url("chrome://global/skin/icons/alert-exclam.gif");
  137. }
  138.  
  139. .console-row[type="message"] {
  140.   list-style-image: url("chrome://global/skin/icons/alert-message.gif");
  141. }
  142.