20 lines
No EOL
492 B
CSS
20 lines
No EOL
492 B
CSS
/* See also jquery.makeCollapsible.js */
|
|
.mw-collapsible-toggle {
|
|
float:right;
|
|
}
|
|
.mw-collapsible-toggle-expanded,
|
|
.mw-collapsible-toggle-expanded a {
|
|
cursor:n-resize;
|
|
}
|
|
.mw-collapsible-toggle-collapsed,
|
|
.mw-collapsible-toggle-collapsed a {
|
|
cursor:s-resize;
|
|
}
|
|
/* list-items go as wide as their parent element, don't float them inside list items */
|
|
li .mw-collapsible-toggle {
|
|
float:none;
|
|
}
|
|
/* the added list item should have no list-style */
|
|
.mw-collapsible-toggle-li {
|
|
list-style:none;
|
|
} |