added tagging function as requested in issue #7

This commit is contained in:
2025-06-22 16:20:45 +02:00
parent cf494401c8
commit 002e9c62db
48 changed files with 265 additions and 91 deletions

View File

@@ -131,14 +131,18 @@ figure {
text-decoration: none;
}
.navbar .title {
.navbar .navleft {
float: left;
}
.navbar .navcenter {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.navbar .license {
float: right;
.navbar .navright {
float: right
}
.navbar li .header {
@@ -150,18 +154,28 @@ figure {
.tooltip {
position: relative;
cursor: pointer;
}
.tooltip .tooltiptext {
display: none;
cursor: default;
width: max-content;
position: absolute;
z-index: 100;
opacity: 0;
transition: opacity 0.3s;
float: left;
}
.tooltip .infotext {
padding: 12px;
}
.tooltip .tagdropdown {
padding: 0;
}
.tooltip:hover .tooltiptext {
display: block;
opacity: 1;
@@ -172,6 +186,22 @@ figure {
opacity: 1;
}
.tooltip .tooltiptext .tagentry {
list-style: none;
width: 100%;
cursor: pointer;
margin: 0;
padding: 0;
}
.tooltip .tooltiptext .tagentry label {
cursor: pointer;
width: 100%;
height: 100%;
padding: 12px;
display: block;
}
.column {
-ms-flex: 12.5%;
flex: 12.5%;