Projet

Général

Profil

0001-scss-move-position-of-loading-select2-line-when-ther.patch

Frédéric Péters, 10 février 2020 11:41

Télécharger (1001 octets)

Voir les différences:

Subject: [PATCH] scss: move position of "loading" select2 line when there are
 results (#39684)

 static/includes/_forms.scss | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
static/includes/_forms.scss
360 360
			top: -6px;
361 361
		}
362 362
	}
363
	.select2-results {
364
		.loading-results {
365
			position: absolute;
366
			display: inline-block;
367
			right: 0;
368
			color: black;
369
			@media screen and (max-width: $mobile-limit) {
370
				display: none;
371
			}
372
		}
373
		.loading-results:last-child {
374
			position: static;
375
			display: block;
376
			color: inherit;
377
		}
378
	}
363 379
}
364 380

  
365 381
div.select2-container.select2-drop-above .select2-choice {
366
-