diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-25 17:37:37 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-25 17:37:37 +0000 |
commit | e0b877b26c5e93809b2a53b6c46326d5e31fa0e8 (patch) | |
tree | 66f89d69e364909bbb93d8ab6eb312bb02d37001 /theme/default/css/display.css | |
parent | f86faaf341ee6e6e8cfd264e1d645cc0d964d85b (diff) |
Removed <dl> structure from NoticeListItem::showDeleteLink. Reason:
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.
Diffstat (limited to 'theme/default/css/display.css')
-rw-r--r-- | theme/default/css/display.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 251d6706b..e8df27718 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -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 a { +.notice-options .notice_delete { background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%; } |