Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 .gcli-body {
6 margin: 0;
7 font: message-box;
8 color: hsl(210,30%,85%);
9 }
11 #gcli-output-root,
12 #gcli-tooltip-root {
13 border: 1px solid hsl(206,37%,4%);
14 box-shadow: 0 1px 0 hsla(209,29%,72%,.25) inset;
15 background-image: url(background-noise-toolbar.png),
16 linear-gradient(hsla(209,18%,18%,0.9), hsl(209,23%,18%));
17 border-radius: 3px;
18 }
20 #gcli-output-root {
21 padding: 5px 10px;
22 border-bottom-left-radius: 0;
23 border-bottom-right-radius: 0;
24 border-bottom: 0;
25 }
27 #gcli-tooltip-root {
28 padding: 5px 0px;
29 }
31 #gcli-tooltip-connector {
32 margin-top: -1px;
33 margin-left: 8px;
34 width: 20px;
35 height: 10px;
36 border-left: 1px solid hsl(206,37%,4%);
37 border-right: 1px solid hsl(206,37%,4%);
38 background-color: hsl(209,23%,18%);
39 background-image: url(background-noise-toolbar.png);
40 }
42 .gcli-tt-description,
43 .gcli-tt-error {
44 padding: 0 10px;
45 }
47 .gcli-row-out {
48 padding: 0 5px;
49 line-height: 1.2em;
50 border-top: none;
51 border-bottom: none;
52 color: hsl(210,30%,85%);
53 }
55 .gcli-row-out p,
56 .gcli-row-out h1,
57 .gcli-row-out h2,
58 .gcli-row-out h3 {
59 margin: 5px 0;
60 }
62 .gcli-row-out h1,
63 .gcli-row-out h2,
64 .gcli-row-out h3,
65 .gcli-row-out h4,
66 .gcli-row-out h5,
67 .gcli-row-out th,
68 .gcli-row-out strong,
69 .gcli-row-out pre {
70 color: hsl(210,30%,95%);
71 }
73 .gcli-row-out pre {
74 font-size: 80%;
75 }
77 .gcli-row-out td {
78 white-space: nowrap;
79 }
81 .gcli-out-shortcut,
82 .gcli-help-synopsis {
83 padding: 0 3px;
84 margin: 0 4px;
85 font-weight: normal;
86 font-size: 90%;
87 border-radius: 3px;
88 background-color: hsl(209,23%,18%);
89 border: 1px solid hsl(206,37%,4%);
90 }
92 .gcli-out-shortcut:before,
93 .gcli-help-synopsis:before {
94 color: hsl(210,30%,85%);
95 -moz-padding-end: 2px;
96 }
98 .gcli-help-arrow {
99 color: #666;
100 }
102 .gcli-help-description {
103 margin: 0 20px;
104 padding: 0;
105 }
107 .gcli-help-parameter {
108 margin: 0 30px;
109 padding: 0;
110 }
112 .gcli-help-header {
113 margin: 10px 0 6px;
114 }
116 .gcli-menu-name {
117 -moz-padding-start: 8px;
118 }
120 .gcli-menu-desc {
121 -moz-padding-end: 8px;
122 color: hsl(210,30%,75%);
123 }
125 .gcli-menu-name:hover,
126 .gcli-menu-desc:hover {
127 background-color: hsla(0,0%,0%,.3);
128 }
130 .gcli-menu-highlight,
131 .gcli-menu-highlight:hover {
132 background-color: hsla(0,100%,100%,.1);
133 }
135 .gcli-menu-typed {
136 color: hsl(25,78%,50%);
137 }
139 .gcli-menu-more {
140 font-size: 80%;
141 text-align: right;
142 -moz-padding-end: 8px;
143 }
145 .gcli-addon-disabled {
146 opacity: 0.6;
147 text-decoration: line-through;
148 }
150 .gcli-breakpoint-label {
151 font-weight: bold;
152 }
154 .gcli-breakpoint-lineText {
155 font-family: monospace;
156 }