* PLT-5319 - Fixing text alignment security modal * PLT-5280 - Fixing add comment button in RHS mobile * PLT-5397 - Fixing Floating timestamp on mobile * PLT-5129 - Hiding formatting help text * PLT-5242 - Adjusting team sidebar border on IE!! * PLT-5226 - Placing settings toggle over header * PLT-5222 - Placed team description tooltip on top * PLT-5201 - Account settings overlap on mobile * PLT-5138 - Adding bg to pending post actions * PLT-5286 - Adjusting play button on youtube videos * PLT-5313 - Adjusting space between emoji reactions * PLT-5187 - Adjusting text in channel switcher * PLT-5399 - Reverting button alignment in modal
79 строки
1.3 KiB
SCSS
79 строки
1.3 KiB
SCSS
@charset 'UTF-8';
|
|
|
|
.mention {
|
|
@include border-radius(3px);
|
|
background: $primary-color;
|
|
color: $white;
|
|
padding-bottom: 2px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.mentions__name {
|
|
@include clearfix;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
margin: 0;
|
|
padding: 6px 10px;
|
|
position: relative;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
z-index: 101;
|
|
|
|
.status {
|
|
font-size: 15px;
|
|
text-align: center;
|
|
vertical-align: bottom;
|
|
width: 20px;
|
|
}
|
|
|
|
.fa-user {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
.mention--align {
|
|
@include clearfix;
|
|
text-overflow: ellipsis;
|
|
width: calc(100% - 50px);
|
|
}
|
|
}
|
|
|
|
.mention__image {
|
|
@include border-radius(20px);
|
|
display: block;
|
|
font-size: 15px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
margin-right: 6px;
|
|
text-align: center;
|
|
width: 20px;
|
|
|
|
.mention--align {
|
|
display: inline-block;
|
|
max-width: 80%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.mention__fullname {
|
|
@include opacity(.5);
|
|
}
|
|
|
|
.mention--highlight {
|
|
background-color: $yellow;
|
|
}
|
|
|
|
.mention__purpose {
|
|
@include opacity(.5);
|
|
line-height: normal;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.mention__channelname {
|
|
@include opacity(.5);
|
|
}
|