add visual bell when no replacements are available
also add try/catch in _tabCompleteName so errors don't get swallowed
This commit is contained in:
parent
c44fbb73d0
commit
85efb71a23
3 changed files with 53 additions and 18 deletions
|
@ -27,6 +27,15 @@ limitations under the License.
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@keyframes visualbell {
|
||||
from { background-color: #faa; }
|
||||
to { background-color: $primary-bg-color; }
|
||||
}
|
||||
|
||||
&.mx_BasicMessageComposer_input_error {
|
||||
animation: 0.2s visualbell;
|
||||
}
|
||||
|
||||
.mx_BasicMessageComposer_input {
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue