2016-07-07 19:21:10 -03:00
|
|
|
:root {
|
|
|
|
--foregroundColor: #222;
|
|
|
|
--backgroundColor: #eaeaea;
|
|
|
|
--highlightFGColor: #000;
|
|
|
|
--highlightBGColor: #d2dee4;
|
2016-07-06 18:10:13 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.inputArea {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
2016-07-07 19:21:10 -03:00
|
|
|
color: var(--foregroundColor);
|
|
|
|
border: 1px solid var(--backgroundColor);
|
2016-07-06 18:10:13 -03:00
|
|
|
}
|
2016-07-06 15:18:01 -03:00
|
|
|
|
2016-07-06 18:10:13 -03:00
|
|
|
.inputScope {
|
|
|
|
display: table-cell;
|
|
|
|
width: 1%;
|
2016-07-07 19:21:10 -03:00
|
|
|
padding: 6px 6px 6px 8px;
|
2016-07-06 18:10:13 -03:00
|
|
|
color: #767676;
|
2016-07-07 19:21:10 -03:00
|
|
|
font-size: 16px;
|
2016-07-06 18:10:13 -03:00
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
2016-07-07 19:21:10 -03:00
|
|
|
border-right: 1px solid var(--backgroundColor);
|
2016-07-06 15:18:01 -03:00
|
|
|
}
|
|
|
|
|
2016-07-06 18:10:13 -03:00
|
|
|
.inputField {
|
|
|
|
display: table-cell;
|
|
|
|
width: 99%;
|
2016-07-07 19:21:10 -03:00
|
|
|
padding: 6px;
|
|
|
|
font-size: 16px;
|
2016-07-06 15:18:01 -03:00
|
|
|
background: none transparent;
|
|
|
|
border: 0 none;
|
2016-07-06 18:10:13 -03:00
|
|
|
box-shadow: none;
|
2016-07-06 15:18:01 -03:00
|
|
|
outline: none;
|
2016-07-06 18:10:13 -03:00
|
|
|
font-size: inherit;
|
2016-07-06 15:18:01 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
2016-07-07 19:21:10 -03:00
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
background: var(--backgroundColor);
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 10px;
|
2016-07-06 18:10:13 -03:00
|
|
|
height: 100%;
|
2016-07-06 15:18:01 -03:00
|
|
|
}
|
|
|
|
|
2016-07-07 19:21:10 -03:00
|
|
|
.suggestions {
|
|
|
|
display: table-cell;
|
|
|
|
width: 50%;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hitory {
|
|
|
|
display: table-cell;
|
|
|
|
width: 50%;
|
2016-07-07 19:22:07 -03:00
|
|
|
padding-left: 10px;
|
2016-07-07 19:21:10 -03:00
|
|
|
}
|
|
|
|
|
2016-07-06 15:18:01 -03:00
|
|
|
.command {
|
2016-07-07 19:21:10 -03:00
|
|
|
padding: 6px;
|
2016-07-06 15:18:01 -03:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2016-07-07 16:56:12 -03:00
|
|
|
.command .faded {
|
|
|
|
font-weight: lighter;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2016-07-06 15:18:01 -03:00
|
|
|
.highlightedCommand {
|
2016-07-07 19:21:10 -03:00
|
|
|
color: var(--highlightFGColor);
|
|
|
|
background: var(--highlightBGColor);
|
|
|
|
padding: 6px;
|
2016-07-06 15:18:01 -03:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-07-07 16:56:12 -03:00
|
|
|
|
|
|
|
.highlightedCommand .faded {
|
|
|
|
font-weight: lighter;
|
2016-07-07 19:21:10 -03:00
|
|
|
color: #282c34;
|
2016-07-07 16:56:12 -03:00
|
|
|
}
|