home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / fusion.jar / skin / fusion / global / console.css < prev    next >
Cascading Style Sheet File  |  2005-07-29  |  3KB  |  120 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. .console-box {
  31.   background-color: -moz-Field;
  32.   color: -moz-FieldText;
  33. }
  34.  
  35. /* ::::: console rows ::::: */
  36.  
  37. .console-row {
  38.   border-bottom: 2px solid -moz-FieldText;
  39.   padding: 0px;
  40. }
  41.  
  42. .console-row-icon {
  43.   border-right: 1px solid ThreeDShadow;
  44.   padding: 5px;
  45.   background-color: -moz-Dialog;
  46.   -moz-box-align: start !important;
  47. }
  48.  
  49. .console-icon {
  50.   list-style-image: inherit;
  51. }
  52.  
  53. /* ..... error rows ..... */
  54.  
  55. .console-row-code {
  56.   padding: 3px 0px 3px 3px;
  57.   color: #0000BB;
  58.   font-size: larger;
  59. }
  60.  
  61. .console-dots, 
  62. .console-caret {
  63.   height: 9px;
  64. }
  65.  
  66. .console-dots {
  67.   background: url("chrome://global/skin/console/console-error-dash.gif") repeat-x top;
  68. }
  69.  
  70. .console-caret {
  71.   width: 7px;
  72.   background: url("chrome://global/skin/console/console-error-caret.gif") no-repeat top;
  73. }
  74.  
  75. /* ..... message rows ..... */
  76.  
  77. .console-row[type="message"] {
  78.   font-family: monospace;
  79.  
  80. /* ..... selected state ..... */
  81.  
  82. .console-row[selected="true"] {
  83.   background-color: #B7DBEB !important;
  84. }
  85.  
  86. .console-row-code[selected="true"],
  87. .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link {
  88.   color: inherit !important;  
  89. }
  90.  
  91. /* ::::: icons ::::: */
  92.  
  93. .console-row[type="error"],
  94. .console-row[type="exception"] {
  95.   list-style-image: url("chrome://global/skin/icons/alert-error.gif");
  96. }
  97.  
  98. .console-row[type="warning"] {
  99.   list-style-image: url("chrome://global/skin/icons/alert-exclam.gif");
  100. }
  101.  
  102. .console-row[type="message"] {
  103.   list-style-image: url("chrome://global/skin/icons/alert-message.gif");
  104. }
  105.  
  106. /* ::::: toolbars ::::: */
  107.  
  108. #TextfieldEval {
  109.   margin: 2px !important;
  110. }
  111.  
  112. #ButtonEval {
  113.   margin: 2px 2px 2px 0px !important;
  114. }
  115.  
  116. toolbarseparator {
  117.   min-height: 1em;
  118. }
  119.