Animate in-conversation panels on show/hide
This commit is contained in:
parent
c952d628c1
commit
464361b2eb
6 changed files with 112 additions and 37 deletions
|
@ -1512,7 +1512,17 @@
|
|||
height: 35px;
|
||||
min-width: 35px;
|
||||
vertical-align: text-bottom;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
opacity: 0;
|
||||
transition: opacity 250ms ease-out;
|
||||
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
&--show {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.module-conversation-header__title-container {
|
||||
|
@ -1595,7 +1605,17 @@
|
|||
height: 20px;
|
||||
width: 20px;
|
||||
margin-left: 4px;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
opacity: 0;
|
||||
transition: opacity 250ms ease-out;
|
||||
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
&--show {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Module: Message Detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue