1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 09:34:10 +02:00

Increase click target for checkboxes (thanks to Roman)

This commit is contained in:
Jakub Vrana
2013-05-20 10:06:23 -07:00
parent bf94b88503
commit 68aba96c72
8 changed files with 27 additions and 17 deletions

View File

@@ -22,6 +22,7 @@ tbody tr:hover td, tbody tr:hover th { background: #eee; }
pre { margin: 1em 0 0; }
input[type=image] { vertical-align: middle; }
input.default { box-shadow: 1px 1px 1px rgba(0, 0, 0, .5); }
.block { display: block; }
.version { color: #777; font-size: 67%; }
.js .hidden, .nojs .jsonly { display: none; }
.js .column { position: absolute; background: #ddf; padding: .3em 1ex .3em 0; margin-top: -.3em; }

View File

@@ -416,7 +416,7 @@ function columnShow(checked, column) {
*/
function editingHideDefaults() {
if (innerWidth < document.documentElement.scrollWidth) {
document.getElementById('defaults').checked = false;
document.getElementById('form')['defaults'].checked = false;
columnShow(false, 5);
}
}