latest working copy, file backup, tbl entry done

This commit is contained in:
color.diff=auto
2021-03-21 23:43:02 -06:00
parent 35b3f1ae00
commit 9e494febda
12 changed files with 587 additions and 393 deletions

30
res/app.js Normal file
View File

@@ -0,0 +1,30 @@
function val() {
w = document.getElementById("w-select");
w.value = '';
a = document.getElementById("a-select");
a.required = "required";
}
function val2() {
a = document.getElementById("a-select");
a.value = '';
w = document.getElementById("w-select");
w.required = "required";
}
$(document).ready(function () {
$('.form-text').hide();
$('.help').click(function () {
$('.form-text').slideToggle();
});
$('#op1').val(this.checked);
$('#op1').change(function () {
if (this.checked) {
$('option[disabled="disabled"]').hide();
} else {
$('option[disabled="disabled"]').show();
}
});
});

37
res/style.css Normal file
View File

@@ -0,0 +1,37 @@
input {
width: 108px;
padding: 5px;
margin: 5xp;
text-align: center;
border: 0px;
background: #eef;
}
.form-text,
.help {
font-size: 11px;
color: #999;
}
.form-text {
background: white;
padding: 5px;
border-radius: 4px;
}
select,
input,
option {
border: #ccc;
}
.row {
padding: 0 5px;
}
.col-2,
.col-3,
.col-4 {
padding: 5px;
}