Exclude toggle button of collapsible elements from user selection
[lhc/web/wiklou.git] / resources / 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
10 /* collapse links in captions should be inline */
11 caption .mw-collapsible-toggle {
12 float: none;
13 }
14
15 /* list-items go as wide as their parent element, don't float them inside list items */
16 li .mw-collapsible-toggle {
17 float: none;
18 }
19
20 /* the added list item should have no list-style */
21 .mw-collapsible-toggle-li {
22 list-style: none;
23 }