Notings of Attention™
Acmlmboard 2 Released
Github/GIT | @acmlmboard
Chatting Places
Discord

Affiliates
Super Mario Bros. X | Kuribo64
Views: 8,953,607
Main | FAQ | IRC chat | Memberlist | Active users | Latest posts | Stats | Ranks | Online users | Search
03-29-24 10:02 AM
Guest: Register | Login

0 users currently in AcmlmBoard II Software/Bug Report Forum | 1 bot

Main - AcmlmBoard II Software/Bug Report Forum - spoiler unreadable (6)
Next newer thread | Next older thread

Pages: 1 2

Kiyoshi
Posted on 01-19-12 03:17 PM Link | ID: 3423
Normal User
HEY HEY HEY STAY OUTTA MAH SHED
Level: 64


Posts: 262/1016
EXP: 2165052
Next: 49045

Since: 01-02-12

Last post: 4357 days
Last view: 4328 days
I still prefer the ABXD-style buttons.

____________________
I don't give a flying feather

Nadia
Posted on 01-19-12 03:58 PM Link | ID: 3428
Normal User
Axew
Axew
Level: 23


Posts: 12/93
EXP: 59940
Next: 7783

Since: 01-05-12
From: Denmark

Last post: 2115 days
Last view: 1033 days
Posted by GreyMaria
What the fuck? Just found a peculiarity with that: the checkbox works on a per-instance basis, but the label attached to the checkbox only works for the first checkbox.

What the fuck is this sorcery.
That is because of the for attribute on that label. It is set to point to the checkbox in my post, which is the first checkbox of the page to have that ID set to it.

Kawa
Posted on 01-19-12 05:22 PM Link | ID: 3436
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 178/2423
EXP: 7974598
Next: 78212

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
<label><input type="checkbox"> Foo!</label>

For is overrated and only useful if you have, for example, the label and the input in two different parent elements -- like AcmlmBoards do.


Nadia
Posted on 01-20-12 08:26 AM Link | ID: 3523
Normal User
Axew
Axew
Level: 23


Posts: 13/93
EXP: 59940
Next: 7783

Since: 01-05-12
From: Denmark

Last post: 2115 days
Last view: 1033 days
Posted by Kawa
<label><input type="checkbox"> Foo!</label>

For is overrated and only useful if you have, for example, the label and the input in two different parent elements -- like AcmlmBoards do.
Though, how do you detect if the checkbox is checked with CSS in this way without putting the toggled content -inside- the label, which would be bad?

Kawa
Posted on 01-20-12 05:37 PM Link | ID: 3562
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 189/2423
EXP: 7974598
Next: 78212

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
I guess that's another thing it's useful for, then. No biggie.


Scrydan
Posted on 11-02-12 05:53 AM Link | ID: 28586
Normal User
Scryforce - A place that still exists. Neat.
Level: 86


Posts: 1125/2020
EXP: 5934127
Next: 207980

Since: 07-18-12
From: USA

Last post: 745 days
Last view: 727 days
Sorry for the sudden revival of many of these old threads but I am going through them all so we can put to rest any and all issues. I aim to get things done.

As for this issue, I plan to use my own board's spoiler (which is courtesy of @GlitchMr.)
It works well enough and it works on my phone's browser. We'll have to do some testing when 2.6 pops up for a test spin.

GlitchMr
Posted on 11-02-12 07:01 PM Link | ID: 28597
Normal User

Goomba

Level: 13


Posts: 12/27
EXP: 9165
Next: 1102

Since: 07-22-12

Last post: 3675 days
Last view: 3675 days
My spoiler was really lame, but I guess I won't stop you from using it on this board too ;). Also, it works on my phone web browser (it's just simple JavaScript). But hey, it's more likely that browser has JavaScript with DOM than :checked CSS3 property.

XerX
Posted on 03-15-15 07:52 PM (rev. 3 of 03-15-15 08:20 PM by XerX) Link | ID: 82965
Normal User


Level: 19


Posts: 3/69
EXP: 34089
Next: 1688

Since: 07-22-14

Last post: 3272 days
Last view: 2857 days
I don't mean to bump an old topic, but you could do this for the spoilers. It works fine when I tested it.

Anywhere in post.php (preferebly before the bbcodes to easily find it)

echo '<script type="text/javascript">
function showSpoiler(obj)
{
var inner = obj.parentNode.getElementsByTagName("div")[0];
if (inner.style.display == "none")
inner.style.display = "";
else
inner.style.display = "none";
}
</script>';


Then replace the spoiler bbcode with this line.


$msg=str_replace('[spoiler]','<div class="spoiler"><input type="button" onclick="showSpoiler(this);" value="Spoiler" /><div class="inner" style="display:none;">',$msg);


Then go to your boards css folder and add this to whatever themes you wish. (It's not required, but it will make it look nice. :) )

// Spoiler styling. input is the button and .inner is the container.
.spoiler
{
padding:1px;
}
input[type=button]
{
padding:1px;
background: #020202;
}
input[type=button]:hover
{
padding:1px;
background: #ff2EFF;
}
.spoiler .inner
{
border:1px solid #eee;
background: rgba(0,0,0,0.85);
padding:10px;margin:3px;
}


Hope this helps.
Pages: 1 2


Next newer thread | Next older thread
Main - AcmlmBoard II Software/Bug Report Forum - spoiler unreadable (6)


Acmlmboard v2.5.5 (10/04/2020)
© 2005-2024 Acmlm, Emuz, et al.

Page rendered in 0.060 seconds. (804KB of memory used)
MySQL - queries: 108, rows: 502/535, time: 0.048 seconds.