]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Made admin welcome widget a bit more semantic
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 29 Apr 2011 22:44:41 +0000 (22:44 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 29 Apr 2011 22:44:41 +0000 (22:44 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@9055 36083f99-b078-4883-b0ff-0f9b5a30f544

languages/en.php
views/default/css/admin.php
views/default/widgets/admin_welcome/content.php

index 943dbb285bee2bd42520151fe049e5305fc0d059..1e32caf6fe3ccb421dee8d8239e4d72224652679 100644 (file)
@@ -578,11 +578,11 @@ $english = array(
        'admin:widget:admin_welcome:admin_overview' =>
 "Navigation for the administration area is provide by the menu to the right. It is organized into"
 . " three sections:
-       <ul>
-               <li><b>Administer</b> - Everyday tasks like monitoring reported content, checking who is online, and viewing statistics.</li>
-               <li><b>Configure</b> - Occasional tasks like setting the site name or activating a plugin.</li>
-               <li><b>Develop</b> - For developers who are building plugins or designing themes. (Requires a developer plugin.)</li>
-       </ul>
+       <dl>
+               <dt>Administer</dt><dd>Everyday tasks like monitoring reported content, checking who is online, and viewing statistics.</dd>
+               <dt>Configure</dt><dd>Occasional tasks like setting the site name or activating a plugin.</dd>
+               <dt>Develop</dt><dd>For developers who are building plugins or designing themes. (Requires a developer plugin.)</dd>
+       </dl>
        ",
 
        // argh, this is ugly
index 68720b89a86a4b942eaa4043f33ca195e5df8bd6..3801fee32705e315f866ce6952f0cbf4fcaf0bd3 100644 (file)
@@ -116,6 +116,9 @@ p {
        margin-bottom: 15px;
 }
 
+.elgg-output dt { font-weight: bold }
+.elgg-output dd { margin: 0 0 1em 2em }
+
 table.mceLayout {
        width:100% !important;
 }
index 6a9a92e27f2370a684aeda7bc354087fc8db22dd..f4b92ea66b0123ffbb87424a7e49f9f3c66ec7ba 100644 (file)
@@ -12,6 +12,8 @@ $sections = array(
 
 // don't use longtext because it filters output.
 // that's annoying.
+echo '<div class="elgg-output">';
 foreach ($sections as $section => $strings) {
        echo '<p>' . elgg_echo("admin:widget:admin_welcome:$section", $strings) . '</p>';
-}
\ No newline at end of file
+}
+echo '</div>';
\ No newline at end of file