Changeset 843
- Timestamp:
- 08/29/08 06:24:01 (3 months ago)
- Location:
- plugins/fireeagle/trunk
- Files:
-
- 2 added
- 2 modified
-
css/admin.css (modified) (2 diffs)
-
fireeagle.plugin.php (modified) (2 diffs)
-
img (added)
-
img/fireeagle.png (added)
Legend:
- Unmodified
- Added
- Removed
-
plugins/fireeagle/trunk/css/admin.css
r840 r843 1 1 .dashboard .module.fire-eagle-module .modulecore { 2 2 height: 25px; 3 } 4 5 .dashboard .module.fire-eagle-module h2 img { 6 vertical-align: middle; 7 margin-left: 5px; 3 8 } 4 9 … … 12 17 13 18 .dashboard .module.fire-eagle-module input[type=text] { 14 width: 2 80px;19 width: 250px; 15 20 } 16 21 .dashboard .module.fire-eagle-module .formcontrol { -
plugins/fireeagle/trunk/fireeagle.plugin.php
r842 r843 171 171 public function action_admin_header($theme) 172 172 { 173 if ($theme->page != 1) return; 173 if ($theme->page != 1) return; // why dashboard is 1? 174 174 Stack::add('admin_header_javascript', $this->get_url() . '/js/admin.js'); 175 175 Stack::add('admin_stylesheet', array($this->get_url() . '/css/admin.css', 'screen')); … … 271 271 public function filter_dash_module_fire_eagle($module, $module_id, $theme) 272 272 { 273 $module['title'] = _t('Fire Eagle', 'fireeagle') ;273 $module['title'] = _t('Fire Eagle', 'fireeagle') . '<img src="' . $this->get_url() . '/img/fireeagle.png" alt= "Fire Eagle" />'; 274 274 275 275 $form = new FormUI('dash_fireeagle');
