forked from matrix/element-web
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
38b5b27aa9
|
@ -237,12 +237,16 @@ limitations under the License.
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomHeader_unreadPinsIndicator {
|
.mx_RoomHeader_pinsIndicator {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 4px;
|
bottom: 4px;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background-color: $warning-color;
|
background-color: $pinned-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomHeader_pinsIndicatorUnread {
|
||||||
|
background-color: $pinned-unread-color;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,10 @@ $warning-color: #ff0064;
|
||||||
$mention-user-pill-bg-color: #ff0064;
|
$mention-user-pill-bg-color: #ff0064;
|
||||||
$other-user-pill-bg-color: rgba(0, 0, 0, 0.1);
|
$other-user-pill-bg-color: rgba(0, 0, 0, 0.1);
|
||||||
|
|
||||||
|
// pinned events indicator
|
||||||
|
$pinned-unread-color: #ff0064; // $warning-color
|
||||||
|
$pinned-color: #888;
|
||||||
|
|
||||||
// informational plinth
|
// informational plinth
|
||||||
$info-plinth-bg-color: #f7f7f7;
|
$info-plinth-bg-color: #f7f7f7;
|
||||||
$info-plinth-fg-color: #888;
|
$info-plinth-fg-color: #888;
|
||||||
|
|
Loading…
Reference in New Issue