Merge pull request #4516 from vector-im/luke/css-visual-bell

Add visual bell animation for RTE
pull/4525/head
Luke Barnard 2017-07-05 18:22:09 +01:00 committed by GitHub
commit d4435daf31
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;
}