You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2017/10/20 13:42:38 UTC

[kibble] 02/03: separator lines for the list

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 7df62001adb5b551e45b05165af56f9653540aa7
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Oct 20 15:42:20 2017 +0200

    separator lines for the list
---
 ui/js/coffee/kibble_organisation.coffee | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/js/coffee/kibble_organisation.coffee b/ui/js/coffee/kibble_organisation.coffee
index 847cd6e..689ba44 100644
--- a/ui/js/coffee/kibble_organisation.coffee
+++ b/ui/js/coffee/kibble_organisation.coffee
@@ -129,10 +129,10 @@ membershipList = (json, state) ->
     # Existing membership list
     h = new HTML('h3', {}, "Current membership of #{userAccount.defaultOrganisation}:")
     state.widget.inject(h)
-    list = new HTML('table')
+    list = new HTML('table', { style: { margin: "20px", border: "1px solid #666"}})
     
     for member in json.members
-        tr = new HTML('tr')
+        tr = new HTML('tr', { style: { borderBottom: "1px solid #666"}})
         eml = new HTML('td', { style: { padding: "5px"}}, member)
         isAdmin = member in json.admins
         admin = new HTML('td', { style: { padding: "5px"}}, if isAdmin then "Admin" else "Member")

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.