mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #1823 from vector-im/wmwragg/mention-state-indicator
Wmwragg/mention state indicator
This commit is contained in:
commit
d8d9912f2d
@ -189,7 +189,7 @@ input[type=text]:focus, textarea:focus {
|
|||||||
.mx_Dialog_content {
|
.mx_Dialog_content {
|
||||||
margin: 24px 58px 68px 0;
|
margin: 24px 58px 68px 0;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #4a4a4a;
|
color: #4a4a4a;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,21 +61,43 @@ limitations under the License.
|
|||||||
.collapsed .mx_RoomTile_badge {
|
.collapsed .mx_RoomTile_badge {
|
||||||
margin-top: -15px;
|
margin-top: -15px;
|
||||||
right: 7px;
|
right: 7px;
|
||||||
|
min-width: 12px;
|
||||||
|
height: 16px;
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 0px 4px 0px 4px;
|
||||||
|
z-index: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTile_highlight .mx_RoomTile_badge:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
margin-left: 7px;
|
||||||
|
border-top: 8px solid #ff0064;
|
||||||
|
border-right: 10px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Because the specificity of this and the above ".mx_RoomTile_highlight .mx_RoomTile_badge:after"
|
||||||
|
style are the same, this style needs to be AFTER it to take effect when matched */
|
||||||
|
.collapsed .mx_RoomTile_badge:after {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomTile_badge {
|
.mx_RoomTile_badge {
|
||||||
min-width: 12px;
|
min-width: 15px;
|
||||||
height: 16px;
|
height: 18px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 16px;
|
right: 16px;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -8px;
|
margin-top: -8px;
|
||||||
border-radius: 16px;
|
border-radius: 18px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0px 4px 0px 4px;
|
padding: 2px 6px 0px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomTile_unreadNotify .mx_RoomTile_badge {
|
.mx_RoomTile_unreadNotify .mx_RoomTile_badge {
|
||||||
|
Loading…
Reference in New Issue
Block a user