Fix mark as read button for dark theme

This changes the mark as read button to a mask image so that it can be themed
like other images.

Fixes https://github.com/vector-im/riot-web/issues/12640
pull/21833/head
J. Ryan Stinnett 2020-03-09 17:33:39 +00:00
parent 49fe1887df
commit c541bc0705
1 changed files with 15 additions and 7 deletions

View File

@ -51,7 +51,7 @@ limitations under the License.
position: absolute; position: absolute;
width: 38px; width: 38px;
height: 38px; height: 38px;
mask: url('$(res)/img/icon-jump-to-first-unread.svg'); mask-image: url('$(res)/img/icon-jump-to-first-unread.svg');
mask-repeat: no-repeat; mask-repeat: no-repeat;
mask-position: 9px 13px; mask-position: 9px 13px;
background: $roomtile-name-color; background: $roomtile-name-color;
@ -61,12 +61,20 @@ limitations under the License.
display: block; display: block;
width: 18px; width: 18px;
height: 18px; height: 18px;
background-image: url('$(res)/img/cancel.svg'); background: $primary-bg-color;
background-position: center;
background-size: 10px;
background-repeat: no-repeat;
background-color: $primary-bg-color;
border: 1.3px solid $roomtile-name-color; border: 1.3px solid $roomtile-name-color;
border-radius: 99px; border-radius: 10px;
margin: 5px auto; margin: 5px auto;
} }
.mx_TopUnreadMessagesBar_markAsRead::before {
content: "";
position: absolute;
width: 18px;
height: 18px;
mask-image: url('$(res)/img/cancel.svg');
mask-repeat: no-repeat;
mask-size: 10px;
mask-position: 4px 4px;
background: $roomtile-name-color;
}