1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/windows/devtools/commandline.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,154 @@ 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 +.gcli-body { 1.9 + margin: 0; 1.10 + font: message-box; 1.11 + color: hsl(210,30%,85%); 1.12 +} 1.13 + 1.14 +#gcli-output-root, 1.15 +#gcli-tooltip-root { 1.16 + border: 1px solid hsl(206,37%,4%); 1.17 + box-shadow: 0 1px 0 hsla(209,29%,72%,.25) inset; 1.18 + background-image: linear-gradient(hsla(209,18%,18%,0.9), hsl(209,23%,18%)); 1.19 + border-radius: 3px; 1.20 +} 1.21 + 1.22 +#gcli-output-root { 1.23 + padding: 5px 10px; 1.24 + border-bottom-left-radius: 0; 1.25 + border-bottom-right-radius: 0; 1.26 + border-bottom: 0; 1.27 +} 1.28 + 1.29 +#gcli-tooltip-root { 1.30 + padding: 5px 0px; 1.31 +} 1.32 + 1.33 +#gcli-tooltip-connector { 1.34 + margin-top: -1px; 1.35 + margin-left: 8px; 1.36 + width: 20px; 1.37 + height: 10px; 1.38 + border-left: 1px solid hsl(206,37%,4%); 1.39 + border-right: 1px solid hsl(206,37%,4%); 1.40 + background-color: hsl(209,23%,18%); 1.41 +} 1.42 + 1.43 +.gcli-tt-description, 1.44 +.gcli-tt-error { 1.45 + padding: 0 10px; 1.46 +} 1.47 + 1.48 +.gcli-row-out { 1.49 + padding: 0 5px; 1.50 + line-height: 1.2em; 1.51 + border-top: none; 1.52 + border-bottom: none; 1.53 + color: hsl(210,30%,85%); 1.54 +} 1.55 + 1.56 +.gcli-row-out p, 1.57 +.gcli-row-out h1, 1.58 +.gcli-row-out h2, 1.59 +.gcli-row-out h3 { 1.60 + margin: 5px 0; 1.61 +} 1.62 + 1.63 +.gcli-row-out h1, 1.64 +.gcli-row-out h2, 1.65 +.gcli-row-out h3, 1.66 +.gcli-row-out h4, 1.67 +.gcli-row-out h5, 1.68 +.gcli-row-out th, 1.69 +.gcli-row-out strong, 1.70 +.gcli-row-out pre { 1.71 + color: hsl(210,30%,95%); 1.72 +} 1.73 + 1.74 +.gcli-row-out pre { 1.75 + font-size: 80%; 1.76 +} 1.77 + 1.78 +.gcli-row-out td { 1.79 + white-space: nowrap; 1.80 +} 1.81 + 1.82 +.gcli-out-shortcut, 1.83 +.gcli-help-synopsis { 1.84 + padding: 0 3px; 1.85 + margin: 0 4px; 1.86 + font-weight: normal; 1.87 + font-size: 90%; 1.88 + border-radius: 3px; 1.89 + background-color: hsl(209,23%,18%); 1.90 + border: 1px solid hsl(206,37%,4%); 1.91 +} 1.92 + 1.93 +.gcli-out-shortcut:before, 1.94 +.gcli-help-synopsis:before { 1.95 + color: hsl(210,30%,85%); 1.96 + -moz-padding-end: 2px; 1.97 +} 1.98 + 1.99 +.gcli-help-arrow { 1.100 + color: #666; 1.101 +} 1.102 + 1.103 +.gcli-help-description { 1.104 + margin: 0 20px; 1.105 + padding: 0; 1.106 +} 1.107 + 1.108 +.gcli-help-parameter { 1.109 + margin: 0 30px; 1.110 + padding: 0; 1.111 +} 1.112 + 1.113 +.gcli-help-header { 1.114 + margin: 10px 0 6px; 1.115 +} 1.116 + 1.117 +.gcli-menu-name { 1.118 + -moz-padding-start: 8px; 1.119 +} 1.120 + 1.121 +.gcli-menu-desc { 1.122 + -moz-padding-end: 8px; 1.123 + color: hsl(210,30%,75%); 1.124 +} 1.125 + 1.126 +.gcli-menu-name:hover, 1.127 +.gcli-menu-desc:hover { 1.128 + background-color: hsla(0,0%,0%,.3); 1.129 +} 1.130 + 1.131 +.gcli-menu-highlight, 1.132 +.gcli-menu-highlight:hover { 1.133 + background-color: hsla(0,100%,100%,.1); 1.134 +} 1.135 + 1.136 +.gcli-menu-typed { 1.137 + color: hsl(25,78%,50%); 1.138 +} 1.139 + 1.140 +.gcli-menu-more { 1.141 + font-size: 80%; 1.142 + text-align: right; 1.143 + -moz-padding-end: 8px; 1.144 +} 1.145 + 1.146 +.gcli-addon-disabled { 1.147 + opacity: 0.6; 1.148 + text-decoration: line-through; 1.149 +} 1.150 + 1.151 +.gcli-breakpoint-label { 1.152 + font-weight: bold; 1.153 +} 1.154 + 1.155 +.gcli-breakpoint-lineText { 1.156 + font-family: monospace; 1.157 +}