New theme base for SuiteDesk

This commit is contained in:
Manuel Cillero 2017-07-25 13:55:37 +02:00
parent c1bbd9d6f5
commit 8cf3c56044
137 changed files with 12866 additions and 8 deletions

View file

@ -0,0 +1,41 @@
/**
* @file
* Page manager layout
*
* We are using percentages in the admin instead of fixed widths so that the
* admin can work nicely in different admin themes.
*/
#panels-dnd-main div.panels-display h2.label {
padding-left: 24px;
text-align: left;
}
#page-manager-edit .zen-one-sidebar-first .panel-content {
float: left; /* LTR */
width: 66%;
margin-left: 34%; /* LTR */
margin-right: -100%; /* LTR */ /* Negative value of #content's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
}
#page-manager-edit .zen-one-sidebar-first .panel-content .inside {
margin-right: 0px;
}
#page-manager-edit .zen-one-sidebar-first .panel-header {
height: auto;
margin-bottom: 10px;
}
#page-manager-edit .zen-one-sidebar-first .panel-sidebar-first {
float: left; /* LTR */
width: 34%;
margin-left: 0px; /* LTR */ /* Width of #content. */
margin-right: -34%; /* LTR */ /* Negative value of #sidebar-first's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-first-inner. */
}
#page-manager-edit .zen-one-sidebar-first .panel-sidebar-first .panel-sidebar-first-inner {
margin-right: 10px;
}

View file

@ -0,0 +1,36 @@
/**
* @file
* Zen panel layout
*
* This layout does include the standar Zen navbar, content and right sidebar
* layout. Markup has been reordered for Accessibility and SEO optimizations.
* The markup order is: content, sidebar but the display will show sidebar,
* content.
*/
.zen-one-sidebar-first {
/* overflow: hidden; */
position: relative;
margin-top: 0;
padding-top: 0;
}
.zen-one-sidebar-first .panel-content {
float: left; /* LTR */
width: 640px;
margin-left: 320px; /* LTR */
margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
}
.zen-one-sidebar-first .panel-sidebar-first {
float: left; /* LTR */
width: 320px;
margin-left: 0px; /* LTR */ /* Width of #content. */
margin-right: -320px; /* LTR */ /* Negative value of #sidebar-first's width + left margin. */
padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-first-inner. */
}
.zen-one-sidebar-first .panel-sidebar-first .panel-sidebar-first-inner {
margin-right: 20px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

View file

@ -0,0 +1,20 @@
<?php
/**
* Implements hook_panels_layouts().
*/
function zen_one_sidebar_first_panels_layouts() {
$items['one_sidebar_first'] = array(
'title' => t('Zen Layout: one sidebar before content'),
'icon' => 'one-sidebar-first.png',
'theme' => 'zen_one_sidebar_first',
'admin theme' => 'zen_one_sidebar_first_admin',
'css' => 'one-sidebar-first.css',
'admin css' => 'one-sidebar-first-admin.css',
'panels' => array(
'content' => t('Content'),
'sidebar_first' => t('First sidebar'),
),
);
return $items;
}

View file

@ -0,0 +1,28 @@
<?php
/**
* @file
* Template for a 1 row, 2 column Zen-based panel layout.
*
* This template provides a two column panel display layout, with
* additional areas for the top and the bottom.
*
* Variables:
* - $css_id: An optional CSS id to use for the layout.
* - $content: An array of content, each item in the array is keyed to one
* panel of the layout. This layout supports the following sections:
* - $content['content']: Content in the main column.
* - $content['sidebar_first']: Content in the first column.
*/
?>
<div class="panel-display zen-one-sidebar-first clear-block" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
<div class="panel-content"><div class="panel-content-inner inside panel-panel">
<?php print $content['content']; ?>
</div></div> <!-- /.panel-content-inner, /.panel-content -->
<div class="panel-sidebar-first"><div class="panel-sidebar-first-inner inside panel-panel">
<?php print $content['sidebar_first']; ?>
</div></div> <!-- /.panel-sidebar-first-inner, /.panel-sidebar-first -->
</div> <!-- /.panel-zencontentfirst-inner, /.panel-zencontentfirst -->

View file

@ -0,0 +1,28 @@
<?php
/**
* @file
* Template for a 1 row, 2 column Zen-based panel layout.
*
* This template provides a two column panel display layout, with
* additional areas for the top and the bottom.
*
* Variables:
* - $css_id: An optional CSS id to use for the layout.
* - $content: An array of content, each item in the array is keyed to one
* panel of the layout. This layout supports the following sections:
* - $content['content']: Content in the main column.
* - $content['sidebar_first']: Content in the first column.
*/
?>
<div class="panel-display zen-one-sidebar-first clearfix" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
<div class="panel-content"><div class="panel-content-inner inside panel-panel">
<?php print $content['content']; ?>
</div></div> <!-- /.panel-content-inner, /.panel-content -->
<div class="panel-sidebar-first"><div class="panel-sidebar-first-inner inside panel-panel">
<?php print $content['sidebar_first']; ?>
</div></div> <!-- /.panel-sidebar-first-inner, /.panel-sidebar-first -->
</div> <!-- /.zen-one-sidebar-first -->