Projet

Général

Profil

0001-scss-style-fargo-previous-next-links-as-buttons-3336.patch

Frédéric Péters, 23 mai 2019 17:38

Télécharger (941 octets)

Voir les différences:

Subject: [PATCH] scss: style fargo previous/next links as buttons (#33364)

 static/includes/_misc.scss | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
static/includes/_misc.scss
500 500

  
501 501
}
502 502

  
503
// fargo
503 504
div.table-container {
504 505
	ul.pagination {
506
		min-height: 2rem;
505 507
		list-style: none;
506 508
		margin: 0 0 1em 0;
507
		padding: 2ex 1ex 1.5ex 1ex;
509
		padding: 2ex 1ex 1.5ex 0;
508 510
		li {
509 511
			float: left;
510 512
			line-height: 150%;
......
512 514
		> li.cardinality {
513 515
			float: right;
514 516
		}
517
		a {
518
			@extend %button !optional;
519
		}
515 520
	}
516 521
}
517 522

  
518
-