Projet

Général

Profil

0001-add-pwa-webpush-cell-style-25462.patch

Anonyme, 27 août 2018 09:41

Télécharger (864 octets)

Voir les différences:

Subject: [PATCH] add pwa webpush cell style (#25462)

 static/includes/_cells.scss | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
static/includes/_cells.scss
599 599
		}
600 600
	}
601 601
}
602

  
603
.cell.webpushcell {
604

  
605
	.notification-dialog {
606

  
607
		margin: 1em;
608

  
609
		.checkbox {
610
			display: flexbox;
611
			display: -ms-flexbox;
612

  
613
			@include vendor-prefix(justify-content, center);
614
			cursor: pointer;
615
			padding: 1em;
616

  
617
			.checkbox_input {
618
				display: inline;
619
			}
620

  
621
			.checkbox_text {
622
				margin: 0
623
			}
624
		}
625
	}
626
}
602
-