Unfloat the MiniAvatarUploader "tooltip"

This commit is contained in:
Michael Telatynski 2020-12-27 21:13:01 +00:00
parent f4190ccae2
commit 8ee65258be
2 changed files with 18 additions and 6 deletions

View file

@ -18,6 +18,16 @@ limitations under the License.
position: relative;
width: min-content;
// this isn't a floating tooltip so override some things to not need to bother with z-index and floating
.mx_Tooltip {
display: inline-block;
position: absolute;
z-index: unset;
width: max-content;
left: 72px;
top: 0;
}
&::before, &::after {
content: '';
position: absolute;