From: Fomafix Date: Fri, 22 Dec 2017 11:11:26 +0000 (+0100) Subject: jquery.tablesorter.less: Simplify by using less syntax X-Git-Tag: 1.31.0-rc.0~1130 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=c7f68fdd206c60577891c7045e718bd7249975b0;p=lhc%2Fweb%2Fwiklou.git jquery.tablesorter.less: Simplify by using less syntax Change-Id: I4f7ee23c02c6ef0d39cb0135e6669f23b6977c59 --- diff --git a/resources/src/jquery/jquery.tablesorter.less b/resources/src/jquery/jquery.tablesorter.less index 11f472ec01..ce24b0de65 100644 --- a/resources/src/jquery/jquery.tablesorter.less +++ b/resources/src/jquery/jquery.tablesorter.less @@ -2,18 +2,20 @@ /* Table Sorting */ -table.jquery-tablesorter th.headerSort { - .background-image-svg( 'images/sort_both.svg', 'images/sort_both.png' ); - cursor: pointer; - background-repeat: no-repeat; - background-position: center right; - padding-right: 21px; -} +table.jquery-tablesorter { + th.headerSort { + .background-image-svg( 'images/sort_both.svg', 'images/sort_both.png' ); + cursor: pointer; + background-repeat: no-repeat; + background-position: center right; + padding-right: 21px; + } -table.jquery-tablesorter th.headerSortUp { - .background-image-svg( 'images/sort_up.svg', 'images/sort_up.png' ); -} + th.headerSortUp { + .background-image-svg( 'images/sort_up.svg', 'images/sort_up.png' ); + } -table.jquery-tablesorter th.headerSortDown { - .background-image-svg( 'images/sort_down.svg', 'images/sort_down.png' ); + th.headerSortDown { + .background-image-svg( 'images/sort_down.svg', 'images/sort_down.png' ); + } }