Use fugue icons in dashboard and adjust font-size to fit new icon height

This commit is contained in:
Eike Foken
2011-09-11 22:20:03 +02:00
parent c4187b9c03
commit c6d5b0faa6
2 changed files with 4 additions and 4 deletions

View File

@@ -37,12 +37,12 @@ class Dashboard extends CI_Controller {
public function index() { public function index() {
$tpl['action_buttons'] = array( $tpl['action_buttons'] = array(
array( array(
'icon' => 'tango/folder-new.png', 'icon' => 'icons-big/folder-new.png',
'text' => _('New project'), 'text' => _('New project'),
'target' => site_url('projects/create'), 'target' => site_url('projects/create'),
), ),
array( array(
'icon' => 'tango/document-open.png', 'icon' => 'icons-big/blue-folder-open-document.png',
'text' => _('Recent results'), 'text' => _('Recent results'),
'target' => site_url('jobs/results'), 'target' => site_url('jobs/results'),
), ),

View File

@@ -682,5 +682,5 @@ html ul.tabs li.active a:hover {
} }
#dashboard a.button strong { #dashboard a.button strong {
font-size: 2.5em; font-size: 24px;
} }