Show challenge when requested by server
This commit is contained in:
parent
03c68da17d
commit
986d8a66bc
42 changed files with 1986 additions and 128 deletions
|
@ -297,6 +297,17 @@
|
|||
);
|
||||
}
|
||||
}
|
||||
.module-message__error--paused {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/error-outline-24.svg',
|
||||
$color-gray-60
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg('../images/icons/v2/error-solid-24.svg', $color-gray-45);
|
||||
}
|
||||
}
|
||||
|
||||
.module-message__error--outgoing {
|
||||
left: 8px;
|
||||
|
@ -1265,6 +1276,7 @@
|
|||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.module-message__metadata__status-icon--paused,
|
||||
.module-message__metadata__status-icon--sending {
|
||||
animation: module-message__metadata__status-icon--spinning 4s linear infinite;
|
||||
|
||||
|
@ -5254,6 +5266,10 @@ button.module-image__border-overlay:focus {
|
|||
}
|
||||
}
|
||||
|
||||
.module-spinner__circle--on-captcha {
|
||||
background-color: $color-white-alpha-40;
|
||||
}
|
||||
|
||||
.module-spinner__circle--on-progress-dialog {
|
||||
@include light-theme {
|
||||
background-color: $color-white;
|
||||
|
@ -5268,6 +5284,9 @@ button.module-image__border-overlay:focus {
|
|||
.module-spinner__arc--on-avatar {
|
||||
background-color: $color-white;
|
||||
}
|
||||
.module-spinner__arc--on-captcha {
|
||||
background-color: $color-white;
|
||||
}
|
||||
|
||||
// Module: Highlighted Message Body
|
||||
|
||||
|
@ -7023,6 +7042,21 @@ button.module-image__border-overlay:focus {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
&--paused {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/error-outline-12.svg',
|
||||
$color-gray-60
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/error-solid-12.svg',
|
||||
$color-gray-45
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__message-search-result-contents {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue