1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/osx/global/console/console.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,169 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +/* ===== console.css ==================================================== 1.9 + == Styles used by the Error Console window. 1.10 + ======================================================================= */ 1.11 + 1.12 +/* View buttons */ 1.13 +@import "chrome://global/skin/viewbuttons.css"; 1.14 + 1.15 +%include ../shared.inc 1.16 +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 1.17 + 1.18 +.console-box { 1.19 + background-color: -moz-Field; 1.20 + color: -moz-FieldText; 1.21 + overflow: auto; 1.22 +} 1.23 + 1.24 +/* ::::: console rows ::::: */ 1.25 + 1.26 +.console-row { 1.27 + border-bottom: 1px solid #A3A3A3; 1.28 + padding: 4px; 1.29 +} 1.30 + 1.31 +.console-row-file { 1.32 + color: #505050; 1.33 +} 1.34 + 1.35 +.console-row-msg > label:first-child { 1.36 + font-weight: bold; 1.37 +} 1.38 + 1.39 +.console-row-msg > label, .comsole-row-msg > description, .console-error-msg, .console-row-file, .console-row-code { 1.40 + margin: 2px; 1.41 +} 1.42 + 1.43 +.console-row-file > label { 1.44 + margin: 0; 1.45 +} 1.46 + 1.47 +.console-msg-text { 1.48 + white-space: pre-wrap !important; 1.49 +} 1.50 +.console-icon { 1.51 + list-style-image: inherit; 1.52 + padding-right: 6px; 1.53 + padding-left: 6px; 1.54 +} 1.55 + 1.56 +/* ..... error rows ..... */ 1.57 + 1.58 +.console-row-code { 1.59 + color: #0000BB; 1.60 + font-size: larger; 1.61 +} 1.62 + 1.63 +.console-dots, 1.64 +.console-caret { 1.65 + height: 9px; 1.66 +} 1.67 + 1.68 +.console-dots { 1.69 + background: url("chrome://global/skin/console/console-error-dash.gif") repeat-x top; 1.70 +} 1.71 + 1.72 +.console-caret { 1.73 + width: 7px; 1.74 + background: url("chrome://global/skin/console/console-error-caret.gif") no-repeat top; 1.75 +} 1.76 + 1.77 +/* ..... message rows ..... */ 1.78 + 1.79 +.console-row[type="message"] { 1.80 + font-family: monospace; 1.81 +} 1.82 + 1.83 +/* ..... selected state ..... */ 1.84 + 1.85 +.console-row[selected="true"] { 1.86 + background-color: #3D80DF !important; 1.87 + color: #FFF; 1.88 +} 1.89 + 1.90 +.console-row-code[selected="true"], 1.91 +.console-row-content[selected="true"] > .console-row-file, 1.92 +.console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link { 1.93 + color: #FFF !important; 1.94 +} 1.95 + 1.96 +/* ::::: row colors ::::: */ 1.97 + 1.98 +.console-row[type="error"], 1.99 +.console-row[type="exception"] { 1.100 + background-color: #FFD0DC; 1.101 +} 1.102 + 1.103 +.console-row[type="warning"] { 1.104 + background-color: #F8F3CC; 1.105 +} 1.106 + 1.107 +.console-row[type="message"] { 1.108 + background-color: #D3EDFF; 1.109 +} 1.110 + 1.111 +/* ::::: toolbars ::::: */ 1.112 + 1.113 +#ToolbarEval { 1.114 + -moz-appearance: none; 1.115 + background: @scopeBarBackground@; 1.116 + border-bottom: @scopeBarSeparatorBorder@; 1.117 + padding: 2px; 1.118 +} 1.119 + 1.120 +#ToolbarEval > label { 1.121 + font-weight: bold; 1.122 + color: @scopeBarTitleColor@; 1.123 +} 1.124 + 1.125 +#TextfieldEval { 1.126 + margin: 2px !important; 1.127 +} 1.128 + 1.129 +#ButtonEval { 1.130 + margin: 0 4px; 1.131 + padding: 1px 10px; 1.132 + -moz-appearance: none; 1.133 + border-radius: 10000px; 1.134 + border: @roundButtonBorder@; 1.135 + background: @roundButtonBackground@; 1.136 + box-shadow: @roundButtonShadow@; 1.137 +} 1.138 + 1.139 +#ButtonEval > .toolbarbutton-text { 1.140 + margin: 0 !important; 1.141 +} 1.142 + 1.143 +#ButtonEval:hover:active { 1.144 + text-shadow: @loweredShadow@; 1.145 + background: @roundButtonPressedBackground@; 1.146 + box-shadow: @roundButtonPressedShadow@; 1.147 +} 1.148 + 1.149 +toolbarseparator { 1.150 + min-height: 1em; 1.151 + background-image: none; 1.152 +} 1.153 + 1.154 +/* Toolbar icons */ 1.155 + 1.156 +#ToolbarMode { 1.157 + -moz-box-pack: center; 1.158 +} 1.159 + 1.160 +#ToolbarMode toolbarbutton > .toolbarbutton-icon { 1.161 + display: none; 1.162 +} 1.163 + 1.164 +#Console\:clear { 1.165 + -moz-box-orient: vertical; 1.166 + -moz-box-align: center; 1.167 + -moz-appearance: toolbarbutton; 1.168 + font: menu; 1.169 + text-shadow: @loweredShadow@; 1.170 + margin: 4px 0 9px; 1.171 + padding: 0 1px; 1.172 +}