From acd441380db1fcccff7a0484947d4d45c0fcd111 Mon Sep 17 00:00:00 2001 From: Krinkle Date: Sun, 12 Jun 2011 00:17:02 +0000 Subject: [PATCH] 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) --- resources/jquery/jquery.makeCollapsible.css | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) 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; +} -- 2.20.1