diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-04-02 20:23:15 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-04-02 20:23:15 +0000 |
commit | 0a8be2adda8e65665ac3bbbff6d7d02d76685bc6 (patch) | |
tree | bbd78d02853c6473cc3ff3e1950c87e159bcd144 | |
parent | a65fd88dcbb32af9f23255ede9d86d8e242ed928 (diff) | |
download | brdo-0a8be2adda8e65665ac3bbbff6d7d02d76685bc6.tar.gz brdo-0a8be2adda8e65665ac3bbbff6d7d02d76685bc6.tar.bz2 |
- Patch #234785 by Rowanw, yoroy, flobruit, et al: usability: improve visibility of the 'more help' link by adding an icon.
-rw-r--r-- | includes/theme.inc | 2 | ||||
-rw-r--r-- | misc/help.png | bin | 0 -> 367 bytes | |||
-rw-r--r-- | modules/system/system.css | 10 |
3 files changed, 8 insertions, 4 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 8fe204910..7693a482a 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1449,7 +1449,7 @@ function theme_item_list($items = array(), $title = NULL, $type = 'ul', $attribu * Returns code that emits the 'more help'-link. */ function theme_more_help_link($url) { - return '<div class="more-help-link">'. t('[<a href="@link">more help...</a>]', array('@link' => check_url($url))) .'</div>'; + return '<div class="more-help-link">'. t('<a href="@link">More help</a>', array('@link' => check_url($url))) .'</div>'; } /** diff --git a/misc/help.png b/misc/help.png Binary files differnew file mode 100644 index 000000000..fdeaa2113 --- /dev/null +++ b/misc/help.png diff --git a/modules/system/system.css b/modules/system/system.css index 2e1453048..4a2355586 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -153,11 +153,15 @@ tr.merge-up, tr.merge-up td, tr.merge-up th { .marker, .form-required { color: #f00; } -.more-link { +.more-help-link { text-align: right; /* LTR */ } -.more-help-link { - font-size: 0.85em; +.more-help-link a { + padding: 1px 0 1px 20px; + background-image: url(../../misc/help.png); + background-repeat: no-repeat; +} +.more-link { text-align: right; /* LTR */ } .nowrap { |