made error text red and bold
This commit is contained in:
parent
c1297e9021
commit
6f2753445d
2 changed files with 9 additions and 0 deletions
|
@ -119,6 +119,11 @@ table {
|
|||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.input-error {
|
||||
font-weight: bold;
|
||||
color: red;
|
||||
}
|
||||
|
||||
@media (max-width: 1250px) {
|
||||
|
||||
.wrapper {
|
||||
|
|
|
@ -11,6 +11,10 @@
|
|||
|
||||
<script type ="text/javascript">
|
||||
|
||||
function focusThisInput(event){
|
||||
|
||||
}
|
||||
|
||||
function copyToClipboard(event){
|
||||
var elementToCopy = event.target.dataset.elementtocopy;
|
||||
var element = document.getElementById(elementToCopy);
|
||||
|
|
Loading…
Reference in a new issue