diff options
author | Andre Heinecke <[email protected]> | 2018-08-22 11:15:35 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-08-22 11:15:35 +0000 |
commit | 59ed27bae14da6c1ba6848b34acfc836846a27bc (patch) | |
tree | f9efc016f561129c4c02f41bf0e84b566883d6eb /lang/js/DemoExtension/ui.css | |
parent | json: Add proper decrypt_result_t handling (diff) | |
parent | js: changed verify signature result infos (diff) | |
download | gpgme-59ed27bae14da6c1ba6848b34acfc836846a27bc.tar.gz gpgme-59ed27bae14da6c1ba6848b34acfc836846a27bc.zip |
Merge branch 'javascript-binding'
This adds a new language binding "gpgme.js" to GPGME. It
serves as a bridge between the native-messaging service "gpgme-json"
and JavaScript Applications.
The first user of this binding will be Mailvelope which will
see GnuPG integration in the near future.
GnuPG-Bug-Id: T4107
Diffstat (limited to 'lang/js/DemoExtension/ui.css')
-rw-r--r-- | lang/js/DemoExtension/ui.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lang/js/DemoExtension/ui.css b/lang/js/DemoExtension/ui.css new file mode 100644 index 00000000..16dfb5ae --- /dev/null +++ b/lang/js/DemoExtension/ui.css @@ -0,0 +1,33 @@ +ul { + list-style-type: none; + padding-left: 0px; +} + +ul li span { + float: left; + width: 120px; + margin-top: 6px; +} + +div .left { + float: left; + align-items: stretch; + width: 40%; +} +div .center { + width: 50%; + align-content: space-between; +} + +div .center button { + align-self: stretch; +} +div .right { + float: right; + align-items: stretch; + width: 40%; +} + +div .bottom { + clear:both; +}
\ No newline at end of file |