fix settings form
This commit is contained in:
parent
8791ed4e5e
commit
8ba490ea11
2 changed files with 7 additions and 3 deletions
|
@ -4,10 +4,13 @@
|
|||
<meta charset='utf-8'>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Configure</h1>
|
||||
|
||||
<h2>Home page</h2>
|
||||
<form id='vimvixen-settings-form' class='vimvixen-settings-form'>
|
||||
<label for='plain-json'>Settings by plain json: </label>
|
||||
<textarea
|
||||
name='plain-json'></textarea>
|
||||
<label for='load-from-json'>Load from JSON:</label>
|
||||
<textarea name='plain-json' spellcheck='false'></textarea>
|
||||
|
||||
<button type='submit'>Save</button>
|
||||
</form>
|
||||
<script src='settings.js'></script>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
textarea[name=plain-json] {
|
||||
font-family: monospace;
|
||||
width: 100%;
|
||||
min-height: 64ex;
|
||||
resize: vertical;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue