Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finish the upgrade to jquery-ui autocomplete #29

Merged
merged 2 commits into from Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions debian/changelog
@@ -1,8 +1,13 @@
ocemr (0.6.0) UNRELEASED; urgency=low
ocemr (0.6.1) stable; urgency=medium

* afdcc05 Finish the upgrade to jquery-ui autocomplete

-- Philip J Freeman <elektron@halo.nu> Thu, 02 Dec 2021 11:09:57 -0800

ocemr (0.6.0) stable; urgency=low

* port to newer platform. target debian/ buster w/ django 1.11
* fix autocomplete bug (preggers bug) [d9fc952]
* ...

-- Philip J Freeman <elektron@halo.nu> Sat, 21 Jul 2018 16:27:42 -0700

Expand Down
19 changes: 3 additions & 16 deletions ocemr/static/css/jquery.autocomplete.css
Expand Up @@ -22,23 +22,23 @@
//#########################################################################
*/

.ac_results {
.ui-autocomplete {
padding: 0px;
border: 1px solid black;
background-color: white;
overflow: hidden;
z-index: 99999;
}

.ac_results ul {
.ui-autocomplete ul {
width: 100%;
list-style-position: outside;
list-style: none;
padding: 0;
margin: 0;
}

.ac_results li {
.ui-autocomplete li {
margin: 0px;
padding: 2px 5px;
cursor: default;
Expand All @@ -57,16 +57,3 @@
line-height: 16px;
overflow: hidden;
}

.ac_loading {
background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
background-color: #eee;
}

.ac_over {
background-color: #0A246A;
color: white;
}