Merge "Fix documentation for Revision::getComment and WikiPage::getComment"
[lhc/web/wiklou.git] / resources / src / jquery / jquery.makeCollapsible.css
1 /*
2 * Please do not add any CSS rules here that impact the positioning of the element
3 * e.g. padding, margin, position or float.
4 * These instead should live in jquery.makeCollapsible.styles
5 */
6
7 /* See also jquery.makeCollapsible.js */
8 .mw-collapsible-toggle {
9 float: right;
10 -moz-user-select: none;
11 -webkit-user-select: none;
12 -ms-user-select: none;
13 user-select: none;
14 }
15
16 .mw-collapsible-toggle-default:before {
17 content: '[';
18 }
19
20 .mw-collapsible-toggle-default:after {
21 content: ']';
22 }
23
24 .mw-customtoggle,
25 .mw-collapsible-toggle {
26 cursor: pointer;
27 }
28
29 /* Collapse links in captions should be inline */
30 caption .mw-collapsible-toggle,
31 .mw-content-ltr caption .mw-collapsible-toggle,
32 .mw-content-rtl caption .mw-collapsible-toggle,
33 .mw-content-rtl .mw-content-ltr caption .mw-collapsible-toggle,
34 .mw-content-ltr .mw-content-rtl caption .mw-collapsible-toggle {
35 float: none;
36 }