Projet

Général

Profil

0001-misc-use-FontAwesome-icons-in-sortable-headers-9096.patch

Frédéric Péters, 13 décembre 2015 16:57

Télécharger (1,14 ko)

Voir les différences:

Subject: [PATCH] misc: use FontAwesome icons in sortable headers (#9096)

 wcs/qommon/static/css/dc2/admin.css | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)
wcs/qommon/static/css/dc2/admin.css
368 368
	cursor: inherit;
369 369
}
370 370

  
371
table.main th[data-field-sort-key] span:after {
372
	padding-left: 1ex;
373
	content: "\f0dc"; /* sort */
374
	font-family: FontAwesome;
375
}
376

  
371 377
table.main th.headerSortUp span:after {
372
	content: " \23f7"; /* down pointing triangle */
378
	padding-left: 1ex;
379
	content: "\f0dd"; /* sort-desc */
380
	font-family: FontAwesome;
373 381
}
374 382

  
375 383
table.main th.headerSortDown span:after {
376
	content: " \23f6"; /* up pointing triangle */
384
	padding-left: 1ex;
385
	content: "\f0de"; /* sort-asc */
386
	font-family: FontAwesome;
377 387
}
378 388

  
379 389
div.letters-nav {
380
-