diff options
author | friendica <info@friendica.com> | 2013-08-07 17:51:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-07 17:51:10 -0700 |
commit | 4cda133e89474483c283e4a5e34ca87b4b3dd9a4 (patch) | |
tree | 77d4772efe7316bfe2397d31edced15d99e71584 /view | |
parent | 38d9cf4327fe108df3c269b187f5ef633c651a80 (diff) | |
download | volse-hubzilla-4cda133e89474483c283e4a5e34ca87b4b3dd9a4.tar.gz volse-hubzilla-4cda133e89474483c283e4a5e34ca87b4b3dd9a4.tar.bz2 volse-hubzilla-4cda133e89474483c283e4a5e34ca87b4b3dd9a4.zip |
Add public visibility setting to privacy groups (collections). This doesn't yet make them visible, but allows them to be visible (like a Cc: instead of a Bcc:)
Diffstat (limited to 'view')
-rw-r--r-- | view/css/mod_group.css | 66 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 43 | ||||
-rwxr-xr-x | view/tpl/group_edit.tpl | 1 |
3 files changed, 67 insertions, 43 deletions
diff --git a/view/css/mod_group.css b/view/css/mod_group.css new file mode 100644 index 000000000..cc5f15843 --- /dev/null +++ b/view/css/mod_group.css @@ -0,0 +1,66 @@ + +#group-new-submit-wrapper { + margin-top: 30px; +} + +#group-edit-form label { + float: left; + width: 300px; +} + +#group-edit-form input { + float: left; + width: 175px; +} + +#group-edit-form .field { + clear: both; +} + +#group-edit-submit-wrapper input { + clear: both; + width: 100px; +} + +#group-edit-select-end { + clear: both; +} + +#group-edit-name-label { + float: left; + width: 175px; + margin-top: 20px; + margin-bottom: 20px; +} + +#group-edit-name { + float: left; + width: 225px; + margin-top: 20px; + margin-bottom: 20px; +} + +#group-edit-name-wrapper { + + +} + + +#group_members_select_label { + display: block; + float: left; + width: 175px; +} + +.group_members_select { + float: left; + width: 230px; + overflow: auto; +} + +#group_members_select_end { + clear: both; +} +#group-edit-name-end { + clear: both; +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 864ffef6e..8d33913c4 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1871,49 +1871,6 @@ tr.mceLast { } -#group-new-submit-wrapper { - margin-top: 30px; -} - -#group-edit-name-label { - float: left; - width: 175px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name { - float: left; - width: 225px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name-wrapper { - - -} - - -#group_members_select_label { - display: block; - float: left; - width: 175px; -} - -.group_members_select { - float: left; - width: 230px; - overflow: auto; -} - -#group_members_select_end { - clear: both; -} -#group-edit-name-end { - clear: both; -} - #prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { margin-bottom: 10px; margin-top: 20px; diff --git a/view/tpl/group_edit.tpl b/view/tpl/group_edit.tpl index e4fb987ac..eb658624c 100755 --- a/view/tpl/group_edit.tpl +++ b/view/tpl/group_edit.tpl @@ -6,6 +6,7 @@ <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> {{include file="field_input.tpl" field=$gname}} + {{include file="field_checkbox.tpl" field=$public}} {{if $drop}}{{$drop}}{{/if}} <div id="group-edit-submit-wrapper" > <input type="submit" name="submit" value="{{$submit}}" > |