diff --git a/src/sass/views/_contacts.scss b/src/sass/views/_contacts.scss index a4bd33b..98c8d05 100644 --- a/src/sass/views/_contacts.scss +++ b/src/sass/views/_contacts.scss @@ -15,9 +15,13 @@ } .key-list { - max-height: 400px; + position: relative; margin: 20px; - overflow-y: scroll; + + .key-list-scroll { + max-height: 400px; + overflow-y: scroll; + } table { th, td { @@ -37,6 +41,11 @@ outline: none; } } + + // pull popover upwards to keep popup inside lightbox + .popover { + margin-top: -20px; + } } - + } \ No newline at end of file diff --git a/src/sass/views/_write.scss b/src/sass/views/_write.scss index d5bbf16..32a615c 100644 --- a/src/sass/views/_write.scss +++ b/src/sass/views/_write.scss @@ -8,7 +8,8 @@ height: 100%; @include respond-to(desktop) { - height: 600px; + // this number depends on max-height set on .lightbox + height: 590px; // magic number } input { diff --git a/src/tpl/contacts.html b/src/tpl/contacts.html index 0e69e2b..aaf7781 100644 --- a/src/tpl/contacts.html +++ b/src/tpl/contacts.html @@ -16,30 +16,34 @@
- - - - - - - - - - - - - - -
Key IDEmailCreatedSize
{{key._id.slice(8)}}{{key.userId}}{{key.created | date:'mediumDate'}}{{key.bitSize}} bit
-
+
+ + + + + + + + + + + + + + +
Key IDEmailCreatedSize
{{key._id.slice(8)}}{{key.userId}}{{key.created | date:'mediumDate'}}{{key.bitSize}} bit
+
+ + +
+
Fingerprint
+
{{fingerprint}}
+
+ - -
-
Fingerprint
-
{{fingerprint}}
-
+ \ No newline at end of file