aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/static
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-30 08:40:49 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-30 08:42:05 +0000
commit6ec84fb7f50647b4be72dc5c0b22e07cf4ec8eaf (patch)
treef2341363a1dc3061b5e9fbbd559a8c083dc012be /layerindex/static
parent979fb7980dbd00ac4063bb0b8516832d1bc530ac (diff)
downloadopenembedded-core-contrib-6ec84fb7f50647b4be72dc5c0b22e07cf4ec8eaf.tar.gz
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>
Diffstat (limited to 'layerindex/static')
-rw-r--r--layerindex/static/css/additional.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/layerindex/static/css/additional.css b/layerindex/static/css/additional.css
index 1e2e7b3eb5..a5fb269807 100644
--- a/layerindex/static/css/additional.css
+++ b/layerindex/static/css/additional.css
@@ -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;
}