textarea focus, outline and caret color
This commit is contained in:
parent
9dfea352e1
commit
e21c56ac3f
2 changed files with 9 additions and 2 deletions
|
|
@ -113,18 +113,25 @@ textarea {
|
|||
text-align: left;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
color: #fff;
|
||||
caret-color: #fff;
|
||||
border: 1px solid #e3ebf7;
|
||||
padding: 0;
|
||||
padding: 2px;
|
||||
margin: 2px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
|
||||
textarea:focus {
|
||||
outline: #fff 1px solid;
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
textarea::placeholder {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
caret-color: #fff;
|
||||
}
|
||||
|
||||
#save-area {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
</p>
|
||||
|
||||
<div>
|
||||
<textarea name="save-area" id="save-area" rows="6" autofocus spellcheck="false" placeholder="Paste (Ctrl + V) your decoded save here..."></textarea>
|
||||
<textarea name="save-area" id="save-area" rows="6" autofocus spellcheck="false" placeholder="Paste (Ctrl + V) your decoded save here..." autofocus></textarea>
|
||||
|
||||
<div class="buttons">
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue