Fix Bug 42882

This commit is contained in:
Julia Radzhabova 2019-09-19 12:45:40 +03:00
parent 5a129c700d
commit 92e56f7815
2 changed files with 9 additions and 0 deletions

View file

@ -187,6 +187,10 @@
&.user-select {
cursor: text;
}
&.user-select::selection {
background: #3494fb;
color: white;
}
}
.user-reply {

View file

@ -80,3 +80,8 @@ input.error {
input[type="password"] {
font-size: 16px;
}
input[type="text"]::selection, textarea::selection {
background: #3494fb;
color: white;
}