removed deprecated JS

completed import of 3rd party dependencies

added url to README.md

init GitHub version "Hermes 1.0b"
This commit is contained in:
Sublunar Space 2018-12-09 13:02:46 +01:00
parent abc4fb2c21
commit b16fa60929
81 changed files with 65818 additions and 0 deletions

28
3rd/css/autocomplete.css Normal file
View file

@ -0,0 +1,28 @@
.ac-renderer{
position: absolute;
border: 1px solid #ccc;
margin-top: -1px;
max-width: 400px;
}
.ac-row {
white-space: nowrap;
position: relative;
cursor: pointer;
padding: 5px;
background-color: #fff;
overflow: hidden !important;
text-overflow: ellipsis;
}
.ac-row .suffix {
font-size:.8em;
color:#ccc;
padding:.1em 0 .1em 5px;
}
.ac-row .type {
font-size:.7em;
color:#aaa;
display:block;
width:100%;
}
.ac-highlighted {font-weight: bold;}
.ac-active {background-color: #eee;}