99 lines
1.9 KiB
CSS
99 lines
1.9 KiB
CSS
%if 0
|
|
/* 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/. */
|
|
%endif
|
|
|
|
html|*#gcli-tooltip-frame,
|
|
html|*#gcli-output-frame {
|
|
padding: 0;
|
|
border-width: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#gcli-output,
|
|
#gcli-tooltip {
|
|
border-width: 0;
|
|
background-color: transparent;
|
|
-moz-appearance: none;
|
|
margin-bottom: -2px;
|
|
}
|
|
|
|
.gclitoolbar-input-node,
|
|
.gclitoolbar-complete-node,
|
|
.gclitoolbar-prompt {
|
|
margin: 0;
|
|
-moz-margin-end: 5px;
|
|
-moz-box-align: center;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
padding-right: 4px;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.gclitoolbar-input-node {
|
|
padding-left: 20px;
|
|
background-color: transparent;
|
|
-moz-appearance: none;
|
|
border-color: hsl(210,24%,10%);
|
|
color: hsl(210,30%,85%);
|
|
text-shadow: 0 -1px 0 hsla(210,8%,5%,.45);
|
|
box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05),
|
|
0 0 0 1px hsla(210,40%,83%,.1);
|
|
}
|
|
|
|
.gclitoolbar-input-node > .textbox-input-box > html|*.textbox-input::-moz-selection {
|
|
background-color: hsl(210,30%,85%);
|
|
color: hsl(210,24%,16%);
|
|
text-shadow: none;
|
|
}
|
|
|
|
.gclitoolbar-complete-node {
|
|
padding-left: 21px;
|
|
background-color: transparent;
|
|
color: transparent;
|
|
}
|
|
|
|
.gclitoolbar-prompt {
|
|
padding-left: 4px;
|
|
padding-bottom: 2px;
|
|
font-size: 150%;
|
|
font-weight: bold;
|
|
color: hsl(210,30%,85%);
|
|
background-color: hsl(210,24%,16%);
|
|
}
|
|
|
|
.gclitoolbar-prompt-label,
|
|
.gcli-in-incomplete,
|
|
.gcli-in-error,
|
|
.gcli-in-ontab,
|
|
.gcli-in-todo,
|
|
.gcli-in-closebrace,
|
|
.gcli-in-param,
|
|
.gcli-in-valid {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.gcli-in-incomplete {
|
|
border-bottom: 2px dotted #999;
|
|
}
|
|
|
|
.gcli-in-error {
|
|
border-bottom: 2px dotted #F00;
|
|
}
|
|
|
|
.gcli-in-ontab {
|
|
color: hsl(210,0%,35%);
|
|
}
|
|
|
|
.gcli-in-todo {
|
|
color: hsl(210,50%,35%);
|
|
}
|
|
|
|
.gcli-in-closebrace {
|
|
color: hsl(0,0%,80%);
|
|
}
|