static-cms/src/containers/FindBar.css

79 lines
1.2 KiB
CSS
Raw Normal View History

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 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 18:10:13 -03:00
.inputField {
display: table-cell;
width: 99%;
2016-07-07 19:21:10 -03:00
padding: 6px;
font-size: 16px;
background: none transparent;
border: 0 none;
2016-07-06 18:10:13 -03:00
box-shadow: none;
outline: none;
2016-07-06 18:10:13 -03:00
font-size: inherit;
}
.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-07 19:21:10 -03:00
.suggestions {
display: table-cell;
width: 50%;
padding-right: 10px;
}
.hitory {
display: table-cell;
width: 50%;
}
.command {
2016-07-07 19:21:10 -03:00
padding: 6px;
cursor: default;
}
.command .faded {
font-weight: lighter;
color: #555;
}
.highlightedCommand {
2016-07-07 19:21:10 -03:00
color: var(--highlightFGColor);
background: var(--highlightBGColor);
padding: 6px;
cursor: default;
}
.highlightedCommand .faded {
font-weight: lighter;
2016-07-07 19:21:10 -03:00
color: #282c34;
}