aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-19 19:55:34 -0700
committerFriendika <info@friendika.com>2011-05-19 19:55:34 -0700
commita27b7fb28d151c00eef8319cdf876896d36df8b0 (patch)
treedc9fc4306266d4466013e5ff02faf7b4daa8985a /view/theme/dispy
parente51e772abcddeae77f8c6003290922922afed11a (diff)
downloadvolse-hubzilla-a27b7fb28d151c00eef8319cdf876896d36df8b0.tar.gz
volse-hubzilla-a27b7fb28d151c00eef8319cdf876896d36df8b0.tar.bz2
volse-hubzilla-a27b7fb28d151c00eef8319cdf876896d36df8b0.zip
more indicators of public visibility
Diffstat (limited to 'view/theme/dispy')
-rw-r--r--view/theme/dispy/jot-header.tpl2
-rw-r--r--view/theme/dispy/style.css11
2 files changed, 11 insertions, 2 deletions
diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl
index 4661161b3..40584878a 100644
--- a/view/theme/dispy/jot-header.tpl
+++ b/view/theme/dispy/jot-header.tpl
@@ -77,10 +77,12 @@ tinyMCE.init({
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
+ $('#jot-public').hide();
$('.profile-jot-net input').attr('disabled', 'disabled');
});
if(selstr == null) {
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
+ $('#jot-public').show();
$('.profile-jot-net input').attr('disabled', false);
}
diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css
index a0f860494..a212c1935 100644
--- a/view/theme/dispy/style.css
+++ b/view/theme/dispy/style.css
@@ -296,8 +296,15 @@ aside #viewcontacts { text-align: right;}
#contact_deny_wrapper,
#acl-deny-outer-wrapper { width: 47%; float: right; }
-#acl-permit-text,
-#acl-deny-text {background-color: #555753; color: #ccccce; padding: 5px;}
+#acl-permit-text {background-color: #555753; color: #ccccce; padding: 5px; float: left;}
+#jot-public {background-color: #555753; color: #ff0000; padding: 5px; float: left;}
+#acl-deny-text {background-color: #555753; color: #ccccce; padding: 5px; float: left;}
+
+#acl-permit-text-end,
+#acl-deny-text-end { clear: both; }
+
+
+
#acl-permit-wrapper,
#acl-deny-wrapper { padding: 5px; }