Skip to content

Commit

Permalink
mod_admin: fix a problem where in tree-lists the dropdown menu was hi…
Browse files Browse the repository at this point in the history
…dden. Fixes #1603
  • Loading branch information
mworrell committed Feb 9, 2017
1 parent e9553f7 commit c1a1d73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion modules/mod_admin/lib/css/zotonic-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,6 @@ ul.tree-list li.menu-item > div {
position: relative;
margin: -1px 0 0 0;
padding: 0;
overflow: hidden;
background-image: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
Expand Down Expand Up @@ -1371,6 +1370,9 @@ ul.tree-list.tree-list-menu li.menu-item span.category {
ul.tree-list.connections-list {
min-height: 12px;
}
ul.tree-list.connections-list li.menu-item > div {
overflow: hidden;
}
.widget {
margin-bottom: 15px;
border-bottom: none;
Expand Down
5 changes: 4 additions & 1 deletion modules/mod_admin/lib/less/tree-list.less
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ ul.tree-list {
position: relative;
margin: -1px 0 0 0;
padding: 0;
overflow: hidden;
#3L > .gradient(#ffffff, @backgroundColorLightest);

&:hover {
Expand Down Expand Up @@ -171,4 +170,8 @@ ul.tree-list {

ul.tree-list.connections-list {
min-height: 12px;

li.menu-item > div {
overflow: hidden;
}
}

0 comments on commit c1a1d73

Please sign in to comment.