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

Affiliates
Super Mario Bros. X | Kuribo64 | NeoRHDN
Views: 16,904,215
Main | FAQ | IRC chat | Memberlist | Active users | Latest posts | Stats | Ranks | Online users | Search
11-08-25 08:13 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, in | ID: 3423
Normal User
HEY HEY HEY STAY OUTTA MAH SHED
Level: 65


Posts: 262/1016
EXP: 2303280
Next: 32348

Since: 01-02-12

Last post: 4946 days
Last view: 4917 days
I still prefer the ABXD-style buttons.

____________________
I don't give a flying feather

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


Posts: 12/93
EXP: 63769
Next: 3954

Since: 01-05-12
From: Denmark

Last post: 2704 days
Last view: 1622 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, in | ID: 3436
Retired Staff

Not okay
Prophet of Celestia
Level: 95


Posts: 178/2423
EXP: 8483620
Next: 184987

Since: 01-01-12
From: The Netherlands

Last post: 2589 days
Last view: 904 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, in | ID: 3523
Normal User
Axew
Axew
Level: 23


Posts: 13/93
EXP: 63769
Next: 3954

Since: 01-05-12
From: Denmark

Last post: 2704 days
Last view: 1622 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, in | ID: 3562
Retired Staff

Not okay
Prophet of Celestia
Level: 95


Posts: 189/2423
EXP: 8483620
Next: 184987

Since: 01-01-12
From: The Netherlands

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


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


Posts: 1125/2020
EXP: 6329930
Next: 62844

Since: 07-18-12
From: USA

Last post: 1334 days
Last view: 1316 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, in | ID: 28597
Normal User

Goomba

Level: 13


Posts: 12/27
EXP: 9777
Next: 490

Since: 07-22-12

Last post: 4264 days
Last view: 4264 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, in (rev. 3 of 03-15-15 08:20 PM by XerX) | ID: 82965
Normal User


Level: 20


Posts: 3/69
EXP: 36818
Next: 5621

Since: 07-22-14

Last post: 3861 days
Last view: 3446 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.6 (06/11/2024)
© 2005-2025 Acmlm, Emuz, et al.

Page rendered in 0.070 seconds. (805KB of memory used)
MySQL - queries: 112, rows: 511/544, time: 0.057 seconds.