diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 3 | ||||
-rwxr-xr-x | view/tpl/group_side.tpl | 12 |
2 files changed, 11 insertions, 4 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 74738c537..1846c023b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -232,6 +232,9 @@ aside ul { list-style-type: none; margin: 0; padding: 0; + /* border-left: 1px solid #eee; This and a 5px left border on the li is "interesting" + to delineate the list from the surrounding bits + */ } aside li { diff --git a/view/tpl/group_side.tpl b/view/tpl/group_side.tpl index dd3c7e737..8c5d3927d 100755 --- a/view/tpl/group_side.tpl +++ b/view/tpl/group_side.tpl @@ -1,9 +1,6 @@ <div class="widget" id="group-sidebar"> <h3>{{$title}}</h3> - <div id="sidebar-new-group"> - <a href="group/new">{{$createtext}}</a> - </div> <div id="sidebar-group-list"> <ul id="sidebar-group-ul"> @@ -23,7 +20,14 @@ </li> {{/foreach}} </ul> - </div> </div> + <div id="sidebar-new-group"> + <a href="group/new">{{$createtext}}</a> + </div> + +</div> + + + |