Show profile preview on hover
This commit is contained in:
parent
30a5a0baa9
commit
563e4e5bab
7 changed files with 29 additions and 3 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -20,7 +20,7 @@
|
||||||
.column,
|
.column,
|
||||||
.drawer {
|
.drawer {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
overflow: hidden;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer__pager {
|
.drawer__pager {
|
||||||
|
|
|
@ -152,7 +152,6 @@
|
||||||
.status__info .status__display-name {
|
.status__info .status__display-name {
|
||||||
display: block;
|
display: block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
padding-right: 25px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status__info {
|
.status__info {
|
||||||
|
@ -160,6 +159,27 @@
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status__profile,
|
||||||
|
.detailed-status__profile {
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
.user-panel {
|
||||||
|
position: absolute;
|
||||||
|
display: flex;
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
transition-property: opacity;
|
||||||
|
transition-duration: 0.5s;
|
||||||
|
z-index: 999;
|
||||||
|
|
||||||
|
&--visible {
|
||||||
|
opacity: 1;
|
||||||
|
transition-delay: 1s;
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.status-check-box {
|
.status-check-box {
|
||||||
border-bottom: 1px solid var(--background-color);
|
border-bottom: 1px solid var(--background-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -3,7 +3,13 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 265px;
|
width: 265px;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow-y: hidden;
|
|
||||||
|
&,
|
||||||
|
.user-panel__account__name,
|
||||||
|
.user-panel__account__username {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in a new issue