Encrypt/decrypt with multiple addresses in a single GPG key

This commit is contained in:
Carles Escrig Royo 2016-04-06 20:26:29 +02:00
parent d14375d022
commit a34da5de0d
No known key found for this signature in database
GPG key ID: 5E6F07C704111773
8 changed files with 141 additions and 62 deletions

View file

@ -33,8 +33,14 @@
min-height: 40px;
&-wrp {
overflow: hidden;
text-overflow: ellipsis;
&:hover {
overflow: auto;
}
&:hover .key-list__item-name {
overflow: visible;
}
&.empty {
text-align: center;
@ -48,33 +54,35 @@
color: #333;
white-space: nowrap;
padding-bottom: 4px;
&-delete {
display: inline;
cursor: pointer;
margin-right: 5px;
&:last-child {
padding-bottom: 0;
}
&-name {
margin-right: 5px;
&-delete {
cursor: pointer;
}
&-names {
color: #333;
display: inline;
&.empty {
color: red;
}
}
&-name {
overflow: hidden;
text-overflow: ellipsis;
}
&-error {
margin-right: 5px;
color: red;
display: inline;
}
&-hash {
margin-right: 5px;
color: #aaa;
display: inline;
}
}
}
@ -82,6 +90,10 @@
.key-actions {
margin-top: 10px;
min-height: 40px;
select option.even {
background-color: #f5f5f5;
}
}
}
@ -103,15 +115,21 @@
white-space: nowrap;
&__radio {
padding-right: 5px;
padding: 3px 5px 0 0;
vertical-align: top;
}
&__name {
border-bottom: 1px solid transparent;
&:hover {
border-bottom: 1px dashed #555;
}
}
&__names {
display: inline-block;
}
}
}
}
@ -129,4 +147,4 @@
}
}
}
}
}