]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed <dl> structure from NoticeListItem::showDeleteLink. Reason:
authorSarven Capadisli <csarven@controlyourself.ca>
Sat, 25 Jul 2009 17:37:37 +0000 (17:37 +0000)
committerSarven Capadisli <csarven@controlyourself.ca>
Sat, 25 Jul 2009 17:37:37 +0000 (17:37 +0000)
To speed up DOM load by cutting down 3 nodes in each notice list item.
Generally each notice option should be a list item in a <ul>, however,
there is no tangible benefit for the user using this approach. In this
case, minimalism is favoured. Similarly, the new approach will make 5
fewer function calls on the server side.

lib/noticelist.php
theme/base/css/display.css
theme/default/css/display.css
theme/identica/css/display.css

index 44726a17b7b7a3da4116724bc0ed1d4c69b8d35b..d4d4fc71193345af7661235608dd2016920f730f 100644 (file)
@@ -479,13 +479,9 @@ class NoticeListItem extends Widget
         if ($user && $this->notice->profile_id == $user->id) {
             $deleteurl = common_local_url('deletenotice',
                                           array('notice' => $this->notice->id));
-            $this->out->elementStart('dl', 'notice_delete');
-            $this->out->element('dt', null, _('Delete this notice'));
-            $this->out->elementStart('dd');
             $this->out->element('a', array('href' => $deleteurl,
+                                           'class' => 'notice_delete',
                                            'title' => _('Delete this notice')), _('Delete'));
-            $this->out->elementEnd('dd');
-            $this->out->elementEnd('dl');
         }
     }
 
index 867dc0ef7ce38b2be546100e8e796b20476d7475..80ab397ee9b27c2d2c8bd70d0251a4242cd40e5d 100644 (file)
@@ -937,22 +937,18 @@ display:block;
 border:0;
 }
 .notice-options .notice_reply a,
-.notice-options .notice_delete {
+.notice-options .notice_delete {
 text-decoration:none;
 padding-left:16px;
 }
-
 .notice-options form input.submit {
 width:16px;
 padding:2px 0;
 }
-
-.notice-options .notice_delete dt,
 .notice-options .form_favor legend,
 .notice-options .form_disfavor legend {
 display:none;
 }
-.notice-options .notice_delete fieldset,
 .notice-options .form_favor fieldset,
 .notice-options .form_disfavor fieldset {
 border:0;
index 251d6706bee4de44330563b2b1279f4baf484ce7..e8df27718fe966f31bdc84f2eaa10321e90c2490 100644 (file)
@@ -227,7 +227,7 @@ background:transparent url(../../base/images/icons/twotone/green/favourite.gif)
 .notice-options form.form_disfavor input.submit {
 background:transparent url(../../base/images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%;
 }
-.notice-options .notice_delete {
+.notice-options .notice_delete {
 background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%;
 }
 
index 42a4573a741af070a7ff4452969ab57e77ae75de..7dd4256bf54867d626cddaf933f2aed7504f0f7f 100644 (file)
@@ -227,7 +227,7 @@ background:transparent url(../../base/images/icons/twotone/green/favourite.gif)
 .notice-options form.form_disfavor input.submit {
 background:transparent url(../../base/images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%;
 }
-.notice-options .notice_delete {
+.notice-options .notice_delete {
 background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%;
 }