Add keybindings form

This commit is contained in:
Shin'ya Ueoka 2017-11-22 22:38:34 +09:00
parent d33b37cdb9
commit 4e5ddc1d57
7 changed files with 268 additions and 45 deletions

View file

@ -1,17 +1,28 @@
.form-field-label {
font-weight: bold
}
.settings-ui-input {
page-break-inside: avoid;
.form-field-error {
font-weight: bold;
color: red;
min-height: 1.5em;
}
* {
page-break-inside: avoid;
}
.form-field-input {
padding: 4px;
}
label {
font-weight: bold;
min-width: 14rem;
display: inline-block;
}
.form-field-input.input-error {
box-shadow: 0 0 2px red;
input {
padding: 4px;
}
input.input-crror,
textarea.input-error {
box-shadow: 0 0 2px red;
}
&-error {
font-weight: bold;
color: red;
min-height: 1.5em;
}
}