2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2018-12-18 17:56:05 +01:00
|
|
|
@charset "utf-8";
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_TopUnreadMessagesBar {
|
2018-12-03 14:55:24 +01:00
|
|
|
z-index: 1000;
|
|
|
|
position: absolute;
|
|
|
|
top: 24px;
|
|
|
|
right: 24px;
|
|
|
|
width: 38px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_TopUnreadMessagesBar::after {
|
2020-01-28 15:12:07 +01:00
|
|
|
content: "";
|
2018-12-18 17:56:05 +01:00
|
|
|
position: absolute;
|
|
|
|
top: -8px;
|
|
|
|
left: 11px;
|
2020-01-28 15:12:07 +01:00
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
2018-12-18 17:56:05 +01:00
|
|
|
border-radius: 16px;
|
2020-01-28 15:12:07 +01:00
|
|
|
overflow: hidden;
|
|
|
|
background-color: $secondary-accent-color;
|
|
|
|
border: 6px solid $accent-color;
|
2018-12-18 17:56:05 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_TopUnreadMessagesBar_scrollUp {
|
2018-12-03 14:55:24 +01:00
|
|
|
height: 38px;
|
|
|
|
border-radius: 19px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: $primary-bg-color;
|
|
|
|
border: 1.3px solid $roomtile-name-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_TopUnreadMessagesBar_scrollUp::before {
|
2018-12-03 14:55:24 +01:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
2019-01-01 00:22:40 +01:00
|
|
|
mask: url('$(res)/img/icon-jump-to-first-unread.svg');
|
2018-12-03 14:55:24 +01:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: 9px 13px;
|
|
|
|
background: $roomtile-name-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|