##// END OF EJS Templates
fixes a repo switcher display bug
marcink -
r270:408c66ec default
parent child Browse files
Show More
@@ -91,8 +91,8 b' def is_current(selected):'
91 <ul class="page-nav">
91 <ul class="page-nav">
92 <li>
92 <li>
93 <a id="repo_switcher" title="${_('Switch repository')}" href="#">&darr;</a>
93 <a id="repo_switcher" title="${_('Switch repository')}" href="#">&darr;</a>
94 <div id="switch_repos" style="display:none;position: absolute;width: 150px;height: 25px">
94 <div id="switch_repos" style="display:none;position: absolute;height: 25px">
95 <select id="repos_list" size="=10">
95 <select id="repos_list" size="=10" style="min-width: 150px">
96 %for repo in sorted(x.name.lower() for x in c.cached_repo_list.values()):
96 %for repo in sorted(x.name.lower() for x in c.cached_repo_list.values()):
97 <option value="${repo}">${repo}</option>
97 <option value="${repo}">${repo}</option>
98 %endfor
98 %endfor
General Comments 0
You need to be logged in to leave comments. Login now