File size: 2,737 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
%notification-settings-blog-settings-flexbox {
	display: flex;
	flex: 0 0 auto;
	justify-content: flex-end;
	align-items: center;
}

.notification-settings-blog-settings,
.notification-settings-blog-settings-placeholder {
	&.is-expanded {
		margin-top: 16px;
	}

	&.card {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.blogs-settings__header,
.notification-settings-blog-settings-placeholder__header {
	display: flex;
	color: var(--color-text-subtle);

	@include breakpoint-deprecated( ">480px" ) {
		cursor: pointer;
	}

	.site__content {
		padding-left: 0;
	}
}

.blogs-settings__header-legend {
	@extend %notification-settings-blog-settings-flexbox;
	margin-right: 10px;
}

.blogs-settings__header-expand {
	position: relative;
	top: 4px;

	@extend %notification-settings-blog-settings-flexbox;
	color: var(--color-neutral-0);
}

.notification-settings-blog-settings-placeholder__blog {
	box-sizing: border-box;
	display: flex;
	flex: 1 0 auto;
	justify-content: space-between;
	padding: 0;
	position: relative;
}

.notification-settings-blog-settings-placeholder__blog__content {
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	padding: 16px 16px 16px 0;
	position: relative;
	width: 100%;
}

.notification-settings-blog-settings-placeholder__blog__content__icon {
	animation: loading-fade 1.6s ease-in-out infinite;
	background: var(--color-neutral-10);
	background-color: var(--color-neutral-0);
	position: relative;
	border: 1px solid var(--studio-white);
	height: 32px;
	width: 32px;
	overflow: hidden;
	align-self: center;
	margin-right: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.notification-settings-blog-settings-placeholder__blog__content__icon__gridicon {
	fill: #fff;
}

.notification-settings-blog-settings-placeholder__blog__info {
	width: 0; // Firefox needs explicit width (even 0)
	flex: 1 0 auto;
}

.notification-settings-blog-settings-placeholder__blog__info__title {
	animation: loading-fade 1.6s ease-in-out infinite;
	background-color: var(--color-neutral-0);
	width: 150px;
	display: block;
	font-weight: 400;
	line-height: 1.4;
}

.notification-settings-blog-settings-placeholder__blog__info__domain {
	animation: loading-fade 1.6s ease-in-out infinite;
	background-color: var(--color-neutral-0);
	display: block;
	width: 250px;
	font: {
		size: 0.8em;
		style: italic;
	}
	margin-top: 1px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.notification-settings-blog-settings-placeholder__legend {
	@extend %notification-settings-blog-settings-flexbox;

	em {
		animation: loading-fade 1.6s ease-in-out infinite;
		background-color: var(--color-neutral-0);
		width: 160px;
		height: 22px;
	}
}