119 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			SCSS
		
	
	
/*
 | 
						|
Copyright 2015, 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.
 | 
						|
*/
 | 
						|
 | 
						|
.mx_RoomStatusBar {
 | 
						|
    margin-left: 65px;
 | 
						|
    min-height: 50px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_typingIndicatorAvatars {
 | 
						|
    width: 52px;
 | 
						|
    margin-top: -1px;
 | 
						|
    text-align: left;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_image {
 | 
						|
    margin-right: -12px;
 | 
						|
    border: 1px solid $primary-bg-color;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_initial {
 | 
						|
    padding-left: 1px;
 | 
						|
    padding-top: 1px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_typingIndicatorRemaining {
 | 
						|
    display: inline-block;
 | 
						|
    color: #acacac;
 | 
						|
    background-color: #ddd;
 | 
						|
    border: 1px solid $primary-bg-color;
 | 
						|
    border-radius: 40px;
 | 
						|
    width: 24px;
 | 
						|
    height: 24px;
 | 
						|
    line-height: $font-24px;
 | 
						|
    font-size: 0.8em;
 | 
						|
    vertical-align: top;
 | 
						|
    text-align: center;
 | 
						|
    position: absolute;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_scrollDownIndicator {
 | 
						|
    cursor: pointer;
 | 
						|
    padding-left: 1px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_unreadMessagesBar {
 | 
						|
    padding-top: 10px;
 | 
						|
    color: $warning-color;
 | 
						|
    cursor: pointer;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_connectionLostBar {
 | 
						|
    display: flex;
 | 
						|
 | 
						|
    margin-top: 19px;
 | 
						|
    min-height: 58px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_connectionLostBar img {
 | 
						|
    padding-left: 10px;
 | 
						|
    padding-right: 10px;
 | 
						|
    vertical-align: middle;
 | 
						|
    float: left;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_connectionLostBar_title {
 | 
						|
    color: $warning-color;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_connectionLostBar_desc {
 | 
						|
    color: $primary-fg-color;
 | 
						|
    font-size: $font-13px;
 | 
						|
    opacity: 0.5;
 | 
						|
    padding-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_resend_link {
 | 
						|
    color: $primary-fg-color !important;
 | 
						|
    text-decoration: underline !important;
 | 
						|
    cursor: pointer;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomStatusBar_typingBar {
 | 
						|
    height: 50px;
 | 
						|
    line-height: $font-50px;
 | 
						|
 | 
						|
    color: $primary-fg-color;
 | 
						|
    opacity: 0.5;
 | 
						|
    overflow-y: hidden;
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.mx_MatrixChat_useCompactLayout {
 | 
						|
    .mx_RoomStatusBar {
 | 
						|
        min-height: 40px;
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_RoomStatusBar_indicator {
 | 
						|
        margin-top: 10px;
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_RoomStatusBar_typingBar {
 | 
						|
        height: 40px;
 | 
						|
        line-height: $font-40px;
 | 
						|
    }
 | 
						|
}
 |