Projet

Général

Profil

0001-misc-add-support-for-action-links-with-icons-18807.patch

Serghei Mihai (congés, retour 15/05), 21 septembre 2017 21:06

Télécharger (1007 octets)

Voir les différences:

Subject: [PATCH] misc: add support for action links with icons (#18807)

 gadjo/static/css/gadjo.scss | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
gadjo/static/css/gadjo.scss
574 574
	display: block;
575 575
	border: none;
576 576
	padding: 0 0.5ex 0 2ex;
577
	&.delete {
577
	&.link-action-icon, &.delete {
578 578
		position: absolute;
579 579
		right: 0;
580 580
		padding-right: 2ex;
581 581
		top: 0;
582 582
		width: 1em;
583 583
		overflow: hidden;
584
		&:before {
584
		&::before {
585 585
			font-family: FontAwesome;
586
			content: "\f057"; /* remove-sign */
587 586
			padding-right: 3em;
588 587
		}
589 588
	}
589
	&.delete::before {
590
		content: "\f057"; /* remove-sign */
591
	}
590 592
}
591 593

  
592 594
ul.objects-list li span.badge {
593
-