diff pylons_app/templates/base/base.html @ 270:408c66ecdad4

fixes a repo switcher display bug
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 07 Jun 2010 23:26:21 +0200
parents 6ada8c223374
children cd2ee462fc2c
line wrap: on
line diff
--- a/pylons_app/templates/base/base.html	Mon Jun 07 14:54:27 2010 +0200
+++ b/pylons_app/templates/base/base.html	Mon Jun 07 23:26:21 2010 +0200
@@ -91,8 +91,8 @@
 	        <ul class="page-nav">
 				<li>
 					<a id="repo_switcher" title="${_('Switch repository')}" href="#">&darr;</a>
-					<div id="switch_repos" style="display:none;position: absolute;width: 150px;height: 25px">
-						<select id="repos_list" size="=10">
+					<div id="switch_repos" style="display:none;position: absolute;height: 25px">
+						<select id="repos_list" size="=10" style="min-width: 150px">
 						%for repo in sorted(x.name.lower() for x in c.cached_repo_list.values()):
 							<option value="${repo}">${repo}</option>
 						%endfor