107 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			SCSS
		
	
	
/*
 | 
						|
Copyright 2019 The Matrix.org Foundation C.I.C.
 | 
						|
 | 
						|
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_ToastContainer {
 | 
						|
    position: absolute;
 | 
						|
    top: 0;
 | 
						|
    left: 70px;
 | 
						|
    z-index: 101;
 | 
						|
    padding: 4px;
 | 
						|
    display: grid;
 | 
						|
    grid-template-rows: 1fr 14px 6px;
 | 
						|
 | 
						|
    &.mx_ToastContainer_stacked::before {
 | 
						|
        content: "";
 | 
						|
        margin: 0 4px;
 | 
						|
        grid-row: 2 / 4;
 | 
						|
        grid-column: 1;
 | 
						|
        background-color: white;
 | 
						|
        box-shadow: 0px 4px 12px $menu-box-shadow-color;
 | 
						|
        border-radius: 8px;
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_Toast_toast {
 | 
						|
        grid-row: 1 / 3;
 | 
						|
        grid-column: 1;
 | 
						|
        color: $primary-fg-color;
 | 
						|
        background-color: $primary-bg-color;
 | 
						|
        box-shadow: 0px 4px 12px $menu-box-shadow-color;
 | 
						|
        border-radius: 8px;
 | 
						|
        overflow: hidden;
 | 
						|
        display: grid;
 | 
						|
        grid-template-columns: 20px 1fr;
 | 
						|
        column-gap: 10px;
 | 
						|
        row-gap: 4px;
 | 
						|
        padding: 8px;
 | 
						|
        padding-right: 16px;
 | 
						|
 | 
						|
        &.mx_Toast_hasIcon {
 | 
						|
            &::after {
 | 
						|
                content: "";
 | 
						|
                width: 22px;
 | 
						|
                height: 22px;
 | 
						|
                grid-column: 1;
 | 
						|
                grid-row: 1;
 | 
						|
                mask-size: 100%;
 | 
						|
                mask-repeat: no-repeat;
 | 
						|
            }
 | 
						|
 | 
						|
            &.mx_Toast_icon_verification::after {
 | 
						|
                mask-image: url("$(res)/img/e2e/normal.svg");
 | 
						|
                background-color: $primary-fg-color;
 | 
						|
            }
 | 
						|
 | 
						|
            &.mx_Toast_icon_verification_warning::after {
 | 
						|
                background-image: url("$(res)/img/e2e/warning.svg");
 | 
						|
            }
 | 
						|
 | 
						|
            h2, .mx_Toast_body {
 | 
						|
                grid-column: 2;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        h2 {
 | 
						|
            grid-column: 1 / 3;
 | 
						|
            grid-row: 1;
 | 
						|
            margin: 0;
 | 
						|
            font-size: $font-15px;
 | 
						|
            font-weight: 600;
 | 
						|
        }
 | 
						|
 | 
						|
        .mx_Toast_body {
 | 
						|
            grid-column: 1 / 3;
 | 
						|
            grid-row: 2;
 | 
						|
        }
 | 
						|
 | 
						|
        .mx_Toast_buttons {
 | 
						|
            display: flex;
 | 
						|
        }
 | 
						|
 | 
						|
        .mx_Toast_description {
 | 
						|
            max-width: 400px;
 | 
						|
            overflow: hidden;
 | 
						|
            white-space: nowrap;
 | 
						|
            text-overflow: ellipsis;
 | 
						|
            margin: 4px 0 11px 0;
 | 
						|
            font-size: $font-12px;
 | 
						|
        }
 | 
						|
 | 
						|
        .mx_Toast_deviceID {
 | 
						|
            font-size: $font-10px;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |