mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
editlayer: fix checkboxes not showing up in Chromium
Somehow due to some CSS shenanigans these checkboxes had 0 width in Chromium and thus were invisible. A style on the td had to be used because a style on the input doesn't seem to fix it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
979fb7980d
commit
6ec84fb7f5
|
@ -68,7 +68,7 @@ padding: 8px;
|
|||
padding: 4px;
|
||||
}
|
||||
|
||||
.scrolling checkbox, label {
|
||||
.scrolling label {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
@ -84,6 +84,10 @@ padding: 8px;
|
|||
width: 50%;
|
||||
}
|
||||
|
||||
.checkboxtd input {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
#maintainers {
|
||||
padding-top: 0.75em;
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
{% for deplayer in deplistlayers %}
|
||||
{% if deplayer.id in form.checked_deps %}
|
||||
<tr>
|
||||
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" checked="checked" /></td>
|
||||
<td class="checkboxtd"><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" checked="checked" /></td>
|
||||
{% if deplayer.status = 'N' %}
|
||||
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (unpublished)</label></td>
|
||||
{% else %}
|
||||
|
@ -74,7 +74,7 @@
|
|||
{% for deplayer in deplistlayers %}
|
||||
{% if not deplayer.id in form.checked_deps %}
|
||||
<tr>
|
||||
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" /></td>
|
||||
<td class="checkboxtd"><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" /></td>
|
||||
{% if deplayer.status = 'N' %}
|
||||
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (unpublished)</label></td>
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user