diff options
author | friendica <info@friendica.com> | 2013-05-21 17:13:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-21 17:13:51 -0700 |
commit | d72d30fabb3e081e0b2c749e512bb3989d9d1f4a (patch) | |
tree | 3443cb1c32b29a2b1477abd2c3954eb5514bd0dc /view | |
parent | 09b80b2f65c2f8e9f24d4ef90dc5841c71a75480 (diff) | |
download | volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.tar.gz volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.tar.bz2 volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.zip |
more permissions descriptive text to lessen confusion
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 8 | ||||
-rwxr-xr-x | view/tpl/abook_edit.tpl | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 33ccd5cbf..c2caedd08 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -350,12 +350,15 @@ footer { } .warning-text { - width: auto; font-size: 1.2em; font-weight: bold; color: #ff0000; } +#noperm-msg { + margin-top: 15px; +} + .preview { background: url('../img/gray_and_white_diagonal_stripes_background_seamless.gif'); } @@ -2460,6 +2463,9 @@ aside input[type='text'] { font-size: 70%; } +.descriptive-text { + color: #888; +} #plugin-settings-link, #account-settings-link { margin-bottom: 10px; diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl index e226da72c..442692b3d 100755 --- a/view/tpl/abook_edit.tpl +++ b/view/tpl/abook_edit.tpl @@ -33,13 +33,15 @@ <h3>{{$permlbl}}</h3> +<div id="perm-desc" class="descriptive-text">{{$permnote}}</div> <form id="abook-edit-form" action="connections/{{$contact_id}}" method="post" > <input type="hidden" name="contact_id" value="{{$contact_id}}"> <input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" /> {{if $noperms}} -<div id="noperm-desc" class="warning-text">{{$noperms}}</div> +<div id="noperm-msg" class="warning-text">{{$noperms}}</div> +<div id="noperm-text" class="descriptive-text">{{$noperm_desc}}</div> {{/if}} |