Add first support for booleans in specific poi form section

This commit is contained in:
leosw
2021-05-25 22:53:22 +02:00
parent 26ddc99766
commit 0f8259fe43
3 changed files with 82 additions and 2 deletions

View File

@@ -103,6 +103,33 @@ form.form input[type=radio]+label img {
height: 32px;
}
form.form .threecb:before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
vertical-align: middle;
padding: 3px 8px 2px 4px;
margin: 5px 10px 5px 0;
display: inline-block;
width: 21px;
background: #ddd;
font-size: 25px;
}
form.form .threecb.check:before {
content: "\f058"; /* check */
}
form.form .threecb.uncheck:before {
content: "\f057"; /* cross */
}
form.form .threecb.intermediate:before {
content: "\f059"; /* question */
}
#abstract {
text-align: center;
color: #555;
font-style: italic;
}
/*****************************************
Controls of the map
*****************************************/