2013/5/8 4:45:19
|
---|
![]() |
2.0a2 and themesAbout how work previous themes in this release, I am making some tests and later I will post the results.
Just an issue: in style_icms.css file there are code for #mainmenu and #usermenu (classics in iCMS), but in system_block_mainmenu.html <div id="mainMenu"> (typo error "clas")<li clas="menuMain< |
2013/5/8 16:59:51
|
---|
![]() |
Re: 2.0a2 and themesCommitted fix and requested merge into 2.0: https://www.assembla.com/code/impresscms/git/merge_requests/280093
|
2013/5/8 18:42:49
|
---|
|
Re: 2.0a2 and themesmerge request was applied.
Thanks for the report and quick fix. |
2013/5/15 4:52:01
|
---|
![]() |
Re: 2.0a2 and themesI have done some test using themes for 1.3.x in alpha 2.
All works fine; just two minor issues: 1.- Admin menu: in "classic" themes I get two admin menus: "normal" and for mobile devices. CSS to add for fix it: .admin .mobileMenu, .mobileMenu {display: none } for responsive themes @media only screen and ( max-width: 640px)
{ .admin .mobileMenu, .mobileMenu { display: block; }
.toSel {display: none;}
.mobileMenu {max-width: 100%; width: 98%; background-color: #FFFFFF; border: 1px solid #CCCCCC;height: 30px; line-height: 30px; border-radius: 4px 4px 4px 4px; font-size: 14px; padding: 4px 6px; vertical-align: middle;font-weight: normal;margin: 5px 1%;} The CSS code in core theme is in /skins/v1/media/css/responsive/ and it depends of core theme; for "classic" themes display none for mobilemenu class would be in a CSS file out of core theme too. Right? 2.- User and Main Menu blocks. Now the id are mainMenu and userMenu. Old were mainmenu and usermenu. Special CSS code in old themes is lost in alpha2. |