From: Krinkle Date: Sun, 12 Jun 2011 00:17:02 +0000 (+0000) Subject: Remove resize/arrow cursors from jquery.makeCollapsible X-Git-Tag: 1.31.0-rc.0~29569 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=acd441380db1fcccff7a0484947d4d45c0fcd111;p=lhc%2Fweb%2Fwiklou.git Remove resize/arrow cursors from jquery.makeCollapsible * 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) --- diff --git a/resources/jquery/jquery.makeCollapsible.css b/resources/jquery/jquery.makeCollapsible.css index 27c17d187f..993fa8c68c 100644 --- a/resources/jquery/jquery.makeCollapsible.css +++ b/resources/jquery/jquery.makeCollapsible.css @@ -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; +}