summaryrefslogtreecommitdiff
path: root/src/main/webapp/css
diff options
context:
space:
mode:
authorRyan Campbell <ryanjcampbell@google.com>2017-06-22 11:00:07 -0700
committerRyan Campbell <ryanjcampbell@google.com>2017-06-23 16:25:52 -0700
commit96483d7185facc875122c96fa437253f09fc2aff (patch)
treeafe5439e1117e8bf0610367c1b8307b4f87881b3 /src/main/webapp/css
parentcdc8a074fcc79c15aa938fbadb499a75009e7740 (diff)
downloaddashboard-96483d7185facc875122c96fa437253f09fc2aff.tar.gz
Fix bugs in search autocomplete.
Better handle text overflow (both x and y). Properly hide the ui helper. Test: local Bug: 62903823 Change-Id: I8ee1c615650694ea66c6df517b40d5d53a637853
Diffstat (limited to 'src/main/webapp/css')
-rw-r--r--src/main/webapp/css/search_header.css12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/webapp/css/search_header.css b/src/main/webapp/css/search_header.css
index 8174ec2..8932730 100644
--- a/src/main/webapp/css/search_header.css
+++ b/src/main/webapp/css/search_header.css
@@ -75,23 +75,23 @@
overflow-x: visible;
width:auto;
}
-.search-bar-menu .ui-menu {
- overflow-y: auto;
+.search-bar-menu.ui-menu {
+ overflow: auto;
z-index: 100;
- max-height: 50%;
+ max-height: 75%;
}
-.search-bar-menu .ui-menu-item {
+.search-bar-menu .ui-menu-item {
font-size: 16px;
padding: 4px 10px;
transition: background-color .25s;
}
-.search-bar-menu .ui-menu-item:hover {
+.search-bar-menu .ui-menu-item:hover {
background-color: #e0f2f1;
}
.search-bar-menu .ui-menu-item:active {
background-color: #b2dfdb;
}
-.search-bar-menu .ui-helper-hidden-accessible {
+.ui-helper-hidden-accessible {
display: none;
}