| Re: Default admin theme doesn't switch to silver |
| by trabis on 2011/10/3 20:51:27 Okey, seems like the order of css inclusion does make difference. My fault. Edit modules/system/themes/default/default.php and change le="color: #000000"><?php $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/dark.css', array('title' => 'dark', 'media' => 'screen')); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/silver.css', array('title' => 'silver', 'media' => 'screen')); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/orange.css', array('title' => 'orange', 'media' => 'screen')); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/style.css' ); Into le="color: #000000"><?php $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/style.css' ); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/dark.css', array('title' => 'dark', 'media' => 'screen')); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/silver.css', array('title' => 'silver', 'media' => 'screen')); $xoTheme->addStylesheet(XOOPS_ADMINTHEME_URL . '/default/css/orange.css', array('title' => 'orange', 'media' => 'screen'));
|
| Re: Default admin theme doesn't switch to silver |
| by trabis on 2011/10/3 20:29:32 I confirm. Will investigate it. Thank you! |
| Default admin theme doesn't switch to silver |
| by SMEDrieben on 2011/10/3 20:10:34 Great work 2.5.2. ! I discovered one strange thing. It isn't a very important bug (if it is one), but my default 2.5.2. admin theme doesn't switch to silver. In 2.5.1a it worked perfectly ! When I click om "Silver", the fonts get black, but the header and the background remain dark. When I click, thereafter, on "Dark", the fonts return to light gray: the background (header) doesn't switch. I did these tests both with Chrome and IE9. The same results. Erasing xoops-caches and Chrome caches doesn't change anything. Any idea ? SME Drieben |