Projet

Général

Profil

0001-scss-move-remove-file-icon-to-the-top-right-corner-3.patch

Frédéric Péters, 27 février 2020 21:26

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH 1/3] scss: move "remove file" icon to the top right corner
 (#36038)

 static/includes/wcs/_bulk.scss | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
static/includes/wcs/_bulk.scss
448 448
	color: transparent;
449 449
	display: inline-block;
450 450
	width: 16px;
451
	position: relative;
452 451
	text-indent: -10000px;
452
	position: absolute;
453
	top: 0;
454
	right: 0;
453 455
	&::before {
454 456
		font-family: FontAwesome;
455 457
		content: "\f057";  // times-circle
456 458
		color: $button-background;
457 459
		text-indent: 0;
458 460
		position: absolute;
461
		display: block;
459 462
		top: 0;
460 463
		left: 0;
464
		right: 0;
465
		width: 2rem;
466
		height: 2rem;
467
		line-height: 2rem;
468
		text-align: center;
461 469
	}
462 470
}
463 471

  
464
-