README.txt |
README.txt |
|
Overview
--------
This module allows users to hide potential "spoiler" content by inserting them
between [spoiler][/spoiler] tags. These tags will be converted to HTML by this
filter and the relevant CSS rules will set the foreground and… |
spoiler.css |
spoiler.css |
|
.spoiler-warning span {
font-weight: bold;
}
.spoiler .spoiler-content {
padding: 1em;
border: 1px solid #DDD;
background-color: #CCC;
color: #CCC;
}
.spoiler-js {
border: 1px dotted;
padding: 1em;
}
.spoiler-js .spoiler-warning… |
spoiler.inc |
wysiwyg/spoiler.inc |
|
Wysiwyg module's plugin file. |
spoiler.info |
spoiler.info |
|
name = Spoiler
description = A filter that masks 'spoilers' using CSS.
core = 7.x |
spoiler.install |
spoiler.install |
|
Installation and uninstallation scripts for the spoiler module. |
spoiler.module |
spoiler.module |
|
Spoiler module: This module allows users to hide potential "spoiler"
content by inserting them between [spoiler][/spoiler] tags. These tags will
be converted to HTML by this filter. If JavaScript is available, then a
button will be presented… |