62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| 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.
 | |
| */
 | |
| 
 | |
| @charset "utf-8";
 | |
| 
 | |
| .mx_TopUnreadMessagesBar {
 | |
|     z-index: 1000;
 | |
|     position: absolute;
 | |
|     top: 24px;
 | |
|     right: 24px;
 | |
|     width: 38px;
 | |
| }
 | |
| 
 | |
| .mx_TopUnreadMessagesBar:after {
 | |
|     content: "·";
 | |
|     position: absolute;
 | |
|     top: -8px;
 | |
|     left: 11px;
 | |
|     width: 16px;
 | |
|     height: 16px;
 | |
|     border-radius: 16px;
 | |
|     font-weight: 600;
 | |
|     font-size: 30px;
 | |
|     line-height: 14px;
 | |
|     text-align: center;
 | |
|     color: $secondary-accent-color;
 | |
|     background-color: $accent-color;
 | |
| }
 | |
| 
 | |
| .mx_TopUnreadMessagesBar_scrollUp {
 | |
|     height: 38px;
 | |
|     border-radius: 19px;
 | |
|     box-sizing: border-box;
 | |
|     background: $primary-bg-color;
 | |
|     border: 1.3px solid $roomtile-name-color;
 | |
|     cursor: pointer;
 | |
| }
 | |
| 
 | |
| .mx_TopUnreadMessagesBar_scrollUp:before {
 | |
|     content: "";
 | |
|     position: absolute;
 | |
|     width: 38px;
 | |
|     height: 38px;
 | |
|     mask: url('$(res)/img/icon-jump-to-first-unread.svg');
 | |
|     mask-repeat: no-repeat;
 | |
|     mask-position: 9px 13px;
 | |
|     background: $roomtile-name-color;
 | |
| }
 |