soapbox/app/styles/components/profile_hover_card.scss

113 wiersze
1.8 KiB
SCSS
Czysty Zwykły widok Historia

.display-name__account {
position: relative;
cursor: pointer;
}
2020-08-02 23:03:37 +00:00
.display-name .profile-hover-card {
white-space: normal;
}
.profile-hover-card {
position: absolute;
pointer-events: none;
opacity: 0;
transition-property: opacity;
transition-duration: 0.2s;
2020-08-03 04:01:38 +00:00
width: 320px;
z-index: 200;
top: 0;
left: 0;
&--visible {
2020-08-02 23:04:49 +00:00
opacity: 1;
pointer-events: all;
}
.profile-hover-card__container {
2020-08-02 23:31:32 +00:00
@include standard-panel;
position: relative;
2020-08-02 23:31:32 +00:00
overflow: hidden;
}
.profile-hover-card__action-button {
z-index: 999;
position: absolute;
right: 20px;
2020-08-03 04:10:36 +00:00
top: 40px;
}
.user-panel {
box-shadow: none;
2020-08-02 23:03:37 +00:00
width: auto;
.user-panel-stats-item a strong {
text-decoration: none;
}
2020-08-03 04:01:38 +00:00
&__header {
height: 96px;
}
.user-panel-stats-item {
margin-right: 10px;
&__label,
&__value {
display: inline;
font-size: 15px;
}
&__value {
margin-right: 5px;
}
}
}
.relationship-tag {
position: absolute;
top: 10px;
left: 10px;
z-index: 1;
}
.profile-hover-card__badges {
display: flex;
2020-08-03 04:14:31 +00:00
position: absolute;
top: 110px;
left: 120px;
.badge {
padding: 2px 4px;
margin-right: 5px;
border-radius: 3px;
font-size: 11px;
opacity: 1;
}
}
.profile-hover-card__bio {
margin: 0 20px 20px;
2020-08-03 01:44:47 +00:00
max-height: 4em;
2020-08-03 02:46:56 +00:00
a {
color: var(--highlight-text-color);
}
2020-08-03 01:44:47 +00:00
&::after {
content: '';
display: block;
position: absolute;
width: 100%;
height: 20px;
bottom: 0;
left: 0;
background: linear-gradient(0deg, var(--foreground-color) 0%, var(--foreground-color), 80%, transparent);
}
}
&[data-popper-reference-hidden="true"] {
visibility: hidden;
pointer-events: none;
}
}