mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-27 18:21:50 +08:00
Report wizard add red border to report name [SCI-5703] (#3309)
This commit is contained in:
parent
d02f4a7ff9
commit
e16b3b0d61
2 changed files with 9 additions and 1 deletions
|
@ -1156,7 +1156,7 @@ function reportHandsonTableConverter() {
|
|||
validateGenerateButtons();
|
||||
});
|
||||
|
||||
$('.report-name').on('change', function() {
|
||||
$('.report-name').on('keyup', function() {
|
||||
validateGenerateButtons();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -22,6 +22,14 @@
|
|||
|
||||
.report-name {
|
||||
@include font-h1;
|
||||
|
||||
&:placeholder-shown {
|
||||
border: 1px solid $brand-danger;
|
||||
|
||||
&::placeholder {
|
||||
color: $brand-danger;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue