mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
Fix drop-down alignment on duplicates page
Hack the dropdown HTML to fix the dropdown menu appearing at the bottom of the "Duplicate recipes" section (which may be below the bottom of the browser window). This is probably not the correct fix, but it works. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
e10d21240c
commit
61e9b04859
|
@ -22,12 +22,12 @@
|
|||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class="pull-right">
|
||||
<a href="#" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||
<div class="pull-right dropdown">
|
||||
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||
Branch: <b>{{ url_branch }}</b>
|
||||
<b class="caret"></b>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
</button>
|
||||
<ul class="dropdown-menu" style="right: auto;">
|
||||
{% for branch in all_branches %}
|
||||
<li><a href="{% url this_url_name branch.name %}">
|
||||
{% if branch.name == url_branch %}<b>{% endif %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user