File size: 1,868 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.notification-settings-form__streams {
	display: flex;
}

.notification-settings-form-stream-selector {
	.form-select {
		width: 100%;
		margin: 0;
	}

	@include breakpoint-deprecated( ">480px" ) {
		display: none;
	}
}

.notification-settings-form-labels {
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;

	.notification-settings-form-header__title {
		justify-content: flex-start;
	}
}

.notification-settings-form-label-list {
	list-style: none;
	margin: 15px 10px 0;
}

.notification-settings-form-label-list__item {
	height: 40px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.notification-settings-form-header {
	display: none;

	@include breakpoint-deprecated( ">480px" ) {
		display: flex;
		border-top: solid 1px var(--color-neutral-0);
		border-bottom: solid 1px var(--color-neutral-0);
		height: 50px;
	}
}

.notification-settings-form-header__title {
	display: flex;
	flex: 1 0 auto;
	align-items: center;
	text-transform: uppercase;
	justify-content: center;
	color: var(--color-text-subtle);
	font-size: $font-body-extra-small;
	padding: 10px;

	.form-select {
		max-width: 125px;
	}
}

.notification-settings-form-stream {
	display: none;

	&.selected-stream {
		display: flex;
		flex: 1 0 auto;
		flex-direction: column;
	}

	@include breakpoint-deprecated( ">480px" ) {
		display: flex;
		flex: 1 0 auto;
		flex-direction: column;

		&.selected-stream {
			display: none;
		}
	}
}

.notification-settings-form-stream-options {
	color: var(--color-neutral-light);
	margin: 15px 0 10px;
	display: block;
}

.notification-settings-form-stream-options__item {
	display: flex;
	height: 40px;
	justify-content: center;
	align-items: center;

	// wp component override: margin originally designed for spacing the label to the right of the checkbox
	& .components-checkbox-control__input-container {
		margin-right: 0;
	}
}