File size: 901 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
// ==========================================================================
// Plugin icon
// ==========================================================================

.plugin-icon {
	float: left;
	margin-right: 16px;
	width: 56px;
	height: 56px;
	position: relative;
	transition: opacity 0.15s ease-in-out;

	@include breakpoint-deprecated( "<480px" ) {
		width: 40px;
		height: 40px;
	}
	@include breakpoint-deprecated( ">480px" ) {
		margin-right: 24px;
	}

	.gridicon {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 24px;
		height: 24px;
		fill: var(--color-text-inverted);
	}
	&.is-placeholder {
		background-color: var(--color-neutral-0);
		animation: loading-fade 1.6s ease-in-out infinite;
		opacity: 0.3;
	}
	&.is-fallback {
		background: var(--color-neutral-10);
	}
}

.plugin-icon__img {
	border-radius: 4px;
	width: 100%;
	height: 100%;
}