That is beyond the scope of this extension
That is beyond the scope of this extension
Code: Select all
@keyframes smooth-blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.toggle-box {
display: none;
}
.toggle-box + label {
cursor: pointer;
display: block;
font-weight: bold;
line-height: 21px;
margin-bottom: 5px;
color: #000000;
background-color: #00ffba;
border-radius: 10px;
font-size: 18px;
padding: 10px;
margin-top: 10px;
animation: smooth-blink 2s ease-in-out infinite; /* Durata animazione aumentata a 2s con transizione più fluida */
}
/* Aggiungi questa regola per mantenere il colore del testo durante l'hover */
.toggle-box + label:hover {
color: #000000 !important;
}
.toggle-box + label + div {
display: none;
margin-bottom: 10px;
}
.toggle-box:checked + label + div {
padding:7px;
display: table;
margin:auto;
border-radius: 10px;
}
/* Interrompi l'animazione quando il checkbox è selezionato */
.toggle-box:checked + label {
animation: none;
}
For the moment it seems to be holding up but it's not just the request for a color. You can choose between 6 green color variations. I don't know... but for now it works. Thanks anyway for your work.
Im surprise he had issues to. Been fantastic for me. Stopped Spam Registration on mine.
They also broke my "Sortable CAPTCHA" Ok... I'll try to install your ext again. I'm waiting for when it will also be compatible with the "contact admin" extension. Thank youDead Man wrote: ↑Mon Aug 12, 2024 10:40 pmIm surprise he had issues to. Been fantastic for me. Stopped Spam Registration on mine.
Was also able to intergrade it with this Contact Admin extension.
https://www.phpbb.com/customise/db/exte ... tact_admin
So instead of the Normal Captcha your pops up when using Contact Page. Cant remember what exactly I had change right now at top of my head but the annoying spam emails I was getting have stopped ever since putting this.