Remove resize/arrow cursors from jquery.makeCollapsible
authorKrinkle <krinkle@users.mediawiki.org>
Sun, 12 Jun 2011 00:17:02 +0000 (00:17 +0000)
committerKrinkle <krinkle@users.mediawiki.org>
Sun, 12 Jun 2011 00:17:02 +0000 (00:17 +0000)
* In Safari they look nice (a visual clue which direction we're heading on-click) but on other browsers there is only a general arrow-icon that points both up and down, and other browsers have an even weirder cursor for this. Summarized: It's inconsistent and redundant with the text-label we already have.

(Poke r79083 CR)

resources/jquery/jquery.makeCollapsible.css

index 27c17d1..993fa8c 100644 (file)
@@ -1,20 +1,14 @@
 /* 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;
+       float: right;
 }
+
 /* list-items go as wide as their parent element, don't float them inside list items */
 li .mw-collapsible-toggle {
-       float:none;
+       float: none;
 }
+
 /* the added list item should have no list-style */
 .mw-collapsible-toggle-li {
-       list-style:none;
-}
\ No newline at end of file
+       list-style: none;
+}