Allow a user to pick existing sshkeys from ~/.ssh

This commit is contained in:
Nick O'Leary
2018-01-10 17:37:41 +00:00
parent 00a396014b
commit 6516e0dfd2
8 changed files with 268 additions and 131 deletions

View File

@@ -780,6 +780,15 @@ div.projects-dialog-ssh-public-key {
}
}
.projects-dialog-ssh-key-list {
li {
cursor: pointer;
}
li:hover {
background: #f3f3f3;
}
}
.projects-dialog-list {
position: relative;
.red-ui-editableList-container {

View File

@@ -73,7 +73,11 @@
display: table;
clear: both;
}
.uneditable-input, input {
.uneditable-input, input, textarea {
width: calc(100% - 150px);
}
textarea {
resize: none;
height: 10em;
}
}