Merge pull request #5724 from mistercrunch/css_editable_input

[css] show border around editable input while editing
This commit is contained in:
Beto Dealmeida 2018-08-27 16:24:17 -07:00 committed by GitHub
commit 0d6201de67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -230,6 +230,12 @@ table.table-no-hover tr:hover {
cursor: initial;
}
.editable-title input[type="text"] {
border: 1px solid #ccc;
border-radius: 2px;
padding: 2px;
}
.editable-title input[type="button"] {
border-color: transparent;
background: transparent;