/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* ===== console.css ====================================================
  == Styles used by the Error Console window.
  ======================================================================= */

/* View buttons */
@import "chrome://global/skin/viewbuttons.css";







@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

.console-box {
  background-color: -moz-Field;
  color: -moz-FieldText;
  overflow: auto;
}
 
/* ::::: console rows ::::: */

.console-row {
  border-bottom: 1px solid #A3A3A3;
  padding: 4px;
}

.console-row-file {
  color: #505050;
}

.console-row-msg > label:first-child {
  font-weight: bold;
}

.console-row-msg > label, .comsole-row-msg > description, .console-error-msg, .console-row-file, .console-row-code {
  margin: 2px;
}

.console-row-file > label {
  margin: 0;
}

.console-msg-text {
  white-space: pre-wrap !important;
}
.console-icon {
  list-style-image: inherit;
  padding-right: 6px;
  padding-left: 6px;
}

/* ..... error rows ..... */

.console-row-code {
  color: #0000BB;
  font-size: larger;
}

.console-dots, 
.console-caret {
  height: 9px;
}

.console-dots {
  background: url("chrome://global/skin/console/console-error-dash.gif") repeat-x top;
}

.console-caret {
  width: 7px;
  background: url("chrome://global/skin/console/console-error-caret.gif") no-repeat top;
}

/* ..... message rows ..... */

.console-row[type="message"] {
  font-family: monospace;
} 

/* ..... selected state ..... */

.console-row[selected="true"] {
  background-color: #3D80DF !important;
  color: #FFF;
}

.console-row-code[selected="true"],
.console-row-content[selected="true"] > .console-row-file,
.console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link {
  color: #FFF !important;  
}

/* ::::: row colors ::::: */

.console-row[type="error"],
.console-row[type="exception"] {
  background-color: #FFD0DC;
}

.console-row[type="warning"] {
  background-color: #F8F3CC;
}

.console-row[type="message"] {
  background-color: #D3EDFF;
}

/* ::::: toolbars ::::: */

#ToolbarEval {
  -moz-appearance: none;
  background: linear-gradient(#E8E8E8, #D0D0D0) repeat-x;
  border-bottom: 1px solid #888;
  padding: 2px;
}

#ToolbarEval > label {
  font-weight: bold;
  color: #6D6D6D;
}

#TextfieldEval {
  margin: 2px !important;
}

#ButtonEval {
  margin: 0 4px;
  padding: 1px 10px;
  -moz-appearance: none;
  border-radius: 10000px;
  border: 1px solid rgba(0,0,0,.35);
  background: linear-gradient(#f6f6f6, #e9e9e9);
  box-shadow: 0 1px rgba(255,255,255,.5), inset 0 1px 1px rgba(255,255,255,.5);
}

#ButtonEval:hover:active {
  text-shadow: 0 1px rgba(255, 255, 255, .4);
  background: #dadada;
  box-shadow: 0 1px rgba(255,255,255,.4), inset 0 1px 3px rgba(0,0,0,.2);
}

toolbarseparator {
  min-height: 1em;
  background-image: none;
}

/* Toolbar icons */

#ToolbarMode {
  -moz-box-pack: center;
}

#ToolbarMode toolbarbutton > .toolbarbutton-icon {
  display: none;
}

#Console\:clear {
  -moz-box-orient: vertical;
  -moz-box-align: center;
  font: menu;
  text-shadow: 0 1px rgba(255, 255, 255, .4);
  margin: 4px 0 9px;
  padding: 0 4px;
  border: 1px solid rgba(59, 59, 59, 0.9);
  border-radius: 3px;
  box-shadow: 0 1px rgba(255, 255, 255, .4);
  background: linear-gradient(#FFF, #ADADAD) repeat-x;
  background-origin: border-box;
}

#Console\:clear:active:hover {
  background: #B5B5B5;
  text-shadow: 0 1px rgba(255, 255, 255, .4);
  box-shadow: inset rgba(0, 0, 0, 0.3) 0 -6px 10px, inset #000 0 1px 3px, inset rgba(0, 0, 0, 0.2) 0 1px 3px, 0 1px rgba(255, 255, 255, .4);
}

#Console\:clear:-moz-window-inactive {
  border-color: rgba(146, 146, 146, 0.84);
  background-image: -moz-linear-gradient(top, #FFF, #CCC);
}

