mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-15 12:36:50 +01:00
Refactoring for better consistency and simplicity. 5KB less in size of (minified) styles.css file. Layout changes: - body > #layout > .menu -> #layout-menu - body > #layout > .list -> #layout-list - body > #layout > .sidebar -> #layout-sidebar - body > #layout > .content -> #layout-content Toolbar/menu changes: - .toolbar -> .toolbar.menu - .toolbarmenu -> .menu.listing - .menu-button -> .task-menu-button - .pagenav.toolbar -> .pagenav.menu - #taskmenu -> #taskmenu.menu.toolbar - .image-tools .menu -> .image-tools .menu.toolbar - required .disabled class to de-activate menu items - .button class is not required on .menu children - merge toolbar.less and taskmenu.less into menu.less - @color-toolbarmenu-hover -> @color-menu-hover - @color-toolbarmenu-hover-background -> @color-menu-hover-background Also cleaned/removed some code in spellchecker.js. Made .googie_list a list not table.
16 lines
573 B
HTML
16 lines
573 B
HTML
<roundcube:include file="includes/layout.html" />
|
|
<roundcube:include file="includes/menu.html" />
|
|
<roundcube:include file="includes/settings-menu.html" condition="env:task == 'settings'" />
|
|
|
|
<div id="layout-content" class="selected" role="main">
|
|
<div class="header">
|
|
<a class="button icon back-list-button" href="#back"><span class="inner"><roundcube:label name="back" /></span></a>
|
|
<span class="header-title"></span>
|
|
</div>
|
|
<roundcube:object name="plugin.body" />
|
|
</div>
|
|
|
|
<roundcube:object name="plugin.footer" />
|
|
|
|
<roundcube:include file="includes/footer.html" />
|