mirror of
https://github.com/php/web-wiki.git
synced 2025-08-01 16:23:22 +00:00
Update BlockQuote Plugin to 2017-08-25
This commit is contained in:
@ -4,4 +4,4 @@
|
||||
*
|
||||
*/
|
||||
|
||||
$conf['addStyling'] = 0;
|
||||
$conf['addStyling'] = 1;
|
||||
|
@ -1,7 +1,7 @@
|
||||
base blockquote
|
||||
author Anika Henke (previous author: Gina Haeussge)
|
||||
email anika@selfthinker.org
|
||||
date 2016-04-03
|
||||
date 2017-08-25
|
||||
name Blockquote Plugin
|
||||
desc Write quotations in a semantically correct way
|
||||
url https://www.dokuwiki.org/plugin:blockquote
|
||||
|
@ -1,10 +1,15 @@
|
||||
|
||||
/* blockquote */
|
||||
.dokuwiki blockquote.blockquote-plugin {
|
||||
margin: 1em 3em 1em 3em;
|
||||
border: 1px dotted __border__;
|
||||
background: __background_alt__ url(images/blockquote.gif) no-repeat 0.3em 0.3em;
|
||||
padding: 1em;
|
||||
/* prevent plugin to interfere with expanded ToC when there's one */
|
||||
overflow: hidden;
|
||||
/* Fix placement with the rule above (original margins were: 1em 3em 1em 3em */
|
||||
margin: 1em auto 1em auto;
|
||||
/* Get closer to initial design when there's enough space (ie. 3em left and right margins) */
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
/* cite */
|
||||
@ -25,4 +30,6 @@
|
||||
.dokuwiki q.blockquote-plugin {
|
||||
border: 1px dotted __border__;
|
||||
background: __background_alt__;
|
||||
/* CSS quotes property quotation mark entity numbers can be customized */
|
||||
quotes: "\0022" "\0022" "\0027" "\0027";
|
||||
}
|
||||
|
Reference in New Issue
Block a user