Projet

Général

Profil

0001-scss-add-a-background-to-selectable-datetimes-50245.patch

Frédéric Péters, 18 janvier 2021 10:13

Télécharger (1,11 ko)

Voir les différences:

Subject: [PATCH] scss: add a background to selectable datetimes (#50245)

 static/includes/_misc.scss | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
static/includes/_misc.scss
663 663
	& > div {
664 664
		flex: 0 1 auto;
665 665
		width: 20%;
666
		padding: 0 2px;
666 667
		text-align: center;
667 668
		display: none;
668 669
	}
......
690 691
			opacity: 0.3;
691 692
			cursor: not-allowed;
692 693
		}
694
		border-radius: $button-border-radius;
695
		margin-bottom: 4px;
693 696
	}
694 697

  
695 698
	span.selectable {
699
		background: transparentize($button-background, 0.8);
696 700
		&:hover {
697
			background: #ccc;
698
			color: black;
701
			background: $button-background;
702
			color: $button-color;
703
			box-shadow: 1px 0px 5px $button-background;
699 704
		}
700 705
		&.on {
701 706
			background: $button-background;
702
-