diff options
-rw-r--r-- | lib/action.php | 5 | ||||
-rw-r--r-- | lib/feedlist.php | 5 | ||||
-rw-r--r-- | lib/noticelist.php | 3 | ||||
-rw-r--r-- | theme/base/css/display.css | 2 | ||||
-rw-r--r-- | theme/identica/css/display.css | 2 |
5 files changed, 10 insertions, 7 deletions
diff --git a/lib/action.php b/lib/action.php index 76cf419cb..d106ba366 100644 --- a/lib/action.php +++ b/lib/action.php @@ -338,10 +338,11 @@ class Action extends HTMLOutputter // lawsuit function showAside() { - $this->elementStart('div', 'aside'); + $this->elementStart('div', array('id' => 'aside_primary', + 'class' => 'aside')); $this->showExportData(); $this->showSections(); - $this->elementEnd('div'); + $this->elementEnd('div'); } // MAY overload if there are feeds diff --git a/lib/feedlist.php b/lib/feedlist.php index 9bc77ca15..47d909e96 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -59,8 +59,9 @@ class FeedList extends Widget function show($feeds) { - $this->out->elementStart('div', array('class' => 'feeds')); - $this->out->element('p', null, 'Feeds:'); + $this->out->elementStart('div', array('id' => 'export_data', + 'class' => 'section')); + $this->out->element('h2', null, _('Export data')); $this->out->elementStart('ul', array('class' => 'xoxo')); foreach ($feeds as $key => $value) { diff --git a/lib/noticelist.php b/lib/noticelist.php index ad3af4391..7f63089b3 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -79,7 +79,8 @@ class NoticeList extends Widget function show() { - $this->out->elementStart('ul', array('id' => 'notices')); + $this->out->element('h2', null, _('Notices')); + $this->out->elementStart('ul', array('class' => 'notices')); $cnt = 0; diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 8b2e2f801..8685bdc87 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -302,7 +302,7 @@ float:left; position:relative; } -#supplemental_primary { +#aside_primary { width:300px; float:left; margin-left:2px; diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index f6a4747c7..4f2ba4652 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -29,7 +29,7 @@ color:#002E6E; -#supplemental_primary { +#aside_primary { background-color:#CEE1E9; } |