Merge "Unsetting the email address for a user when the email address is invalidated."
[lhc/web/wiklou.git] / resources / src / jquery / jquery.makeCollapsible.css
1 /* See also jquery.makeCollapsible.js */
2 .mw-collapsible-toggle {
3 float: right;
4 -moz-user-select: none;
5 -webkit-user-select: none;
6 -ms-user-select: none;
7 user-select: none;
8 }
9 .mw-customtoggle,
10 .mw-collapsible-toggle {
11 cursor: pointer;
12 }
13
14 /* collapse links in captions should be inline */
15 caption .mw-collapsible-toggle {
16 float: none;
17 }
18
19 /* list-items go as wide as their parent element, don't float them inside list items */
20 li .mw-collapsible-toggle {
21 float: none;
22 }
23
24 /* the added list item should have no list-style */
25 .mw-collapsible-toggle-li {
26 list-style: none;
27 }