Merge branch 'change-color-of-buttons' of ssh://git.koeln.ccc.de:2222/snoopy/in-c4 into change-color-of-buttons

This commit is contained in:
Shy 2024-05-08 07:30:34 +02:00
commit 6b3783e69f
2 changed files with 31 additions and 2 deletions

View file

@ -54,6 +54,21 @@ h1, h1 a {
font-size: smaller; font-size: smaller;
} }
#knowntypes button {
color: #220;
background-color: #dfaa37;
border: 1px solid #220;
border-radius: 4px;
padding: 0.2em 0.4em;
margin: 0.2em;
font-weight: bolder;
cursor: pointer;
}
#knowntypes button:hover, #knowntypes button:focus {
background-color: #f5c251;
}
.btn { .btn {
box-shadow: 0 3px 6px -1px rgba(0,0,0,0.3); box-shadow: 0 3px 6px -1px rgba(0,0,0,0.3);
} }

View file

@ -65,8 +65,22 @@ function knownTypes() {
map[i.type] = true; map[i.type] = true;
} }
} }
let types = Object.keys(map).sort().join(', ')
document.getElementById('knowntypes').textContent = `Known types: ${types}.`; // Get location in document.
const known_types = document.getElementById('knowntypes');
known_types.textContent = `Known types: `;
// Create a button for every known type.
for (let label of Object.keys(map).sort()) {
btn = document.createElement('button');
btn.setAttribute('type', 'button');
btn.textContent = label;
btn.addEventListener('click', function() {
document.getElementById('type').value = label;
});
known_types.appendChild(btn);
}
} }
function save() { function save() {