fixed style of terminal menu bar and dropdown menu

pull/1/head
LianaHus 6 years ago
parent 07219ced3e
commit 245a7fb25e
  1. 76
      src/app/panels/styles/terminal-styles.js
  2. 4
      src/app/panels/terminal.js
  3. 2
      src/app/ui/dropdown.js

File diff suppressed because one or more lines are too long

@ -144,7 +144,7 @@ class Terminal {
${self._view.dropdown}
<div class=${css.search}>
<i class="fa fa-search ${css.searchIcon} bg-light btn-light" aria-hidden="true"></i>
<input spellcheck="false" type="text" class=${css.filter} onkeydown=${filter} placeholder="Search transactions">
<input spellcheck="false" type="text" class="${css.filter} form-control" onkeydown=${filter} placeholder="Search transactions">
</div>
</div>
</div>
@ -158,7 +158,7 @@ class Terminal {
</div>
`
self._view.el = yo`
<div class="${css.panel}">
<div class="${css.panel}" style="height: 180px;">
${self._view.bar}
${self._view.term}
</div>

@ -66,7 +66,7 @@ class Dropdown {
return yo`
<div class=${css.option}>
${input}
<label for="${label}">${label}</label>
<label class="text-dark" for="${label}">${label}</label>
</div>
`
})}

Loading…
Cancel
Save