You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
2.3 KiB
144 lines
2.3 KiB
[data-component='Notifications'] {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
// pointer-events: none;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
//justify-content: flex-end;
|
|
//align-items: flex-end;
|
|
|
|
+desktop() {
|
|
// padding: 10px;
|
|
// width: 300px;
|
|
}
|
|
|
|
+mobile() {
|
|
padding: 4px;
|
|
width: 65%;
|
|
max-width: 220px;
|
|
}
|
|
|
|
> .chatTitle {
|
|
color: #000;
|
|
font-size: 16px;
|
|
height: 54px;
|
|
line-height: 54px;
|
|
padding-left: 20px;
|
|
border-bottom: 1px solid #EBEBEB;
|
|
font-weight: 500;
|
|
}
|
|
|
|
> .chatwarp {
|
|
overflow: hidden;
|
|
overflow-y: auto;
|
|
height: calc(100% - 50px - 85px);
|
|
}
|
|
|
|
|
|
> .notification {
|
|
pointer-events: auto;
|
|
margin-top: 4px;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
+desktop() {
|
|
min-width: 75%;
|
|
}
|
|
|
|
+mobile() {
|
|
width: 100%;
|
|
}
|
|
|
|
&.Appear-appear {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: all 0.15s ease-in-out 0s, visibility 0s linear 0.25s;
|
|
transform: translateX(200px);
|
|
}
|
|
|
|
&.Appear-appear.Appear-appear-active {
|
|
visibility: visible;
|
|
pointer-events: auto;
|
|
opacity: 1;
|
|
transform: translateY(0%);
|
|
transition-delay: 0s, 0s;
|
|
}
|
|
|
|
+desktop() {
|
|
padding: 16px 24px 16px 12px;
|
|
}
|
|
|
|
+mobile() {
|
|
padding: 6px 16px 6px 12px;
|
|
}
|
|
|
|
> .icon {
|
|
flex: 0 0 auto;
|
|
height: 24px;
|
|
width: 24px;
|
|
margin-right: 12px;
|
|
background-position: center;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
> .body {
|
|
> .title {
|
|
font-weight: 500;
|
|
user-select: none;
|
|
cursor: default;
|
|
line-height: 1.35em;
|
|
margin-bottom: 10px;
|
|
|
|
+desktop() {
|
|
font-size: 14px;
|
|
}
|
|
|
|
+mobile() {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
> .text {
|
|
user-select: none;
|
|
cursor: default;
|
|
line-height: 1.35em;
|
|
|
|
+desktop() {
|
|
font-size: 13px;
|
|
}
|
|
|
|
+mobile() {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.info {
|
|
background-color: $COLOR_BG_2;
|
|
color: rgba(#fff, 0.75);
|
|
|
|
>.icon {
|
|
opacity: 0.65;
|
|
background-image: url('/resources/images/icon_notification_info_white.svg');
|
|
}
|
|
}
|
|
|
|
&.error {
|
|
background-color: rgba(#ff1914, 0.75);
|
|
color: #fff;
|
|
|
|
>.icon {
|
|
opacity: 0.85;
|
|
background-image: url('/resources/images/icon_notification_error_white.svg');
|
|
}
|
|
}
|
|
}
|
|
}
|