Add visual bell animation for RTE

pull/4516/head
Luke Barnard 2017-07-05 18:13:23 +01:00
parent 8daa0fced8
commit 07e8d4ef69
1 changed files with 10 additions and 0 deletions

View File

@ -78,6 +78,16 @@ limitations under the License.
margin-right: 6px;
}
@keyframes visualbell
{
from { background-color: #faa }
to { background-color: $primary-bg-color }
}
.mx_MessageComposer_input_error {
animation: 0.2s visualbell;
}
.mx_MessageComposer_input_empty .public-DraftEditorPlaceholder-root {
display: none;
}