diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-equalcol.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-flip-flop/ocio-omega-flip-flop.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.css new file mode 100755 index 0000000000000000000000000000000000000000..aa61c829aec7f02fec0363e32b5114a68cc0dc4d --- /dev/null +++ b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.css @@ -0,0 +1,39 @@ +/** + * @file + * ocio-omega-threecol panel layout +**/ + +.ocio-omega-threecol-container .panel-pane { + margin-bottom: 1em; +} + +.ocio-omega-threecol-column-content-region { + min-height: 1px; + width: 33.9%; + float: left; +} + +.ocio-omega-threecol-column-content-region-inner { + margin-right: 5%; +} + +.ocio-omega-threecol-column3 { + width: 32.2%; +} + +.ocio-omega-threecol-column3-inner { + margin-right: 0; +} + +/* iPad or less */ +@media only screen and (max-width: 760px) { + .ocio-omega-threecol-column-content-region, + .ocio-omega-threecol-column3 { + width: 100%; + float: none; + } + + .ocio-omega-threecol-column-content-region-inner { + margin-right: 0; + } +} diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.inc new file mode 100755 index 0000000000000000000000000000000000000000..f91224dde5182731c95d9a4706a6126e204d284b --- /dev/null +++ b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.inc @@ -0,0 +1,15 @@ +<?php +// Plugin definition +$plugin = array( + 'title' => t('Three Column'), + 'icon' => 'ocio-omega-threecol.png', + 'category' => t('WCM Layouts'), + 'theme' => 'ocio-omega-threecol', + 'css' => 'ocio-omega-threecol.css', + 'regions' => array( + 'header' => t('Header'), + 'column1' => t('First Column'), + 'column2' => t('Second Column'), + 'column3' => t('Third Column'), + ), +); diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.png new file mode 100755 index 0000000000000000000000000000000000000000..adede8c6f9dc3f0d4ececc2f5d924139bb611d17 Binary files /dev/null and b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.png differ diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.tpl.php new file mode 100755 index 0000000000000000000000000000000000000000..732c1005b9c17052ee63f8fe56ff588f41f4acbc --- /dev/null +++ b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-threecol.tpl.php @@ -0,0 +1,39 @@ +<?php +/** + * @file + * Template for custom ocio-omega-threecol Panopoly layout. + * + * 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: + */ +?> + +<div class="panel-display ocio-omega-threecol clearfix <?php if (!empty($class)) { print $class; } ?>" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>> + + <div class="ocio-omega-threecol-container ocio-omega-threecol-header clearfix panel-panel row-fluid"> + <div class="ocio-omega-threecol-container-inner ocio-omega-threecol-header-inner panel-panel-inner span12"> + <?php print $content['header']; ?> + </div> + </div> + + <div class="ocio-omega-threecol-container ocio-omega-threecol-column-content clearfix row-fluid"> + <div class="ocio-omega-threecol-column-content-region ocio-omega-threecol-column1 panel-panel span4"> + <div class="ocio-omega-threecol-column-content-region-inner ocio-omega-threecol-column1-inner panel-panel-inner"> + <?php print $content['column1']; ?> + </div> + </div> + <div class="ocio-omega-threecol-column-content-region ocio-omega-threecol-column2 panel-panel span4"> + <div class="ocio-omega-threecol-column-content-region-inner ocio-omega-threecol-column2-inner panel-panel-inner"> + <?php print $content['column2']; ?> + </div> + </div> + <div class="ocio-omega-threecol-column-content-region ocio-omega-threecol-column3 panel-panel span4"> + <div class="ocio-omega-threecol-column-content-region-inner ocio-omega-threecol-column3-inner panel-panel-inner"> + <?php print $content['column3']; ?> + </div> + </div> + </div> + +</div><!-- /.ocio-omega-threecol --> diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-equalcol/ocio-omega-tiles-equalcol.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol-flipped/ocio-omega-tiles-twocol-flipped.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-tiles-twocol/ocio-omega-tiles-twocol.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol-flipped.tpl.php old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.css b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.css old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.inc b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.inc old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.png b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.png old mode 100644 new mode 100755 diff --git a/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.tpl.php b/profiles/wcm_base/themes/ocio_omega_base/panels/ocio-omega-twocol.tpl.php old mode 100644 new mode 100755