2016-07-06 15:18:01 -03:00
|
|
|
.root {
|
|
|
|
width: 350px;
|
2016-07-06 18:10:13 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.inputArea {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
|
|
|
|
}
|
2016-07-06 15:18:01 -03:00
|
|
|
|
2016-07-06 18:10:13 -03:00
|
|
|
.inputScope {
|
|
|
|
display: table-cell;
|
|
|
|
width: 1%;
|
|
|
|
padding-right: 6px;
|
|
|
|
padding-left: 8px;
|
|
|
|
color: #767676;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-right: 1px solid #eee;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
2016-07-06 15:18:01 -03:00
|
|
|
}
|
|
|
|
|
2016-07-06 18:10:13 -03:00
|
|
|
.inputField {
|
|
|
|
display: table-cell;
|
|
|
|
width: 99%;
|
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 {
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
|
|
padding: 2px 0;
|
|
|
|
width: 350px;
|
2016-07-06 18:10:13 -03:00
|
|
|
height: 100%;
|
2016-07-06 15:18:01 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.command {
|
|
|
|
padding: 2px 6px;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlightedCommand {
|
|
|
|
color: white;
|
|
|
|
background: hsl(200, 50%, 50%);
|
|
|
|
padding: 2px 6px;
|
|
|
|
cursor: default;
|
|
|
|
}
|