File size: 1,184 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 |
.profile-link {
margin-bottom: 15px;
position: relative;
padding-left: 62px;
height: 50px;
&.is-placeholder {
.profile-link__image-link,
.profile-link__title,
.profile-link__url,
.profile-link__remove {
color: transparent;
background-color: var(--color-neutral-0);
animation: loading-fade 1.6s ease-in-out infinite;
}
.profile-link__title {
height: 18px;
margin-bottom: 2px;
}
.profile-link__url {
height: 12px;
}
}
.profile-link__remove {
float: none;
position: absolute;
top: 0;
right: 0;
}
}
.profile-link__image-link {
display: block;
height: 32px;
width: 50px;
position: absolute;
top: 0;
left: 0;
border: 1px solid var(--color-neutral-0);
}
.profile-link__link {
text-decoration: none;
}
.profile-link__title {
color: var(--color-neutral-70);
float: left;
font-size: $font-body-small;
font-weight: 400;
line-height: 1.4;
overflow: hidden;
white-space: nowrap;
width: 100%;
text-decoration: none;
&::after {
@include long-content-fade( $size: 45% );
}
}
.profile-link__url {
font-size: $font-body-extra-small;
line-height: 1.4;
color: var(--color-neutral-light);
float: left;
clear: left;
}
|