[css] show border around editable input while editing

This commit is contained in:
Maxime Beauchemin 2018-08-24 17:57:45 -07:00
parent 54ae215d11
commit c447a970de
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;