diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-07-05 16:17:31 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-07-05 16:17:31 +0200 |
commit | c1c374701a24857283158e042266e1ec97dabce8 (patch) | |
tree | df35e6901610dfc01dd118724dde0729b194c07a /public/static/default.css | |
parent | 08ef617249b99001a7df4f1fda418891cd8f260a (diff) |
limit completion menu height
Diffstat (limited to 'public/static/default.css')
-rw-r--r-- | public/static/default.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/static/default.css b/public/static/default.css index 7f439ec..bc78954 100644 --- a/public/static/default.css +++ b/public/static/default.css @@ -409,6 +409,12 @@ div.displaysingle div.info { color: #0000ff; } +ul.ui-autocomplete { + max-height: 20em; + overflow-x: hidden; + overflow-y: auto; +} + div.geolocation { text-align: center; } |