1
2/* blockquote */
3.dokuwiki blockquote.blockquote-plugin {
4    border: 1px dotted __border__;
5    background: __background_alt__ url(images/blockquote.gif) no-repeat 0.3em 0.3em;
6    padding: 1em;
7    /* prevent plugin to interfere with expanded ToC when there's one */
8    overflow: hidden;
9    /* Fix placement with the rule above (original margins were: 1em 3em 1em 3em */
10    margin: 1em auto 1em auto;
11    /* Get closer to initial design when there's enough space (ie. 3em left and right margins) */
12    max-width: 90%;
13}
14
15/* cite */
16.dokuwiki cite.blockquote-plugin {
17    font-style: italic;
18}
19
20.dokuwiki blockquote.blockquote-plugin cite.blockquote-plugin {
21    text-align: right;
22    display: block;
23}
24
25.dokuwiki blockquote.blockquote-plugin cite.blockquote-plugin:before {
26    content: "—";
27}
28
29/* q */
30.dokuwiki q.blockquote-plugin {
31    border: 1px dotted __border__;
32    background: __background_alt__;
33    /* CSS quotes property quotation mark entity numbers can be customized */
34    quotes: "\0022" "\0022" "\0027" "\0027";
35}
36