diff options
author | Friendika <info@friendika.com> | 2011-09-04 05:41:11 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-04 05:41:11 -0700 |
commit | e440353013aa1ca26a472b375bb1102348c7ead7 (patch) | |
tree | ba06f4d1c81205e41eebf08ef7b9949211197b32 | |
parent | 260d652168bae3716f843f445ae696b59edf4db3 (diff) | |
download | volse-hubzilla-e440353013aa1ca26a472b375bb1102348c7ead7.tar.gz volse-hubzilla-e440353013aa1ca26a472b375bb1102348c7ead7.tar.bz2 volse-hubzilla-e440353013aa1ca26a472b375bb1102348c7ead7.zip |
truncate overflow text on acl selector items (3 themes)
-rw-r--r-- | include/group.php | 4 | ||||
-rw-r--r-- | view/theme/dispy/style.css | 2 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 2 | ||||
-rw-r--r-- | view/theme/loozah/style.css | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/include/group.php b/include/group.php index f21ce42e0..cd89739e1 100644 --- a/include/group.php +++ b/include/group.php @@ -154,7 +154,7 @@ $o .= <<< EOT <div id="sidebar-group-list"> <ul id="sidebar-group-ul"> - <li class="sidebar-group-li" ><a href="$every" $selected >$linktext</a></li> + <li class="sidebar-group-li" ><a href="$every" class="sidebar-group-element" $selected >$linktext</a></li> EOT; @@ -173,7 +173,7 @@ EOT; . "\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "") . (($cid) ? '<input type="checkbox" class="' . (($selected) ? 'ticked' : 'unticked') . '" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" ' . ((in_array($rr['id'],$member_of)) ? ' checked="checked" ' : '') . '/>' : '') - . "<a href=\"$each/{$rr['id']}\" $selected >{$rr['name']}</a></li>\r\n"; + . "<a href=\"$each/{$rr['id']}\" class=\"sidebar-group-element\" $selected >{$rr['name']}</a></li>\r\n"; } } $o .= " </ul>\r\n </div>"; diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 78efb57ff..1e49b28ba 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -1211,7 +1211,7 @@ footer { display: block; margin: 50px 20%; clear: both; } float: left; margin: 4px; } -.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; } +.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} .acl-list-item a { font-size: 8px; display: block; diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index f47af934c..b467814ce 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1591,7 +1591,7 @@ input#dfrn-url { float: left; margin: 4px; } -.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; } +.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} .acl-list-item a { font-size: 8px; display: block; diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 781526eae..88baeb8fb 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -1668,7 +1668,7 @@ padding: 5px 10px 0px; float: left; margin: 4px; } -.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; } +.acl-list-item p { font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} .acl-list-item a { font-size: 8px; display: block; |