diff options
-rw-r--r-- | addon/calc/calc.php | 2 | ||||
-rw-r--r-- | addon/tictac/tictac.php | 2 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 5 | ||||
-rw-r--r-- | view/theme/loozah/style.css | 6 |
4 files changed, 13 insertions, 2 deletions
diff --git a/addon/calc/calc.php b/addon/calc/calc.php index fd6a11777..a095e3960 100644 --- a/addon/calc/calc.php +++ b/addon/calc/calc.php @@ -10,7 +10,7 @@ function calc_uninstall() { }
function calc_app_menu($a,&$b) {
- $b['app_menu'] .= '<a href="calc">Calculator</a><br />';
+ $b['app_menu'] .= '<div class="app-title"><a href="calc">Calculator</a></div>';
}
diff --git a/addon/tictac/tictac.php b/addon/tictac/tictac.php index 95678302c..f73937cdd 100644 --- a/addon/tictac/tictac.php +++ b/addon/tictac/tictac.php @@ -11,7 +11,7 @@ function tictac_uninstall() { } function tictac_app_menu($a,&$b) { - $b['app_menu'] .= '<a href="tictac">' . t('Three Dimensional Tic-Tac-Toe') . '</a><br />'; + $b['app_menu'] .= '<div class="app-title"><a href="tictac">' . t('Three Dimensional Tic-Tac-Toe') . '</a></div>'; } diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 9b18b5c41..2bffc2f17 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2031,3 +2031,8 @@ a.mail-list-link { margin: 10px; padding: 10px; } + +.app-title { + margin: 10px; +} + diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 256c98d8e..7e8299eb5 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2080,3 +2080,9 @@ a.mail-list-link { margin: 10px; padding: 10px; } + + +.app-title { + margin: 10px; +} + |