Projet

Général

Profil

0001-misc-add-support-for-upload-links-in-single-links-li.patch

Serghei Mihai (congés, retour 15/05), 20 septembre 2017 11:01

Télécharger (984 octets)

Voir les différences:

Subject: [PATCH] misc: add support for upload links in single-links lists
 (#18807)

 gadjo/static/css/gadjo.scss | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
gadjo/static/css/gadjo.scss
574 574
	display: block;
575 575
	border: none;
576 576
	padding: 0 0.5ex 0 2ex;
577
	&.delete {
577
	&.delete, &.upload {
578 578
		position: absolute;
579 579
		right: 0;
580 580
		padding-right: 2ex;
......
587 587
			padding-right: 3em;
588 588
		}
589 589
	}
590
	&.upload {
591
		&:before {
592
			font-family: FontAwesome;
593
			content: "\f093"; /* upload-sign */
594
			padding-right: 3em;
595
		}
596
	}
590 597
}
591 598

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