diff --git a/panopoly_theme.info b/panopoly_theme.info index 3c981a822993aead89ab3dafa3bdfc888f27e9b4..ebabdbb05ca8de93f09acdd2d1f379eb8bca2e59 100755 --- a/panopoly_theme.info +++ b/panopoly_theme.info @@ -4,6 +4,7 @@ core = 7.x package = Panopoly project = panopoly_theme dependencies[] = panels +dependencies[] = radix_layouts scripts[] = js/panopoly-accordion.js stylesheets[all][] = css/panopoly-featured.css stylesheets[all][] = css/panopoly-accordian.css diff --git a/panopoly_theme.install b/panopoly_theme.install index d6d904601629be7ee2e65184c8301e2e70f2f265..2c34bb5f28d8487b6e3c25670b6ea6cbe3fccd80 100755 --- a/panopoly_theme.install +++ b/panopoly_theme.install @@ -44,3 +44,15 @@ function panopoly_theme_update_7001(&$sandbox) { // Flush the Theme Data system_rebuild_theme_data(); } + +/** + * Enable radix_layouts and clear layout/theme caches. + */ +function panopoly_theme_update_7002() { + module_enable(array('radix_layouts')); + + // Clear caches so that we can find the Radix layouts and make the Panopoly + // layouts stubs. + cache_clear_all('ctools_plugin_files:panels:layouts', 'cache'); + system_rebuild_theme_data(); +} diff --git a/panopoly_theme.make b/panopoly_theme.make index 9a622e9971f0c290a10c72323b8b2c4f7a75513d..8e7504c661dd6a30bbf9af68efb4460e6eca4562 100755 --- a/panopoly_theme.make +++ b/panopoly_theme.make @@ -3,6 +3,10 @@ api = 2 core = 7.x +; Radix Layouts +projects[radix_layouts][version] = 3.1 +projects[radix_layouts][subdir] = contrib + ; Summon the Power of Respond.js projects[respondjs][version] = 1.4 diff --git a/plugins/layouts/bartlett/bartlett.css b/plugins/layouts/bartlett/bartlett.css deleted file mode 100644 index d4442e820b9a6d4398ce7dbd59870934a978b2f6..0000000000000000000000000000000000000000 --- a/plugins/layouts/bartlett/bartlett.css +++ /dev/null @@ -1,51 +0,0 @@ -/** - * @file - * Bartlett panel layout -**/ - -.bartlett-container, -.bartlett-content-header { - margin-bottom: 1em; -} - -.bartlett-column { - width: 34.043%; - float: left; -} - - .bartlett-column-inner { - margin-right: 20px; - } - -.bartlett-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "bartlett-column" class */ - float: left; - width: 65.957%; -} - - .bartlett-content-container .bartlett-content-column1 { - width: 51.613%; - } - - .bartlett-content-container .bartlett-content-column2 { - width: 48.387%; - } - - .bartlett-content-column2-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .bartlett-column, - .bartlett-content-container, - .bartlett-content-container .bartlett-content-column1, - .bartlett-content-container .bartlett-content-column2 { - width: 100%; - float: none; - } - - .bartlett-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/bartlett/bartlett.inc b/plugins/layouts/bartlett/bartlett.inc index 0860d38d542ab90f80e49835761a65b2d431676a..b81126aff91f863ee926bcc56761fbad2b8a6a70 100644 --- a/plugins/layouts/bartlett/bartlett.inc +++ b/plugins/layouts/bartlett/bartlett.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Bartlett'), - 'icon' => 'bartlett.png', + 'icon' => 'radix-bartlett.png', + 'file' => 'radix_bartlett.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_bartlett', 'category' => t('Panopoly'), - 'theme' => 'bartlett', - 'css' => 'bartlett.css', + 'theme' => 'radix_bartlett', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentheader' => t('Content Header'), diff --git a/plugins/layouts/bartlett/bartlett.png b/plugins/layouts/bartlett/bartlett.png deleted file mode 100644 index 2a182dfd563ff97d5561aa8faf4e7d82f27522ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmV;=0WkiFP)aW)JUl#vgoH&!MOau^E-o%MHa1L5O#J-(KtMnyCMLCc#ot?S4xoBu;YinyA9UX>-hGb-9L_|boWo24gT4G{iNl8gtTU$ChIyW~r zFfcGmN=o_p`5_@8ii(OLARv^KlzV%7P*6~BZ*Q-!uNxa1U|?W9Jw0AtUPwqtb#-+? zK|xJTO))VsDJd!c|Nk>HGbAs)w*UYDrAb6VRCwC#(YF%9Fcd^lfk`$tIp>^nMw0RW z{}od6M4^$#CGc*!GpAZIDl=%9dx;u(W@=0xMGn0i|1EJChKCgNgASrOhx zf&>W?BuJ3_Iax&|H!`bI$UR8%bk*YBCE1tMLXU3&1^~8sqi;``au)yq002ovPDHLk FV1j*5vJ3zK diff --git a/plugins/layouts/bartlett/bartlett.tpl.php b/plugins/layouts/bartlett/bartlett.tpl.php deleted file mode 100644 index 6b0ff09b5160c7c0cb19150fffb88d727c99f25a..0000000000000000000000000000000000000000 --- a/plugins/layouts/bartlett/bartlett.tpl.php +++ /dev/null @@ -1,43 +0,0 @@ - - -
> -
-
-
- -
-
- -
-
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- -
-
-
diff --git a/plugins/layouts/bartlett_flipped/bartlett-flipped.css b/plugins/layouts/bartlett_flipped/bartlett-flipped.css deleted file mode 100644 index 6b3386d39b35d36f7accb6918ecf01bbca1ecbe8..0000000000000000000000000000000000000000 --- a/plugins/layouts/bartlett_flipped/bartlett-flipped.css +++ /dev/null @@ -1,62 +0,0 @@ -/** - * @file - * Bartlett Flipped panel layout -**/ - -.bartlett-flipped-container, -.bartlett-flipped-content-header { - margin-bottom: 1em; -} - -.bartlett-flipped-column { - width: 34.043%; - float: left; -} - - .bartlett-flipped-column-inner { - margin-right: 20px; - } - - .bartlett-flipped-content-column2-inner, - .bartlett-flipped-sidebar-inner { - margin-right: 0; - } - -.bartlett-flipped .bartlett-flipped-sidebar { - width: 31.915%; -} - -.bartlett-flipped-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "bartlett-flipped-column" class */ - float: left; - width: 68.085%; -} - - .bartlett-flipped-content-container-inner { - margin-right: 20px; - } - - .bartlett-flipped-content-container .bartlett-flipped-content-column1 { - width: 51.613%; - } - - .bartlett-flipped-content-container .bartlett-flipped-content-column2 { - width: 48.387%; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .bartlett-flipped-column, - .bartlett-flipped-content-container, - .bartlett-flipped .bartlett-flipped-sidebar, - .bartlett-flipped-content-container .bartlett-flipped-content-column1, - .bartlett-flipped-content-container .bartlett-flipped-content-column2 { - width: 100%; - float: none; - } - - .bartlett-flipped-column-inner, - .bartlett-flipped-content-container-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/bartlett_flipped/bartlett-flipped.png b/plugins/layouts/bartlett_flipped/bartlett-flipped.png deleted file mode 100644 index 17d0aa1fd32961f219f5779e5d247bfec6630db1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 417 zcmV;S0bc%zP)T3T9|n3z&hQawFAA0Hn)JUoq!jYC62b#-+{Mn?Yr{+5=OSy@?|o11NI zZC+kp92^`aB_*Syqibtx!otF@udhc(M`UDVdU|>`@}!ey=D?TwLy3h#xtTo*J^7tmjD9*F%lSqVY)d#00000 LNkvXXu0mjf7H6Zl diff --git a/plugins/layouts/bartlett_flipped/bartlett-flipped.tpl.php b/plugins/layouts/bartlett_flipped/bartlett-flipped.tpl.php deleted file mode 100644 index deaacb1ee382905770f1e4802be6cf33e556ecdd..0000000000000000000000000000000000000000 --- a/plugins/layouts/bartlett_flipped/bartlett-flipped.tpl.php +++ /dev/null @@ -1,44 +0,0 @@ - - -
> -
-
-
-
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
-
- -
-
- -
-
-
-
diff --git a/plugins/layouts/bartlett_flipped/bartlett_flipped.inc b/plugins/layouts/bartlett_flipped/bartlett_flipped.inc index 5919bfc4df10740a10610c84b73b889672f9071f..c023846f2c3e4653021d147ad643bab5577d25e1 100644 --- a/plugins/layouts/bartlett_flipped/bartlett_flipped.inc +++ b/plugins/layouts/bartlett_flipped/bartlett_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Bartlett Flipped'), - 'icon' => 'bartlett-flipped.png', + 'icon' => 'radix-bartlett-flipped.png', + 'file' => 'radix_bartlett_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_bartlett_flipped', 'category' => t('Panopoly'), - 'theme' => 'bartlett_flipped', - 'css' => 'bartlett-flipped.css', + 'theme' => 'radix_bartlett_flipped', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentheader' => t('Content Header'), diff --git a/plugins/layouts/boxton/boxton.inc b/plugins/layouts/boxton/boxton.inc index a39d32dd4f0540a362955da8a2b476f0775e80de..a2870ae821049c99b1c1a624cae0be859b034a2b 100644 --- a/plugins/layouts/boxton/boxton.inc +++ b/plugins/layouts/boxton/boxton.inc @@ -2,9 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Boxton'), - 'icon' => 'boxton.png', + 'icon' => 'radix-boxton.png', + 'file' => 'radix_boxton.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_boxton', 'category' => t('Panopoly'), - 'theme' => 'boxton', + 'theme' => 'radix_boxton', 'regions' => array( 'contentmain' => t('Content'), ), diff --git a/plugins/layouts/boxton/boxton.png b/plugins/layouts/boxton/boxton.png deleted file mode 100644 index 38d1c09d90916bec7f8186895354fbe789ac0c8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MG^r%A+CCQdQnkP0RaJ)mX@}*wrOc;j*gDT#>P>bUE_gj z%sgEjLn>~)IlWVmK|z4ou((XnOk~J eEv#bVVK}=r#P{Z|$fZCN7(8A5T-G@yGywqiP&z>X diff --git a/plugins/layouts/boxton/boxton.tpl.php b/plugins/layouts/boxton/boxton.tpl.php deleted file mode 100644 index ad0a70434e762984f69cfdaa7a6d6eda247d5233..0000000000000000000000000000000000000000 --- a/plugins/layouts/boxton/boxton.tpl.php +++ /dev/null @@ -1,19 +0,0 @@ - - -
> -
-
- -
-
-
diff --git a/plugins/layouts/brenham/brenham.css b/plugins/layouts/brenham/brenham.css deleted file mode 100644 index 378b58c321aa6097247e487ec24bce858d31eb60..0000000000000000000000000000000000000000 --- a/plugins/layouts/brenham/brenham.css +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @file - * Brenham panel layout -**/ - -.brenham-container { - margin-bottom: 1em; -} - -.brenham-sidebar { - min-height: 1px; - width: 34.043%; - float: left; -} - - .brenham-sidebar-inner { - margin-right: 20px; - } - -.brenham-content { - width: 65.957%; - float: left; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .brenham-content, - .brenham-sidebar { - width: 100%; - float: none; - } - - .brenham-sidebar-inner { - margin-right: 0; - } - -} diff --git a/plugins/layouts/brenham/brenham.inc b/plugins/layouts/brenham/brenham.inc index 84cf725b2ec7d0eb497346ee946f23fa5921b5d2..b9c316169558797c750b9bfd1dbdf960f79112f5 100644 --- a/plugins/layouts/brenham/brenham.inc +++ b/plugins/layouts/brenham/brenham.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Brenham'), - 'icon' => 'brenham.png', + 'icon' => 'radix-brenham.png', + 'file' => 'radix_brenham.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_brenham', 'category' => t('Panopoly'), - 'theme' => 'brenham', - 'css' => 'brenham.css', + 'theme' => 'radix_brenham', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Content Sidebar'), diff --git a/plugins/layouts/brenham/brenham.png b/plugins/layouts/brenham/brenham.png deleted file mode 100644 index 2a6d2c0f464140cd22b364e31c4ba20717e356b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 356 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MHK-)A+9biE(Qh$adB}00Rh_D+6@g2IyyR0QBlp!%~n=c z4h{~swzlTx=1oma|Ni|`S6A24(u$9dpEYY%U|^uNwRKNVkH5daf`UR&P*8Suwv3ES zW@ct*XJ=YkT6J}GY;0^rMa9OA8|&)odV6~{G&CF?9smFTZ)|KlbEVH4pc|SzT^vIy zZoRp9ny<+~p!Ff6V&$G) z#y9O99pMXCa98&7u6^@w`kl>3OwZgu{d1GbyiMXucb09Pta{z6`qa@hFWKA2mn$dN w3P8XF`9(WiE;&nu|Jt%d{Mh6*_DnnsyMC?Iczhz_InXr>p00i_>zopr0Oq=g-T(jq diff --git a/plugins/layouts/brenham/brenham.tpl.php b/plugins/layouts/brenham/brenham.tpl.php deleted file mode 100644 index 4feae5506cfc7cb821126213b1ef58bdc316a575..0000000000000000000000000000000000000000 --- a/plugins/layouts/brenham/brenham.tpl.php +++ /dev/null @@ -1,32 +0,0 @@ - - -
> -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
diff --git a/plugins/layouts/brenham_flipped/brenham-flipped.css b/plugins/layouts/brenham_flipped/brenham-flipped.css deleted file mode 100644 index 70845147c2b361d88d879bfd04dd68a6524bdd90..0000000000000000000000000000000000000000 --- a/plugins/layouts/brenham_flipped/brenham-flipped.css +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @file - * Brenham Flipped panel layout -**/ - -.brenham-flipped-container { - margin-bottom: 1em; -} - -.brenham-flipped-sidebar { - min-height: 1px; - width: 31.915%; - float: left; -} - -.brenham-flipped-content { - width: 68.085%; - float: left; -} - - .brenham-flipped-content-inner { - margin-right: 20px; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .brenham-flipped-content, - .brenham-flipped-sidebar { - width: 100%; - float: none; - } - - .brenham-flipped-content-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/brenham_flipped/brenham-flipped.png b/plugins/layouts/brenham_flipped/brenham-flipped.png deleted file mode 100644 index 7d39930cbd6dda66b9a4c046de4ec6ab260ee8ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MKc3@LR?*3T#Ss23=Ivvy}bhh0t^fc;^N|}tE;1;q8uF^ zo12>*92~5ytZZ#<|NZ+H6B9FQ)~vw5z=(*5;^N}IzP^bQC)U)|G&VNs>FKGftLy9Q z%gD&c%gYxQ7UtySxVyWzw6ys7`2__9+1uMUH8rWJshOLbYiVi4#>Upw)upASrKYAP zBqXd`w@y=2Q$s^TTU-18|Nq9u#(#{mB!G_W_H=O!skrs#;%UAn1A*3ui#ryuIx>p7 z?5to7yzsr=;_a&4lWt1Rsjs}GpJ|k#wx!GZ&JmTZtOiw+rKEk@obP12zv7h13l6#` zr(d++`_Sc>;HUcg`sK2><|tVduGWn85_)r`NX&Nmo1CAbt5sv>a|)~Z%rHp&^xP%D pvn}Y1iRD(6pRT&cuevudG8`@A_ph7k84Gk4gQu&X%Q~loCIDanj{*Py diff --git a/plugins/layouts/brenham_flipped/brenham-flipped.tpl.php b/plugins/layouts/brenham_flipped/brenham-flipped.tpl.php deleted file mode 100644 index 4e6106424ed0688cace5686c4ce4ff14427018f3..0000000000000000000000000000000000000000 --- a/plugins/layouts/brenham_flipped/brenham-flipped.tpl.php +++ /dev/null @@ -1,32 +0,0 @@ - - -
> -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
diff --git a/plugins/layouts/brenham_flipped/brenham_flipped.inc b/plugins/layouts/brenham_flipped/brenham_flipped.inc index a5936d1e994fdc969f8e6d1d2abcac045a07e2f1..b542261851fb79965881ecf04b67ecb624582d61 100644 --- a/plugins/layouts/brenham_flipped/brenham_flipped.inc +++ b/plugins/layouts/brenham_flipped/brenham_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Brenham Flipped'), - 'icon' => 'brenham-flipped.png', + 'icon' => 'radix-brenham-flipped.png', + 'file' => 'radix_brenham_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_brenham_flipped', 'category' => t('Panopoly'), - 'theme' => 'brenham_flipped', - 'css' => 'brenham-flipped.css', + 'theme' => 'radix_brenham_flipped', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Content Sidebar'), diff --git a/plugins/layouts/brown/brown.css b/plugins/layouts/brown/brown.css deleted file mode 100644 index 587f5bc65c84e029f2eed68481bb492baf16bdbc..0000000000000000000000000000000000000000 --- a/plugins/layouts/brown/brown.css +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @file - * Brown panel layout -**/ - -.brown-container { - margin-bottom: 1em; -} - -.brown-slider { - float: left; - width: 68.085% -} - - .brown-slider-inner { - margin-right: 20px; - } - -.brown-slider-gutter { - float: left; - width: 31.915%; -} - -.brown-middle-region, -.brown-footer-region { - width: 34.043%; - float: left; -} - - .brown-middle-region-inner, - .brown-footer-region-inner { - margin-right: 20px; - } - - .brown-column3, - .brown-footer-column3 { - width: 31.915%; - } - - .brown-column3-inner, - .brown-footer-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .brown-slider, - .brown-slider-gutter, - .brown-middle-region, - .brown-footer-region, - .brown-column3, - .brown-footer-column3 { - width: 100%; - float: none; - } - - .brown-slider-inner, - .brown-middle-region-inner, - .brown-footer-region-inner { - margin-right: 0; - } - -} diff --git a/plugins/layouts/brown/brown.inc b/plugins/layouts/brown/brown.inc index 77d39e5e119b1cd88dd3928488a71276b34b4ebf..d2f3796a5aadf05204662be22cbc59e5b3f2e2af 100644 --- a/plugins/layouts/brown/brown.inc +++ b/plugins/layouts/brown/brown.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Brown'), - 'icon' => 'brown.png', + 'icon' => 'radix-brown.png', + 'file' => 'radix_brown.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_brown', 'category' => t('Panopoly'), - 'theme' => 'brown', - 'css' => 'brown.css', + 'theme' => 'radix_brown', 'regions' => array( 'slider' => t('Slider'), 'slidergutter' => t('Slider Gutter'), diff --git a/plugins/layouts/brown/brown.png b/plugins/layouts/brown/brown.png deleted file mode 100644 index 7e07fe06e236e5dae40a5af3a2f815c77a52c9b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 617 zcmV-v0+#)WP)X+MY6K8YHDg{XJ;@lFe)l4Qc_ZI zaB%tg`6nkQQBhHlkdQ4cEio}MbaZq~Oicd%{_*kg^YinruCB1Kupb{EUteGS{rzoi zZ8$hM)z#Jd`udlbm&V4%W@ct_adEA!ttBNTPft(1y}gNviAhOG#l^+7wY4rTE|ajhK7be zKR=n7nH(G(udlCISXewfJZ^4oCMG7Got=k=hek$5O-)Ub_ z0Skm0kQSQQ5mclpV4+Lr|Nj>A+)nyGvKUxAMLYlPPQ+7|$^$M<)_zOeHGWtK^kH@XT5_av_^J z*DaMaVM0Z63-7tE>pxGMiIZRUZxPtt#E?x4vQ3ms9`g8)AqQdReRYymq7sRua|$v; zPO?uhwG=1U9+- - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/bryant/bryant.css b/plugins/layouts/bryant/bryant.css deleted file mode 100644 index 67d6ab0f2c115504157024f59b0c3369a20dc448..0000000000000000000000000000000000000000 --- a/plugins/layouts/bryant/bryant.css +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @file - * Bryant panel layout -**/ - -.bryant-container { - margin-bottom: 1em; -} - -.bryant-sidebar { - min-height: 1px; - width: 23.404%; - float: left; -} - - .bryant-sidebar-inner { - margin-right: 20px; - } - -.bryant-content { - float: left; - width: 76.596%; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .bryant-sidebar, - .bryant-content { - width: 100%; - float: none; - } - - .bryant-sidebar-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/bryant/bryant.inc b/plugins/layouts/bryant/bryant.inc index 011d1d680fb568756a32424a6034ec768dbcbca8..c85a7435b65a82cc443d5adb987a18f9160906f3 100644 --- a/plugins/layouts/bryant/bryant.inc +++ b/plugins/layouts/bryant/bryant.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Bryant'), - 'icon' => 'bryant.png', + 'icon' => 'radix-bryant.png', + 'file' => 'radix_bryant.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_bryant', 'category' => t('Panopoly'), - 'theme' => 'bryant', - 'css' => 'bryant.css', + 'theme' => 'radix_bryant', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentmain' => t('Content'), diff --git a/plugins/layouts/bryant/bryant.png b/plugins/layouts/bryant/bryant.png deleted file mode 100644 index 3864e7e7539e9905ada4eaf8513108f820db603c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9Mcx5EA+G7^>6)6FSy@?*j*f$ENR?zkA zlYwei7r3nsh~B@svSV{cl>i(}u%Ecz+_9BU-fL6Jru>5)k5vyaY|>;BkWUX<1+ - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/bryant_flipped/bryant-flipped.css b/plugins/layouts/bryant_flipped/bryant-flipped.css deleted file mode 100644 index bfbae628f24f2f27f7265eaa9f7e80cd0aff57b5..0000000000000000000000000000000000000000 --- a/plugins/layouts/bryant_flipped/bryant-flipped.css +++ /dev/null @@ -1,38 +0,0 @@ -/** - * @file - * Bryant Flipped panel layout -**/ - -.bryant-flipped-container { - margin-bottom: 1em; -} - -.bryant-flipped-sidebar { - min-height: 1px; - width: 21.277%; - float: left; -} - -.bryant-flipped-content { - min-height: 1px; - float: left; - width: 78.723%; -} - - .bryant-flipped-content-inner { - margin-right: 20px; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .bryant-flipped-sidebar, - .bryant-flipped-content { - width: 100%; - float: none; - } - - .bryant-flipped-content-inner { - margin-right: 0; - } - -} diff --git a/plugins/layouts/bryant_flipped/bryant-flipped.png b/plugins/layouts/bryant_flipped/bryant-flipped.png deleted file mode 100644 index 0e41c32fa821d7eebca07019e74ba786d9a759de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MIiw`A+8M#4N*~18X6ipIyx>cE{TbWy1KeSK|wh=IW{&n z|Ni~6u&^*PGODSmv9`9>*47RU4OLWBw6n8QS67dSh?p~HPIq^=nwnZhMuwxKGv4ha+c=W zMW@}Xo~ZM4##G*CVm_zC7cF1X8MAMRfMz4maZvE5v&HSUq1}?%E?iHta@*z^Z(6Ig d)4PF@!R(dxiKXiV^nms;c)I$ztaD0e0stUqXte+U diff --git a/plugins/layouts/bryant_flipped/bryant-flipped.tpl.php b/plugins/layouts/bryant_flipped/bryant-flipped.tpl.php deleted file mode 100644 index cb1d71425acc56c9321e2b16478fed8dcd5e1d33..0000000000000000000000000000000000000000 --- a/plugins/layouts/bryant_flipped/bryant-flipped.tpl.php +++ /dev/null @@ -1,28 +0,0 @@ - - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/bryant_flipped/bryant_flipped_flipped.inc b/plugins/layouts/bryant_flipped/bryant_flipped_flipped.inc index fb9875b30aa216fada2e9404a1ceeab147fd422b..08d06b91ebc86450c3afd6e7c2472cc9e12c141c 100644 --- a/plugins/layouts/bryant_flipped/bryant_flipped_flipped.inc +++ b/plugins/layouts/bryant_flipped/bryant_flipped_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Bryant Flipped'), - 'icon' => 'bryant-flipped.png', + 'icon' => 'radix-bryant-flipped.png', + 'file' => 'radix_bryant_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_bryant_flipped', 'category' => t('Panopoly'), - 'theme' => 'bryant_flipped', - 'css' => 'bryant-flipped.css', + 'theme' => 'radix_bryant_flipped', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentmain' => t('Content'), diff --git a/plugins/layouts/burr/burr.css b/plugins/layouts/burr/burr.css deleted file mode 100644 index 7546015c10330588f0b5102c065aa8f41c9870e0..0000000000000000000000000000000000000000 --- a/plugins/layouts/burr/burr.css +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @file - * Burr panel layout -**/ - -.burr-container { - margin-bottom: 1em; -} - -.burr-sidebar { - min-height: 1px; - width: 34.043%; - float: left; -} - - .burr-sidebar-inner { - margin-right: 20px; - } - -.burr-content { - float: left; - width: 65.957%; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .burr-content, - .burr-sidebar { - width: 100%; - float: none; - } - - .burr-sidebar-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/burr/burr.inc b/plugins/layouts/burr/burr.inc index d1c66eb802c75079cf7df4bac96ab7f582c0c0e1..a8f1d6652801ae4314e2c386627d77648c21b6b9 100644 --- a/plugins/layouts/burr/burr.inc +++ b/plugins/layouts/burr/burr.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Burr'), - 'icon' => 'burr.png', + 'icon' => 'radix-burr.png', + 'file' => 'radix_burr.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_burr', 'category' => t('Panopoly'), - 'theme' => 'burr', - 'css' => 'burr.css', + 'theme' => 'radix_burr', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentmain' => t('Content'), diff --git a/plugins/layouts/burr/burr.png b/plugins/layouts/burr/burr.png deleted file mode 100644 index 308649d62ee925c9017ad2fa4256609818d9cd4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3648 zcmV-G4!`kKLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z00093P)t-sXJ=ec zARr(iAt53nA|oRsBqSsyB_$>%CMPE+C@3f?DJd!{Dl021EG#T7EiEoCE-x=HFfcGN zF)=bSGBYzXG&D3dH8nOiHa9mnI5;>tIXOByIy*Z%JUl!-Jv}}?K0iM{KtMo2K|w-7 zLPJACL_|bIMMXwNMn^|SNJvOYNl8jdN=r*iOiWBoO-)WtPESuyP*6}&QBhJ-Qd3h? zR8&+|RaI72R##V7SXfwDSy@_IT3cINTwGjTU0q&YUSD5dU|?WjVPRroVq;@tWMpJz zWo2e&W@l$-XlQ6@X=!R|YHMq2Y;0_8ZEbFDZf|dIaBy&OadC2Ta&vQYbaZreb#-=j zc6WDoczAeud3kzzdV70&e0+R;eSLm@et&;|fPjF3fq{a8f`fyDgoK2Jg@uNOhKGlT zh=_=ZiHVAeii?YjjEszpjg5|uj*pLzkdTm(k&%*;l9Q8@l$4Z}m6ev3mY0{8n3$NE znVFiJnwy)OoSdAUot>VZo}ZteprD|kp`oIpqNAguq@<*!rKP5(rl+T;sHmu^si~@} zs;jH3tgNi9t*x%EuCK4Ju&}VPv9YqUva_?Zw6wIfwY9dkwzs#pxVX5vxw*Q!y1To( zyu7@dCU$jHda$;ryf%FD~k%*@Qq z&CSlv&d<-!(9qD)(b3Y<($mw^)YR0~)z#M4*4Nk9*x1lt)=I7_<=;-L_>FMg~>g((4?Ck9A?d|UF?(gsK z@bK{Q@$vHV^7Hfa^z`)g_4W4l_V@Sq`1ttw`T6?#`uqF){QUg={r&#_{{R2~ws_$` z0001ANkl`5pkns|S4h Slsp&!0000 - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/burr_flipped/burr-flipped.css b/plugins/layouts/burr_flipped/burr-flipped.css deleted file mode 100644 index 6b33482f52630105b57e2121584eb8eef5989579..0000000000000000000000000000000000000000 --- a/plugins/layouts/burr_flipped/burr-flipped.css +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @file - * Burr panel layout -**/ - -.burr-flipped-container { - margin-bottom: 1em; -} - -.burr-flipped-sidebar { - min-height: 1px; - width: 31.915%; - float: left; -} - -.burr-flipped-content { - float: left; - width: 68.085%; -} - - .burr-flipped-content-inner { - margin-right: 20px; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .burr-flipped-content, - .burr-flipped-sidebar { - width: 100%; - float: none; - } - - .burr-flipped-content-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/burr_flipped/burr-flipped.png b/plugins/layouts/burr_flipped/burr-flipped.png deleted file mode 100644 index dd0c282716dee3c1cbcf0978e566368082a39c6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1176 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3HEFuBucsFfhH#baoE#baqwWn zs9x2|z&ue*RuivR{ zUE1;F(M7F$u5TBz|8J11`jDdU)f(lhac{Lo(n4|Fk7x6Iwk>^i;9TA3d*<(J^ULlt z@D^P%`P#tpg!g#RBEig@8mFv39SnVoI2}z?LvO$FQ(<##F8*2l{6-ajV|3Wz>fhy? z%Gb`iv~3o9%U_2F?z3)cZFnzU$Q3EX)M0afq2}=tj{A>qe0tMw=~r2Ca4WyI?U6{O z8V6I|bM?MEg3qd6c4+pnnDVtS$ZpQ{?kU%0*)#Lfj-3$L>px-H?lbRJCoP=g_lHKq*8L6pm<3$K4v9v1kpvR^p;-j%!W zU2ie1H{g@yk>Z)f>k%N}%91!^Lx4k@jg+CurXqXg)ojv}tBp!kvUZmwxomW-HoIfH zJ#fign|~Tgg;Sija!mT;_)ly7N&lynKTpSOxDob!%G%kpc71waee~(fol>F1z^-9^~aQA6zDy#O)dLw23CVaZ#vnJF2BgGqjf7FeidS<$2kI2!-p`TxQx0FU1 zn%|$FQ*UkiNbkJf)@#LUJG;%pW=~K5o8|HQ-Kss4pN0PPkNf)ZPx{#-$&WM*)yle_ zD|Svls`qiy4e!<5j}mf^bIhIErgknzAn9SYDm;bB(_VGXBPri3OpRd8BpY!0v%w4&`h3^FxrY_AZUdJT9|6=WjZF$*? z>n#4TMA)nrTN`9LUttfUOj&!C+zZVam#0lTYZ=t8Gk@}~m#30~&IH_c4hp)idOg)! zZ1c>}q?ctkW?q)flUZo#^!>yD=G z)c*d^MO~|Imdyvp%f2fd%RjP-a?FYdIBA*Oyzce8)W{ywTidoKO6XX5x9`pTy5GFFY|cM>X1pzTv(D*xOTSmfUVnWlQReu) z2g~bunhq?|*!1Btf7d*JaYxUMMMj5|dcU3E@amd6Sx_u%cx5+JKWev?RKevb_7v&@= zH?sA3;f7uRmLC7RwqV}!qouL4e>We - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/burr_flipped/burr_flipped.inc b/plugins/layouts/burr_flipped/burr_flipped.inc index 8b40e2ff4b8a243b0b7b592d94afc932acf7834f..4d97f39c4d004b7641bc49258be083a8a2330b97 100644 --- a/plugins/layouts/burr_flipped/burr_flipped.inc +++ b/plugins/layouts/burr_flipped/burr_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Burr Flipped'), - 'icon' => 'burr-flipped.png', + 'icon' => 'radix-burr-flipped.png', + 'file' => 'radix_burr_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_burr_flipped', 'category' => t('Panopoly'), - 'theme' => 'burr_flipped', - 'css' => 'burr-flipped.css', + 'theme' => 'radix_burr_flipped', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentmain' => t('Content'), diff --git a/plugins/layouts/geary/geary.css b/plugins/layouts/geary/geary.css deleted file mode 100644 index 89696765f9b4c437b803931234adef9bed189cff..0000000000000000000000000000000000000000 --- a/plugins/layouts/geary/geary.css +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @file - * Geary panel layout -**/ - -.geary-container { - margin-bottom: 1em; -} - -.geary-column-content-region { - min-height: 1px; - width: 34.043%; - float: left; -} - -.geary-column-content-region-inner { - margin-right: 20px; -} - - .geary-column3 { - width: 31.915%; - } - - .geary-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .geary-column-content-region, - .geary-column3 { - width: 100%; - float: none; - } - - .geary-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/geary/geary.inc b/plugins/layouts/geary/geary.inc index f58aeae4afd538fe6d7e334a6c97a93ef05afe87..6496a855a63ac0ac1c9825329ba23f12d34583dd 100644 --- a/plugins/layouts/geary/geary.inc +++ b/plugins/layouts/geary/geary.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Geary'), - 'icon' => 'geary.png', + 'icon' => 'radix-geary.png', + 'file' => 'radix_geary.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_geary', 'category' => t('Panopoly'), - 'theme' => 'geary', - 'css' => 'geary.css', + 'theme' => 'radix_geary', 'regions' => array( 'header' => t('Header'), 'column1' => t('First Column'), diff --git a/plugins/layouts/geary/geary.png b/plugins/layouts/geary/geary.png deleted file mode 100644 index 60a17324f1a80dea0b9abd1826578ea5fb8f0812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 429 zcmV;e0aE^nP)qd3kwEOiXlibR;AsUS3{1J3DZ2 zaA9F#f`Wn_9UUAT9CLGXk&%&4PfuN4T}@3*mX?+$Cnq2vAc28_dU|?ta&mETaaUJY zj*gCfeSM{+rA|&xA0HoYZ*O&Vb*-(fmzS48K|v@eDF6TeGcz-Nvbm4|005y$L_t(| z+U(J{4#H3jg<(?z1kx)dfzUhT!u!7(c)=H>4Bk-We?0Ox8NwE`5TXXN2+Ak3Qb>J> z-DGA%49sG9u=`(hN}F&5FtW@2oWMg$PclGRB%O-7qlo7$tuu}EJ#es+ap=eX*u~w?w)p(yaX5k X-4Y^c!r(l+00000NkvXXu0mjf6{(?O diff --git a/plugins/layouts/geary/geary.tpl.php b/plugins/layouts/geary/geary.tpl.php deleted file mode 100644 index 0efe02bea5755baa738b389bfe274feec3f58b0b..0000000000000000000000000000000000000000 --- a/plugins/layouts/geary/geary.tpl.php +++ /dev/null @@ -1,39 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/harris/harris.css b/plugins/layouts/harris/harris.css deleted file mode 100644 index a16ecb30d1f74834485c1e904545719c6b5115b2..0000000000000000000000000000000000000000 --- a/plugins/layouts/harris/harris.css +++ /dev/null @@ -1,44 +0,0 @@ -/** - * @file - * Harris panel layout -**/ - -.harris-container { - margin-bottom: 1em; -} - -.harris-column-content-region { - min-height: 1px; - width: 25.532%; - float: left; -} - - .harris-column-content-region-inner { - margin-right: 20px; - } - - .harris-column2 { - width: 23.404%; - } - - .harris-column2-inner { - margin-right: 0; - } - - .harris-content { - width: 51.064%; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .harris-column-content-region, - .harris-column2, - .harris-content { - width: 100%; - float: none; - } - - .harris-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/harris/harris.inc b/plugins/layouts/harris/harris.inc index 1ed93014a87ca183bf3fdf3279ed7576f5a27f4b..49e4033ae851ccc7ed42ec6737338dd55431ad6a 100644 --- a/plugins/layouts/harris/harris.inc +++ b/plugins/layouts/harris/harris.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Harris'), - 'icon' => 'harris.png', + 'icon' => 'radix-harris.png', + 'file' => 'radix_harris.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_harris', 'category' => t('Panopoly'), - 'theme' => 'harris', - 'css' => 'harris.css', + 'theme' => 'radix_harris', 'regions' => array( 'header' => t('Header'), 'column1' => t('First Column'), diff --git a/plugins/layouts/harris/harris.png b/plugins/layouts/harris/harris.png deleted file mode 100644 index ebf84c10e0efc4e052fa15d6da98dba15086b64c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 447 zcmV;w0YLtVP)SOG`^(VPQNxJm=@`9 z-`_YmIJ&yJFfcH#uC9Q9fIvV%{{H?-N=i33H(+33=H}*WYim6{Jy=*+{r&wqIyz5J zPl<_%dU|>u9v(2hK6~0dB4BE zwzjs+%*?a1vqnZns;a6!K0e;w-W(hp>gwt!C@3*8F+o8=|Ns9pGc%r;4tf9p0I*3! zK~#9!?9s;#!Y~YgVMEz1-HTcFo=M94KN@bT3JC?ITsR>AH`n=^Lm;$kTG=5OTr&g2 zLo-3-e@G0P#o)Vjty~{+?S4-BdGzU2gv%F6P1$^UN3nrY8c(O*C#@R2oWMgh!9bcpd#1r#H&aEiLi=h pr{b2~!cycMi(BlA97OUIU;yf8F%xrz^%wvE002ovPDHLkV1oT1zyAOL diff --git a/plugins/layouts/harris/harris.tpl.php b/plugins/layouts/harris/harris.tpl.php deleted file mode 100644 index a10fbba306e554881ca1d7eb290ebabca4d4a422..0000000000000000000000000000000000000000 --- a/plugins/layouts/harris/harris.tpl.php +++ /dev/null @@ -1,39 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/hewston/hewston.css b/plugins/layouts/hewston/hewston.css deleted file mode 100644 index 9a5286d09d11e26b5cdd317d1fa95f23d60e0369..0000000000000000000000000000000000000000 --- a/plugins/layouts/hewston/hewston.css +++ /dev/null @@ -1,58 +0,0 @@ -/** - * @file - * Hewston panel layout -**/ - -.hewston-container { - margin-bottom: 1em; -} - -.hewston-slider { - min-height: 1px; - float: left; - width: 68.085%; -} - - .hewston-slider-inner { - margin-right: 20px; - } - -.hewston-slider-gutter { - min-height: 1px; - float: left; - width: 31.915%; -} - -.hewston-middle-region { - min-height: 1px; - width: 34.043%; - float: left; -} - - .hewston-middle-region-inner { - margin-right: 20px; - } - - .hewston-column3 { - width: 31.915%; - } - - .hewston-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .hewston-slider, - .hewston-slider-gutter, - .hewston-middle-region, - .hewston-column3 { - width: 100%; - float: none; - } - - .hewston-slider-inner, - .hewston-middle-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/hewston/hewston.inc b/plugins/layouts/hewston/hewston.inc index adaada9739d936c3865a6a28352ac264d64304b7..0a1a367fcceb138a4fcd77a32324ea5a294394b1 100644 --- a/plugins/layouts/hewston/hewston.inc +++ b/plugins/layouts/hewston/hewston.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Hewston'), - 'icon' => 'hewston.png', + 'icon' => 'radix-hewston.png', + 'file' => 'radix_hewston.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_hewston', 'category' => t('Panopoly'), - 'theme' => 'hewston', - 'css' => 'hewston.css', + 'theme' => 'radix_hewston', 'regions' => array( 'slider' => t('Slider'), 'slidergutter' => t('Slider Gutter'), diff --git a/plugins/layouts/hewston/hewston.png b/plugins/layouts/hewston/hewston.png deleted file mode 100644 index 8a04c5c2de59253e4345ea6d548b0ef721a33a49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 484 zcmV>GQYa`W{r&xZ zets-0EM8t-SXfw5QBfx+Cyb1YYinyxPEJfrOgcI`R#sMac6Nt{hlq%XNJvOKJ3Ew= zlp!G@N=iykPfz~-{v;$MhK7cLfq`;za<;a%A0Hn#H#a{&Kar7<92^{JX=!(NcN-fU zT3T8rCMGsEHl?Mdu&}T_Jw1($jf;zmEiEl>Zf=Q*iJhIDTwGkBpr9ioBVS)%I5;?D zWMm#59#>aaK|w(^l;QxOLt3gAvGcEzW^6s8apcF)_j-z;vOGQ(`3q+F?B<&fMtq%TEv@neXQdEKr zliwjmDB5|7WLKdg=`d16d$f=YOe#kUqQv`mQeKzdYj)yNKkcbF3;eXSsca4~FVZGf z{GQdiRPH7cbx5V*ejJP>Bgy9y+!zxkOqeiX!sLs{Dk;&R=F@sMlAA}xP?5-2D*ek# afB^tqsh)=Mgjpc~0000 - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/hewston_flipped/hewston-flipped.css b/plugins/layouts/hewston_flipped/hewston-flipped.css deleted file mode 100644 index a01153008766cd3eae5697cfcd36a8b033288c12..0000000000000000000000000000000000000000 --- a/plugins/layouts/hewston_flipped/hewston-flipped.css +++ /dev/null @@ -1,58 +0,0 @@ -/** - * @file - * Hewston Flipped panel layout -**/ - -.hewston-flipped-container { - margin-bottom: 1em; -} - -.hewston-flipped-slider { - min-height: 1px; - float: left; - width: 65.957%; -} - -.hewston-flipped-slider-gutter { - min-height: 1px; - float: left; - width: 34.043%; -} - - .hewston-flipped-slider-gutter-inner { - margin-right: 20px - } - -.hewston-flipped-middle-region { - min-height: 1px; - width: 34.043%; - float: left; -} - - .hewston-flipped-middle-region-inner { - margin-right: 20px; - } - - .hewston-flipped-column3 { - width: 31.915%; - } - - .hewston-flipped-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .hewston-flipped-slider, - .hewston-flipped-slider-gutter, - .hewston-flipped-middle-region, - .hewston-flipped-column3 { - width: 100%; - float: none; - } - - .hewston-flipped-slider-gutter-inner, - .hewston-flipped-middle-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/hewston_flipped/hewston-flipped.png b/plugins/layouts/hewston_flipped/hewston-flipped.png deleted file mode 100644 index ea6c34476475444a28e1c095a1fd5c504c191bab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 512 zcmV+b0{{JqP)Ffc1CD~ybcK|w($CnsE7Ts=KKI5;>!KtOwY zdy9*UCMG6WSXhRJhIx5;Mn*=DkB>`BOa1-*gM)*nrlxIeZI+gnYinyFA|g3CIcH~Q zBqStKQc_@GV6U&Qhlhu6Z*QNUpPQSTJ3BjUY-}7H95**NAt51OUtb>|A4*C}8X6id zE-r|Oh)GFFNJvN?9v)g+T2D_;iHV6qLPBV0XmfLOM@L7vxVZoS|1&c))m-c60002H zNklIl(&Ej$3}8 z5VeHIHp#MvNP1dQln&v*i{ - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/hewston_flipped/hewston_flipped.inc b/plugins/layouts/hewston_flipped/hewston_flipped.inc index 50e4a01f83723634c6af2c6d41b5e7bf0a1d5702..6f4e9f62b2123cc1cd790fcdcddb7309f1cdfd52 100644 --- a/plugins/layouts/hewston_flipped/hewston_flipped.inc +++ b/plugins/layouts/hewston_flipped/hewston_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Hewston Flipped'), - 'icon' => 'hewston-flipped.png', + 'icon' => 'radix-hewston-flipped.png', + 'file' => 'radix_hewston_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_hewston_flipped', 'category' => t('Panopoly'), - 'theme' => 'hewston_flipped', - 'css' => 'hewston-flipped.css', + 'theme' => 'radix_hewston_flipped', 'regions' => array( 'slider' => t('Slider'), 'slidergutter' => t('Slider Gutter'), diff --git a/plugins/layouts/mccoppin/mccoppin.css b/plugins/layouts/mccoppin/mccoppin.css deleted file mode 100644 index 82f5bf17cd1f68dce146446a28c0baba4e7cb166..0000000000000000000000000000000000000000 --- a/plugins/layouts/mccoppin/mccoppin.css +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @file - * McCoppin panel layout -**/ - -.mccoppin-container { - margin-bottom: 1em; -} - -.mccoppin-column-content-region { - min-height: 1px; - width: 34.043%; - float: left; -} - - .mccoppin-column-content-region-inner { - margin-right: 20px; - } - - .mccoppin-column3 { - width: 31.915%; - } - - .mccoppin-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .mccoppin-column-content-region, - .mccoppin-column3 { - width: 100%; - float: none; - } - - .mccoppin-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/mccoppin/mccoppin.inc b/plugins/layouts/mccoppin/mccoppin.inc index cbdeddd9ae1aa4c12773b378a83e3f1124b221d5..b8e7fdd38e5fab7b4561bc682dae087796c4e9d4 100644 --- a/plugins/layouts/mccoppin/mccoppin.inc +++ b/plugins/layouts/mccoppin/mccoppin.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('McCoppin'), - 'icon' => 'mccoppin.png', + 'icon' => 'radix-mccoppin.png', + 'file' => 'radix_mccoppin.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_mccoppin', 'category' => t('Panopoly'), - 'theme' => 'mccoppin', - 'css' => 'mccoppin.css', + 'theme' => 'radix_mccoppin', 'regions' => array( 'column1' => t('First Column'), 'column2' => t('Second Column'), diff --git a/plugins/layouts/mccoppin/mccoppin.png b/plugins/layouts/mccoppin/mccoppin.png deleted file mode 100644 index 92ef2ec018764362572ff8a78f80f31c210f34f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MHK-)A+BG)e)aV9R8v#a)YL2~Dbdr@OHWUqJ$ts6mR3MO zfPsO5gM)*ut!-^>ZBbE?zrVk=wRLiGa%yU-udnZ{S+hJmJS;6O-Q3)?wY3*5TC{TI zN>fu)b#--DSJ$|>xQ>pFu&}V$*jQy{Wpi`$Z{NN-Iy(OU|KHfyctyAWL!cWfJzX3_ zDsH_w?Jm@8AmDOQ@YoCm#iD`(oHxJkUuY`r7Cmj>1e@rt$YAw{G0i26P02r>mdKI;Vst0IDU18~^|S diff --git a/plugins/layouts/mccoppin/mccoppin.tpl.php b/plugins/layouts/mccoppin/mccoppin.tpl.php deleted file mode 100644 index 51c4e88e3ad4da8c7804f846bce2bf830715de85..0000000000000000000000000000000000000000 --- a/plugins/layouts/mccoppin/mccoppin.tpl.php +++ /dev/null @@ -1,33 +0,0 @@ - - -
> - -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/moscone/moscone.css b/plugins/layouts/moscone/moscone.css deleted file mode 100644 index 365e4c586c83f41a318f6a8f9c341fb9ca8f1dc2..0000000000000000000000000000000000000000 --- a/plugins/layouts/moscone/moscone.css +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @file - * Moscone panel layout -**/ - -.moscone-container { - margin-bottom: 1em; -} - -.moscone-sidebar { - min-height: 1px; - width: 34.043%; - float: left; -} - - .moscone-sidebar-inner { - margin-right: 20px; - } - -.moscone-content { - min-height: 1px; - width: 65.957%; - float: left; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .moscone-content, - .moscone-sidebar { - width: 100%; - float: none; - } - - .moscone-sidebar-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/moscone/moscone.inc b/plugins/layouts/moscone/moscone.inc index a98715b082005883b77cc51ac68b769cf9ff3721..2c48d683f56bd20eebea4ce40f0c62e952bb44ca 100644 --- a/plugins/layouts/moscone/moscone.inc +++ b/plugins/layouts/moscone/moscone.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Moscone'), - 'icon' => 'moscone.png', + 'icon' => 'radix-moscone.png', + 'file' => 'radix_moscone.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_moscone', 'category' => t('Panopoly'), - 'theme' => 'moscone', - 'css' => 'moscone.css', + 'theme' => 'radix_moscone', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Content Sidebar'), diff --git a/plugins/layouts/moscone/moscone.png b/plugins/layouts/moscone/moscone.png deleted file mode 100644 index ab22c6ecaef3d83b90d9d159ea9d4f6786d5f4c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 478 zcmV<40U`d0P)FMcqc6KNzC@?TE`uh4(Qc^7~Ehi@@g@uJrPfsKyB<$?$KtMo#ettPQ zIq2x5>gp~oE=x;G@$vCvV`DftIDmkF`}_NDZf-n0JU>4_kB^TW z92|mzf{cueK|w+P|Nk>HGkJJp&Hw-av`IukRCwC#*0&DAKn#Fkhk7XlNUwz6dvAgF ze=Bm+35Js_F`#hYXz8Ck*q|42Y#&Y%&MJcRiBqYHBtMA@I12+pzl74A!2|7glfA+m zC)wl>^c0Td0#d`kb85Nr~GVW%ja?Mr|G09JK% UzoYiu-2eap07*qoM6N<$f+ - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/moscone_flipped/moscone-flipped.css b/plugins/layouts/moscone_flipped/moscone-flipped.css deleted file mode 100644 index 8af840985e80ffd6882fe39df0e201034c2a710d..0000000000000000000000000000000000000000 --- a/plugins/layouts/moscone_flipped/moscone-flipped.css +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @file - * Moscone Flipped panel layout -**/ - -.moscone-flipped-container { - margin-bottom: 1em; -} - -.moscone-flipped-content { - min-height: 1px; - width: 68.085%; - float: left; -} - - .moscone-flipped-content-inner { - margin-right: 20px; - } - -.moscone-flipped-sidebar { - min-height: 1px; - width: 31.915%; - float: left; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .moscone-flipped-sidebar, - .moscone-flipped-content { - width: 100%; - float: none; - } - - .moscone-flipped-content-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/moscone_flipped/moscone-flipped.png b/plugins/layouts/moscone_flipped/moscone-flipped.png deleted file mode 100644 index 1e133090f6f0634cf80eaf6e733c009fe4b8eaa3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmVyFfh5fxl&S6prD{FEiFDiK6-k3KR-WjZ*L+ZBCM>eTwGj2LPA?xTb7oVx3{-Y zP*6EJIVUG4GBPqmL`47p|1&c)4bHX60002JNklBsO?Cil9imzuA-v(5C=q#}N)!1ba&-e#WgSi|g^G>f zj_yk&Bh9nYy+3l3a_E>Q+pe=9{b33jD*0D&qEu5FtWD z5b0{r#{5xQ#YsoH8d?`l27YW=>~gaDJx*$KF{v28yDUB+XCsNqm_l0xRKbCMdx+r3 g%t@efx=#TH0Dh;Bgz*$$Y5)KL07*qoM6N<$f{QE1{r~^~ diff --git a/plugins/layouts/moscone_flipped/moscone-flipped.tpl.php b/plugins/layouts/moscone_flipped/moscone-flipped.tpl.php deleted file mode 100644 index 9051c12f059834341d4b8dc21a2cd9a840d574f5..0000000000000000000000000000000000000000 --- a/plugins/layouts/moscone_flipped/moscone-flipped.tpl.php +++ /dev/null @@ -1,40 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/moscone_flipped/moscone_flipped.inc b/plugins/layouts/moscone_flipped/moscone_flipped.inc index 019fdbf1e129d65ed1454db3dfbdaf4259a4616c..c10d5a0a111b44a6103a0a51e02e0a995ecbd681 100644 --- a/plugins/layouts/moscone_flipped/moscone_flipped.inc +++ b/plugins/layouts/moscone_flipped/moscone_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Moscone Flipped'), - 'icon' => 'moscone-flipped.png', + 'icon' => 'radix-moscone-flipped.png', + 'file' => 'radix_moscone_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_moscone_flipped', 'category' => t('Panopoly'), - 'theme' => 'moscone_flipped', - 'css' => 'moscone-flipped.css', + 'theme' => 'radix_moscone_flipped', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Content Sidebar'), diff --git a/plugins/layouts/phelan/phelan.css b/plugins/layouts/phelan/phelan.css deleted file mode 100644 index 2d4c3f61f1c870e9ce1f345a863e36145db1e1f0..0000000000000000000000000000000000000000 --- a/plugins/layouts/phelan/phelan.css +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @file - * Phelan panel layout -**/ - -.phelan-container { - margin-bottom: 1em; -} - -.phelan-column { - min-height: 1px; - width: 51.064%; - float: left; -} - -.phelan-column1-inner { - margin-right: 20px; -} - -.phelan-column2 { - width: 48.936%; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .phelan-column, - .phelan-column2 { - width: 100%; - float: none; - } - - .phelan-column1-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/phelan/phelan.inc b/plugins/layouts/phelan/phelan.inc index 386be744f38d4b6e8794c0adababb656d44206b7..3f878da617237c7f8feb1ca74c562049bb505819 100644 --- a/plugins/layouts/phelan/phelan.inc +++ b/plugins/layouts/phelan/phelan.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Phelan'), - 'icon' => 'phelan.png', + 'icon' => 'radix-phelan.png', + 'file' => 'radix_phelan.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_phelan', 'category' => t('Panopoly'), - 'theme' => 'phelan', - 'css' => 'phelan.css', + 'theme' => 'radix_phelan', 'regions' => array( 'column1' => t('First Column'), 'column2' => t('Second Column'), diff --git a/plugins/layouts/phelan/phelan.png b/plugins/layouts/phelan/phelan.png deleted file mode 100644 index 367d8f5d496571c8000e01696038c8ffdf8ab0f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1093 zcmaJ=-Afcv6d&vZ(|n6)>t&ji$l9H+-F4exS6g>nU28x@!-u19$GZhx7ZLbME=wD@~1c zWhMJdFbpe8)bmNSvuGVJE<*oLlM^1axnOM?HtX#$E1Cd{%6c2X6ROw&l0cMu&c6m> z4BJ+&q|z`goa7{3B}FHOv{eJ4F)Und8=}++Al?Q#6fHumOidHGB1ec*0f82b7|1B~ zy(VbxZA?kMol;09s;ls@%^?C6KoPgqF3sZX2(iY?A=`0N1ilsmJ0rw;QE8zGkLf1B z10?O0=t>5!^plLA4*5eKoTV9>Vpxg}dKsDv1UZ_)H$DPoGv#(J$;UTxp;Ls&Kxl9j zmCa_!tdG>q4vGndLKMwXEbB!PUaLogqV3fzcaDJvmSidhRCEn@7{xZd8%79J>3R#Q zk*C$HjcY;|M%ki4F(mD@lnWGutwU8cA8o-T*sS-z#8#@u08|oKdbcT|!L_@cR0bC_ zfe3XorR!a}TWrecP`5I=fybHyB!dg0q-c(34Iv0zLbIT#Ng%;T2*g1uip&Lhf3UJ9 z?h7!nAj8x$(J0Rz3;NhVu+m5S;!F<9>r%H0G?>H6n^=EAtRn{1K$&@9Di?qpH+2V=UhlXj+qxOI^?AfG^BSE3H$r~!&T@}OeXkf z%3l1r$dnAxdxk{!vxZsM{Mo*peWTYGmwJmzuU?7{Un`r!KfZ`B3_MQw`o~A_Jgk^m zC}u~N!gJFt4Z99{-ViSMcDegpbHj~W7r%~=-F#f9eLmz0kKFt9e5~j6kw - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/pond/pond.css b/plugins/layouts/pond/pond.css deleted file mode 100644 index 001518c6158c96542b444204312d37409008982b..0000000000000000000000000000000000000000 --- a/plugins/layouts/pond/pond.css +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @file - * Pond panel layout -**/ - -.pond-container { - margin-bottom: 1em; -} - -.pond-column { - min-height: 1px; - width: 34.043%; - float: left; -} - - .pond-column-inner { - margin-right: 20px; - } - - .pond-column3, - .pond-secondary-column3 { - min-height: 1px; - width: 31.915%; - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .pond-column, - .pond-column3, - .pond-secondary-column3 { - width: 100%; - float: none; - } - - .pond-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/pond/pond.inc b/plugins/layouts/pond/pond.inc index 6c0242e8a5f4162ce7948cb05c12c95079d391f8..3ced0c0e9689c527d3513e5b052dd44e351bf5a3 100644 --- a/plugins/layouts/pond/pond.inc +++ b/plugins/layouts/pond/pond.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Pond'), - 'icon' => 'pond.png', + 'icon' => 'radix-pond.png', + 'file' => 'radix_pond.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_pond', 'category' => t('Panopoly'), - 'theme' => 'pond', - 'css' => 'pond.css', + 'theme' => 'radix_pond', 'regions' => array( 'header' => t('Header'), 'column1' => t('Row 1: First Column'), diff --git a/plugins/layouts/pond/pond.png b/plugins/layouts/pond/pond.png deleted file mode 100644 index 91a3bcc763c0da38719f7120c7d2844ac62dc2aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 740 zcmV^oUS2CJD=;uHfPjEe zQBg!hM9lzMh_*{r&wcEG&hEg?V{-S65eMWo7*Q{5?HAKtMpu%*-Dj zA0{Ryot>RIIXT0_!_Cdjy}i9dLqn{rth&0on3$M)Rxd9v zU0q%N{{Bx-PdYj}goK109UW3qQX?ZHczAeZWMp4oUryetv!;A|lh%({*)qnVFezaBy*Paa&tknwpw&a&l>D zY1h}+*4Ea%yu8uT(Yw35H8nNJ$jG#`w9?Yjt*x!KwYB2n;w2>|8X6iN9v(3m;(vEk=((%)kd4|8(10kd<#R|&>p{Lf9=V!^Q2BDTg#jlmqB@{JwL z!g!y|69#CzoJbj%YJnd=acdhCpor*8cD7inCf^6FJ;`!XYD|&_C~t9+*I+VlyvA1U zVNz+D>H>4ioXkgIqKEvk@VwgwT{dZpy(Zels8Nv&G1AVT(!Wj=(L|<-QWvA}CBOiQ WVF6?tZ@5_i0000 - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/rolph/rolph.css b/plugins/layouts/rolph/rolph.css deleted file mode 100644 index 93c89e847cbd50904aa3af451284809d88f4a0fa..0000000000000000000000000000000000000000 --- a/plugins/layouts/rolph/rolph.css +++ /dev/null @@ -1,38 +0,0 @@ -/** - * @file - * Rolph panel layout -**/ - -.rolph-container { - margin-bottom: 1em; -} - -.rolph-quarter { - min-height: 1px; - width: 25.532%; /* 240 / 940 = 25.532% */ - float: left; -} - - .rolph-quarter-inner { - margin-right: 20px; - } - -.rolph-quarter4 { - width: 23.404%; /* 220 / 940 = 23.404% */ -} - - .rolph-quarter4-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .rolph-quarter { - width: 100%; - float: none; - } - - .rolph-quarter-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/rolph/rolph.inc b/plugins/layouts/rolph/rolph.inc index 8d3cce7c1be871ef93819679b250722018b8a55d..314a6fcfa068f2b3a572d929edcc0f90a7142717 100644 --- a/plugins/layouts/rolph/rolph.inc +++ b/plugins/layouts/rolph/rolph.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Rolph'), - 'icon' => 'rolph.png', + 'icon' => 'radix-rolph.png', + 'file' => 'radix_rolph.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_rolph', 'category' => t('Panopoly'), - 'theme' => 'rolph', - 'css' => 'rolph.css', + 'theme' => 'radix_rolph', 'regions' => array( 'header' => t('Header'), 'quarter1' => t('Quarter 1 Column'), diff --git a/plugins/layouts/rolph/rolph.png b/plugins/layouts/rolph/rolph.png deleted file mode 100755 index 6a8f78efd76408cc9c7cb23753d5a6b750d54fb5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 474 zcmV<00VV#4P)RCwC#nZb^NFc5~fP^c{!0uR95 zGmnAq<7;?@r{K(McrzSKj2z&?frBxiJI16TmNk;F*{+#6k@9EwXz9#!Ae+tRcsv@0 z@uiI|mrJ_a?GA?nrBoj*Ap~747Pf7hrl}7W=Uk(;8yaFE7GfdRf5W1e%jJANYZc`g zV|2AzL2A@3Rg>H8rr{zY)+b;kNmAFf`pLr%jiPA1Udxd*O;zPX7RNCmj1X^(Mr - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/sanderson/sanderson.css b/plugins/layouts/sanderson/sanderson.css deleted file mode 100644 index 20139f85a9c656a8048ec109002f0268ba7ac00e..0000000000000000000000000000000000000000 --- a/plugins/layouts/sanderson/sanderson.css +++ /dev/null @@ -1,57 +0,0 @@ -/** - * @file - * Sanderson panel layout -**/ - -.sanderson-container { - margin-bottom: 1em; -} - -.sanderson-column-content-region { - min-height: 1px; - width: 51.064%; - float: left; -} - - .sanderson-column2 { - width: 48.936%; - } - - .sanderson-column-content-region-inner { - margin-right: 20px; - } - -.sanderson-secondary-column-content-region { - min-height: 1px; - width: 34.043%; - float: left; -} - - .sanderson-secondary-column-content-region-inner { - margin-right: 20px; - } - - .sanderson-secondary-column3 { - width: 31.915%; - } - - .sanderson-column2-inner, - .sanderson-secondary-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .sanderson-column-content-region, - .sanderson-secondary-column-content-region, - .sanderson-column2, - .sanderson-secondary-column3 { - width: 100%; - float: none; - } - - .sanderson-column-content-region-inner, - .sanderson-secondary-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/sanderson/sanderson.inc b/plugins/layouts/sanderson/sanderson.inc index b209adb0b19a8ca5054aade469b4e3cadd63856e..b9dec93f778623814f3eecb5b38562e7a70b4c92 100644 --- a/plugins/layouts/sanderson/sanderson.inc +++ b/plugins/layouts/sanderson/sanderson.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Sanderson'), - 'icon' => 'sanderson.png', + 'icon' => 'radix-sanderson.png', + 'file' => 'radix_sanderson.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_sanderson', 'category' => t('Panopoly'), - 'theme' => 'sanderson', - 'css' => 'sanderson.css', + 'theme' => 'radix_sanderson', 'regions' => array( 'column1' => t('Row 1: First Column'), 'column2' => t('Row 1: Second Column'), diff --git a/plugins/layouts/sanderson/sanderson.png b/plugins/layouts/sanderson/sanderson.png deleted file mode 100644 index 4f6b7c0e5f1913d02094a6b42c65b60ea2721447..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP) z|Bi(n1jZIvV1We|_VVAoJn8#>S(d{qBW?TneD)D~xO~fDR@ZgJ_x-kQ1>sT3E+upP2*~_w26ot`hnkLJ#_N=O^vMi%l zWzR%_u#jSK_+0=NSYUw#7FbBguGNV@0t^5T!hes` S+T;ZQ0000 - -
> - -
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/sanderson_flipped/sanderson-flipped.css b/plugins/layouts/sanderson_flipped/sanderson-flipped.css deleted file mode 100644 index bf3a31143362cc5501c6d43cab9ea84d431c3c23..0000000000000000000000000000000000000000 --- a/plugins/layouts/sanderson_flipped/sanderson-flipped.css +++ /dev/null @@ -1,57 +0,0 @@ -/** - * @file - * Sanderson Flipped panel layout - **/ - -.sanderson-flipped-container { - margin-bottom: 1em; -} - -.sanderson-flipped-secondary-column-content-region { - min-height: 1px; - width: 51.064%; - float: left; -} - - .sanderson-flipped-secondary-column2 { - width: 48.936%; - } - - .sanderson-flipped-secondary-column-content-region-inner { - margin-right: 20px; - } - -.sanderson-flipped-column-content-region { - min-height: 1px; - width: 34.043%; - float: left; -} - - .sanderson-flipped-column-content-region-inner { - margin-right: 20px; - } - - .sanderson-flipped-column3 { - width: 31.915%; - } - - .sanderson-flipped-secondary-column2-inner, - .sanderson-flipped-column3-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .sanderson-flipped-secondary-column-content-region, - .sanderson-flipped-secondary-column2, - .sanderson-flipped-column-content-region, - .sanderson-flipped-column3 { - width: 100%; - float: none; - } - - .sanderson-flipped-secondary-column-content-region-inner, - .sanderson-flipped-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/sanderson_flipped/sanderson-flipped.png b/plugins/layouts/sanderson_flipped/sanderson-flipped.png deleted file mode 100644 index f6bfc955e3c32b24c71aa8b5265bcb7a4343b4fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 418 zcmV;T0bTxyP)EyJczQbE=tNrVho`J3^rW}hR zgNPv};NgZkfe}-VOO%11R4sg?T1K=MGSb+nmcglIG$qqMkO2Y=076>=l*8E%a{vGU M07*qoM6N<$f{CG>m;e9( diff --git a/plugins/layouts/sanderson_flipped/sanderson-flipped.tpl.php b/plugins/layouts/sanderson_flipped/sanderson-flipped.tpl.php deleted file mode 100644 index 30ed07fac61925fccbb10b87e9e6f6e740c91f9c..0000000000000000000000000000000000000000 --- a/plugins/layouts/sanderson_flipped/sanderson-flipped.tpl.php +++ /dev/null @@ -1,46 +0,0 @@ - - -
> - -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
- -
diff --git a/plugins/layouts/sanderson_flipped/sanderson_flipped.inc b/plugins/layouts/sanderson_flipped/sanderson_flipped.inc index 7521604674cbbecf747eea1a5330901ab7947075..38770ad141941212650888ecc2188ac4e9389523 100644 --- a/plugins/layouts/sanderson_flipped/sanderson_flipped.inc +++ b/plugins/layouts/sanderson_flipped/sanderson_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Sanderson Flipped'), - 'icon' => 'sanderson-flipped.png', + 'icon' => 'radix-sanderson-flipped.png', + 'file' => 'radix_sanderson_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_sanderson_flipped', 'category' => t('Panopoly'), - 'theme' => 'sanderson_flipped', - 'css' => 'sanderson-flipped.css', + 'theme' => 'radix_sanderson_flipped', 'regions' => array( 'column1' => t('Row 1: First Column'), 'column2' => t('Row 1: Second Column'), diff --git a/plugins/layouts/selby/selby.css b/plugins/layouts/selby/selby.css deleted file mode 100644 index c1a34a5fbdb633faa25a3038529efbef7b5df522..0000000000000000000000000000000000000000 --- a/plugins/layouts/selby/selby.css +++ /dev/null @@ -1,58 +0,0 @@ -/** - * @file - * Selby panel layout -**/ - -.selby-container, -.selby-content-header, -.selby-content-container-column-container { - margin-bottom: 1em; -} - -.selby-column { - min-height: 1px; - width: 34.043%; - float: left; -} - - .selby-column-inner { - margin-right: 20px; - } - - .selby-content-column2-inner { - margin-right: 0; - } - -.selby-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "selby-column" class */ - min-height: 1px; - float: left; - width: 65.957%; -} - - .selby-content-container .selby-column { - width: 51.613%; - } - - .selby-content-container .selby-content-column2 { - width: 48.387%; - } - - .selby-content-column2-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .selby-column, - .selby-content-container, - .selby-content-container .selby-column, - .selby-content-container .selby-content-column2 { - width: 100%; - float: none; - } - - .selby-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/selby/selby.inc b/plugins/layouts/selby/selby.inc index dbb18fa7668d83b8da08093800ff0e885e48d6ea..820803a49c707d078ac0024cc55595c105ad677f 100644 --- a/plugins/layouts/selby/selby.inc +++ b/plugins/layouts/selby/selby.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Selby'), - 'icon' => 'selby.png', + 'icon' => 'radix-selby.png', + 'file' => 'radix_selby.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_selby', 'category' => t('Panopoly'), - 'theme' => 'selby', - 'css' => 'selby.css', + 'theme' => 'radix_selby', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentheader' => t('Content Header'), diff --git a/plugins/layouts/selby/selby.png b/plugins/layouts/selby/selby.png deleted file mode 100644 index 435d6c576498e99a2ec8c9f9e2c23e2f7930859e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 577 zcmV-H0>1r;P)T4a&mGW9v&qnC9kiqMn*7?;CvI+TN=iyQJ3C29Nz2R2XlQ6h zM@O=Noy#Le0-dtv3UBn6n{4bC6tt{Clf#b>1(Fzab#2w;=ST?%A?1Es822De8kL z<&VwWwD{ - -
> -
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- - - -
-
-
-
diff --git a/plugins/layouts/selby_flipped/selby-flipped.css b/plugins/layouts/selby_flipped/selby-flipped.css deleted file mode 100644 index 194310db1febf5448dc4e2aaa99b2e514e281387..0000000000000000000000000000000000000000 --- a/plugins/layouts/selby_flipped/selby-flipped.css +++ /dev/null @@ -1,69 +0,0 @@ -/** - * @file - * Selby Flipped panel layout -**/ - -.selby-flipped-container, -.selby-flipped-content-header, -.selby-flipped-content-container-column-container { - margin-bottom: 1em; -} - -.selby-flipped-column { - min-height: 1px; - width: 34.043%; - float: left; -} - - .selby-flipped-column-inner { - margin-right: 20px; - } - - .selby-flipped-content-column2-inner { - margin-right: 0; - } - -.selby-flipped-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "selby-flipped-column" class */ - min-height: 1px; - float: left; - width: 68.085%; -} - - .selby-flipped-content-container-inner { - margin-right: 20px; - } - - .selby-flipped-content-container .selby-flipped-column { - width: 51.613%; - } - - .selby-flipped-content-container .selby-flipped-content-column2 { - width: 48.387%; - } - - .selby-flipped-sidebar { - width: 31.915%; - } - - .selby-flipped-content-column2-inner, - .selby-sidebar { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .selby-flipped-column, - .selby-flipped-content-container, - .selby-flipped-content-container .selby-flipped-column, - .selby-flipped-content-container .selby-flipped-content-column2, - .selby-flipped-sidebar { - width: 100%; - float: none; - } - - .selby-flipped-column-inner, - .selby-flipped-content-container-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/selby_flipped/selby-flipped.png b/plugins/layouts/selby_flipped/selby-flipped.png deleted file mode 100644 index a13d3713e251f490e8e528d03d0cb6f4c1ac8566..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 553 zcmV+^0@nSBP)80^DnUU(nVFgY|Nk>H zGtjQpi~s-t+et)0RCwC#*4GNcFc^m6)V*tK-Fxr7_tqNk|9&(_f1vVeoE=74~v!{K^s;lXTFnVotuJ0zhYUej9dse>4N+ZiJq~_G1*805>_(o zHxl|J<#j?oLlouNjkSGHx5O?QHDT#(Q%17!Lis5p)etQ4nT$V5lbaFO`Gu!1h#-Op z@^z9mLE{M{i4ZJv{lTa2=z&&4MhXE~_Qmwi92OrTZyc}qAzq2e; - -
> -
-
-
- -
-
- -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- - - -
-
- -
-
- -
-
-
-
diff --git a/plugins/layouts/selby_flipped/selby_flipped.inc b/plugins/layouts/selby_flipped/selby_flipped.inc index 066fada1cf970cffcdce17dcacbe9da695a69b04..62514a92a808beb6acaf97d9ff1c2bc0dd07365e 100644 --- a/plugins/layouts/selby_flipped/selby_flipped.inc +++ b/plugins/layouts/selby_flipped/selby_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Selby Flipped'), - 'icon' => 'selby-flipped.png', + 'icon' => 'radix-selby-flipped.png', + 'file' => 'radix_selby_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_selby_flipped', 'category' => t('Panopoly'), - 'theme' => 'selby_flipped', - 'css' => 'selby-flipped.css', + 'theme' => 'radix_selby_flipped', 'regions' => array( 'sidebar' => t('Sidebar'), 'contentheader' => t('Content Header'), diff --git a/plugins/layouts/sutro/sutro.css b/plugins/layouts/sutro/sutro.css deleted file mode 100644 index 6cb920bf2a7e1d07eb404234760af2571de03f54..0000000000000000000000000000000000000000 --- a/plugins/layouts/sutro/sutro.css +++ /dev/null @@ -1,38 +0,0 @@ -/** - * @file - * Sutro panel layout -**/ - -.sutro-container { - margin-bottom: 1em; -} - -.sutro-column { - width: 51.064%; - float: left; -} - - .sutro-column-inner { - margin-right: 20px; - } - - .sutro-column2 { - width: 48.936%; - } - - .sutro-column2-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .sutro-column, - .sutro-column2 { - width: 100%; - float: none; - } - - .sutro-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/sutro/sutro.inc b/plugins/layouts/sutro/sutro.inc index 3f689cecd9c9cc4396b2c6eba0b3431b0888bfbc..1204377d513812e26c2f870c5f3523d61f404268 100644 --- a/plugins/layouts/sutro/sutro.inc +++ b/plugins/layouts/sutro/sutro.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Sutro'), - 'icon' => 'sutro.png', + 'icon' => 'radix-sutro.png', + 'file' => 'radix_sutro.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_sutro', 'category' => t('Panopoly'), - 'theme' => 'sutro', - 'css' => 'sutro.css', + 'theme' => 'radix_sutro', 'regions' => array( 'header' => t('Header'), 'column1' => t('First Column'), diff --git a/plugins/layouts/sutro/sutro.png b/plugins/layouts/sutro/sutro.png deleted file mode 100644 index 7d86f0662e77c8f1d573b402f98b20589c6604eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 487 zcmVVK z=kqD0B+v77yQ*iinJCK=u?4KRWa4(aP197_pA&hxT&`9tAp|cuQiC7}!?4@!Du?`Z zI;H)7f4N+gu{eu~XuV!nObmBC9(TLlXf#spP8W*>nWo95qRxT$dcEqQIxy}nEz9E9 zD%UM;m=W^80v51<1uS3z3s}Gc7O?(-d@Vjr*`M{(H+NqC-29b%Wp`p(C#6)L+pyZ~ zbUI&mc*#QVB_0*Nlaa*fbgFY&>}%WhcszcI{Wy+qw_CMT{DVZ8ZvpFV1;Y3JI`gf@ zjdRFx96B5hb>>@*8y5)Ib!j*pa_!Ly3-c{t0Sj2bY79%O694LWX)>9#+wD5dWaF0) d_qrbf3;@q_w21zmp~V0I002ovPDHLkV1gaM*~kC@ diff --git a/plugins/layouts/sutro/sutro.tpl.php b/plugins/layouts/sutro/sutro.tpl.php deleted file mode 100644 index ed9537510232b9e8402d3d004d32fe71451138f9..0000000000000000000000000000000000000000 --- a/plugins/layouts/sutro/sutro.tpl.php +++ /dev/null @@ -1,40 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/sutro_double/sutro-double.css b/plugins/layouts/sutro_double/sutro-double.css deleted file mode 100644 index bfb1afc9d656f51ce49e7ba16aa36240b60a49f2..0000000000000000000000000000000000000000 --- a/plugins/layouts/sutro_double/sutro-double.css +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @file - * Sutro Double panel layout -**/ - -.sutro-double-container { - margin-bottom: 1em; -} - -.sutro-double-column { - min-height: 1px; - width: 51.064%; - float: left; -} - - .sutro-double-column-inner { - margin-right: 20px; - } - - .sutro-double-column2 { - width: 48.936%; - } - - .sutro-double-column2-inner { - margin-right: 0; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .sutro-double-column, - .sutro-double-column2 { - width: 100%; - float: none; - } - - .sutro-double-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/sutro_double/sutro-double.png b/plugins/layouts/sutro_double/sutro-double.png deleted file mode 100644 index 5743667732cf0c2e15ee5370c0471b7167b0adce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBlwP)ZX>1mBM>Hkg&&Xq188;jgRhE7jlBDap2RE_ryW=>l zuIs+<`N3M(wP_lrY1*?;4**(tak;QrfD2Uet@=Zo9CJNzR%k@wQXBC zj)TLW2&@mlVriNV!*F>&HF6k+Q4~EhMNw2$CCl>VlD902<$2z=?PV3InK>BZ*CLMcuZqcI#;`0fbxPQkT3H!C3mVc8k zbs}wNRG}n|m!}ssjwDIv3@xc<&wcRfcM=kd@;vXH34(x*zB#ubKEQe#7R)}( zKBO90F#9n3&_rOt?8EFsd|>ur_F?v+i7@*x`!M^EYGA?a{};3WCBOiAerO - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/sutro_double/sutro_double.inc b/plugins/layouts/sutro_double/sutro_double.inc index 5fdca70295e8ad422c4e0aee8b526c92a487c199..ac3a8adf7c2733d990f4ea59fb0f34b1df1941e3 100644 --- a/plugins/layouts/sutro_double/sutro_double.inc +++ b/plugins/layouts/sutro_double/sutro_double.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Sutro Double'), - 'icon' => 'sutro-double.png', + 'icon' => 'radix-sutro-double.png', + 'file' => 'radix_sutro_double.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_sutro_double', 'category' => t('Panopoly'), - 'theme' => 'sutro_double', - 'css' => 'sutro-double.css', + 'theme' => 'radix_sutro_double', 'regions' => array( 'header' => t('Header'), 'column1' => t('First Column'), diff --git a/plugins/layouts/taylor/taylor.css b/plugins/layouts/taylor/taylor.css deleted file mode 100644 index 5e863ce0b801b18d7c91fbe6d72a380d8c559a8d..0000000000000000000000000000000000000000 --- a/plugins/layouts/taylor/taylor.css +++ /dev/null @@ -1,45 +0,0 @@ -/** - * @file - * Taylor panel layout -**/ - -.taylor-container { - margin-bottom: 1em; -} - -.taylor-half { - width: 51.064%; - float: left; -} - -.taylor-quarter1 { - min-height: 1px; - width: 25.532%; - float: left; -} - -.taylor-half-inner, -.taylor-quarter1-inner { - margin-right: 20px; -} - -.taylor-quarter2 { - min-height: 1px; - width: 23.404%; - float: left; -} - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .taylor-half, - .taylor-quarter1, - .taylor-quarter2 { - width: 100%; - float: none; - } - - .taylor-half-inner, - .taylor-quarter1-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/taylor/taylor.inc b/plugins/layouts/taylor/taylor.inc index 50b1399945ca666ab51cc9b5f2c0f8d80caa491c..15443d3e4bb03c5bf11fdf19aa08087acb5bcba8 100644 --- a/plugins/layouts/taylor/taylor.inc +++ b/plugins/layouts/taylor/taylor.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Taylor'), - 'icon' => 'taylor.png', + 'icon' => 'radix-taylor.png', + 'file' => 'radix_taylor.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_taylor', 'category' => t('Panopoly'), - 'theme' => 'taylor', - 'css' => 'taylor.css', + 'theme' => 'radix_taylor', 'regions' => array( 'header' => t('Header'), 'half' => t('Half Column'), diff --git a/plugins/layouts/taylor/taylor.png b/plugins/layouts/taylor/taylor.png deleted file mode 100755 index 34acc1138ee84c969de31b4447b4d19e86d01123..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 527 zcmV+q0`UEbP)iU=~4l z;?e`SH%AdXhvFlQ*J~;i3g`1#9V|`L^7*`$Qqq70EMNiauVK;YbUGf7 z>HuA@SI_gP+wH3Msctr#A_xMUEnt1*CXUDB!{HEnJzwNruh;MQg%IrWNp&1&KA&f^ z*~md|G#Z1!Kt^oazL!ZQO{de%W)mBWZ!r;>rWrCZ+-x?ROeW=WIZ|_WI-Ogrhcc<8 zQmMqLBFTp5a=GwFxM5sdRw@<#+ekLzGWa&~P$rc)^1uQXuz&?DU;ztQzycPq{z3cd ze_QPJ+&@K@v->RgQYPcX{hH@_vFA42ZDul=+X%bd=*i|$(({8}%A`^(m&+u(#cQk8 zYOPk2&Hie&+U<6s`{TV38HOQU*L9!1K_bkzfc3EiF&d4M%(vcde1~*hC(E*u%(vcd zoFLlmHWiCS&OJ(DVZH?{U;ztQZ^Ke5#mkD9>h*d$oxU$7fAQnPweFVy0|4BJ-x#(9 RQYZib002ovPDHLkV1n~J^+*5! diff --git a/plugins/layouts/taylor/taylor.tpl.php b/plugins/layouts/taylor/taylor.tpl.php deleted file mode 100644 index 73e85db0f751d3f9a0c9af1298fe1c34ca611f44..0000000000000000000000000000000000000000 --- a/plugins/layouts/taylor/taylor.tpl.php +++ /dev/null @@ -1,45 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/taylor_flipped/taylor-flipped.css b/plugins/layouts/taylor_flipped/taylor-flipped.css deleted file mode 100644 index 82cfdd3e2a01b83bf3d658cdc09632ba1d5f7b94..0000000000000000000000000000000000000000 --- a/plugins/layouts/taylor_flipped/taylor-flipped.css +++ /dev/null @@ -1,42 +0,0 @@ -/** - * @file - * Taylor Flipped panel layout -**/ - -.taylor-flipped-container { - margin-bottom: 1em; -} - -.taylor-flipped-half { - min-height: 1px; - width: 48.936%; /* 460 / 940 = 48.936% */ - float: left; -} - -.taylor-flipped-quarter1, -.taylor-flipped-quarter2 { - min-height: 1px; - width: 25.532%; /* 240 / 940 = 25.532% */ - float: left; -} - -.taylor-flipped-quarter1-inner, -.taylor-flipped-quarter2-inner { - margin-right: 20px; -} - - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .taylor-flipped-half, - .taylor-flipped-quarter1, - .taylor-flipped-quarter2 { - width: 100%; - float: none; - } - - .taylor-flipped-half-inner, - .taylor-flipped-quarter1-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/taylor_flipped/taylor-flipped.png b/plugins/layouts/taylor_flipped/taylor-flipped.png deleted file mode 100755 index f9c8ec1ef659fa9bfb0224b5707565a70bb04c0f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 515 zcmV+e0{s1nP)1btg%L;A)_c-E|*eDd$5#JvR12ADiz0Z?7^zn>lXcXw?-^t5sO%V4NIQS=hNwA zRhF+-tFqJS;Aph%s211jm9a&vr|iVxaJb!W&5*|q?RL9C5NJ=XGL!ZDeIW#vh}6ks zGM!Gbn;xmRsp1S zlw!yei&(@W*3V#lQ3L*#0ZID4zu)ieIebu-;!J!MU;v<&rzTir+xY+h002ovPDHLk FV1h;V>!bhx diff --git a/plugins/layouts/taylor_flipped/taylor-flipped.tpl.php b/plugins/layouts/taylor_flipped/taylor-flipped.tpl.php deleted file mode 100644 index e95742d226dda0d0774d7d455efefd586325436c..0000000000000000000000000000000000000000 --- a/plugins/layouts/taylor_flipped/taylor-flipped.tpl.php +++ /dev/null @@ -1,45 +0,0 @@ - - -
> - -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
diff --git a/plugins/layouts/taylor_flipped/taylor_flipped.inc b/plugins/layouts/taylor_flipped/taylor_flipped.inc index 4311d14fe36db100f6fd09cda2433d6f8101e304..724efcedd7abf2062f157e124a86352377ab5ca4 100644 --- a/plugins/layouts/taylor_flipped/taylor_flipped.inc +++ b/plugins/layouts/taylor_flipped/taylor_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Taylor Flipped'), - 'icon' => 'taylor-flipped.png', + 'icon' => 'radix-taylor-flipped.png', + 'file' => 'radix_taylor_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_taylor_flipped', 'category' => t('Panopoly'), - 'theme' => 'taylor_flipped', - 'css' => 'taylor-flipped.css', + 'theme' => 'radix_taylor_flipped', 'regions' => array( 'header' => t('Header'), 'quarter1' => t('Quarter 1 Column'), diff --git a/plugins/layouts/webb/webb.css b/plugins/layouts/webb/webb.css deleted file mode 100755 index aaf4b2e604b3f5a5167fbb2a3b4e4c97e7a60726..0000000000000000000000000000000000000000 --- a/plugins/layouts/webb/webb.css +++ /dev/null @@ -1,53 +0,0 @@ -/** - * @file - * Webb panel layout -**/ - -.webb-container, -.webb-content-header { - margin-bottom: 1em; -} - -.webb-column { - min-height: 1px; - width: 34.043%; /* 320 / 940 */ - float: left; -} - - .webb-column-inner { - margin-right: 20px; - } - - .webb-content-column2-inner { - margin-right: 0; - } - -.webb-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "webb-column" class */ - min-height: 1px; - float: left; - width: 65.957%; /* 620 / 940 */ -} - - .webb-content-column1 { - width: 51.613%; /* 320 / 620 */ - } - - .webb-content-column2 { - width: 48.387%; /* 300 / 620 */ - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .webb-column, - .webb-content-container, - .webb-content-column1, - .webb-content-column2 { - width: 100%; - float: none; - } - - .webb-column-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/webb/webb.inc b/plugins/layouts/webb/webb.inc index e35f748d819dc28b5d47f4028070f8d0a78a5ba4..7b6dca5e58cb92f884831aa44a832f73d07216fc 100755 --- a/plugins/layouts/webb/webb.inc +++ b/plugins/layouts/webb/webb.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Webb'), - 'icon' => 'webb.png', + 'icon' => 'radix-webb.png', + 'file' => 'radix_webb.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_webb', 'category' => t('Panopoly'), - 'theme' => 'webb', - 'css' => 'webb.css', + 'theme' => 'radix_webb', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Sidebar'), diff --git a/plugins/layouts/webb/webb.png b/plugins/layouts/webb/webb.png deleted file mode 100755 index 336f60beba86b1166d3094d82163199b7c3cb9b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 566 zcmV-60?GY}P)1ftO`{@c z;~R*UK8U4np${MkRz8u1*xTA^;{`1Q5skOx{3^&Ei}kRuu)<6c$TG8h+011A>{`uc zbG2GUB9R|6>~_1AN+p`l=j-*_wrz8;utpS(M(u|gf)$3L<2a_!ycuIL7Gp8iw_%a* z`^V$asOEDzov2c&pfwtWRVWlJ^dQbH#?n%Wola-F-O5uQrCP7o8;!vicOlraHc6+zm>DW-gqvG?ff`#T&tJOH= z%@Hd!{nO|qC+Uy|D(h}dDQiKrF=dg1cCf; z#dY0ODkYA1o|nyL - -
> - -
-
- -
-
- -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- -
-
- -
- -
diff --git a/plugins/layouts/webb_flipped/webb-flipped.css b/plugins/layouts/webb_flipped/webb-flipped.css deleted file mode 100644 index eff50ae14f0f05d56ba9c2ef2da261b80ba045eb..0000000000000000000000000000000000000000 --- a/plugins/layouts/webb_flipped/webb-flipped.css +++ /dev/null @@ -1,59 +0,0 @@ -/** - * @file - * Webb Flipped panel layout -**/ - -.webb-flipped-container, -.webb-flipped-content-header { - margin-bottom: 1em; -} - -.webb-flipped-column { - min-height: 1px; - width: 31.915%; - float: left; -} - - .webb-flipped-column-inner { - margin-right: 20px; - } - - .webb-flipped-content-column2-inner, - .webb-flipped-sidebar-inner { - margin-right: 0; - } - -.webb-flipped-content-container { /* This is floated to the left of the sidebar, - which is styled by the generic "webb-flipped-column" class */ - min-height: 1px; - float: left; - width: 68.085%; -} - - .webb-flipped-content-container-inner { - margin-right: 20px; - } - - .webb-flipped-content-column1 { - width: 51.613%; - } - - .webb-flipped-content-column2 { - width: 48.387%; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .webb-flipped-column, - .webb-flipped-content-container, - .webb-flipped-content-column1, - .webb-flipped-content-column2 { - width: 100%; - float: none; - } - - .webb-flipped-column-inner, - .webb-flipped-content-container-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/webb_flipped/webb-flipped.png b/plugins/layouts/webb_flipped/webb-flipped.png deleted file mode 100644 index db5f91afbe1cfff4916bf249a88a50a3094a5c04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 578 zcmV-I0=@l-P)R^ODZZV|Ns9pGc)tT zeIx(?0QX5mK~#9!?3CAT!Y~wu-OxZ7VPvq9FbcHn4)&&{A;9}T5F9RSBrJokK;ZB4 z*Z*0v&ashWdR&-Agz`AbO51QDWl+9}xG2hK%gy~N!?4UC`4&Hv zmQ|9>8pyO<20v3cx6>zyHn}j$fFG1siDUXgp(qAR(P>JS`CbZx__^}e4l$_xQj}{J z@g|CzP%#M`3ifHDQj|zGhRKzokWZ0BNm8z#)}xrh`1tA;B(Xj(Oy3PdA+q6E7@-J7 zC_;G>C2a&T(l- - -
> - -
-
- -
-
- -
- -
-
- -
-
- -
-
- -
-
-
- -
-
-
-
- -
-
-
- -
-
- -
-
- -
-
- -
- -
diff --git a/plugins/layouts/webb_flipped/webb_flipped.inc b/plugins/layouts/webb_flipped/webb_flipped.inc index 7bc35814e327354023cec7f58041b038bef432e9..7a1001703097bcc661fd50e0e81fb2ece286e97b 100644 --- a/plugins/layouts/webb_flipped/webb_flipped.inc +++ b/plugins/layouts/webb_flipped/webb_flipped.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Webb Flipped'), - 'icon' => 'webb-flipped.png', + 'icon' => 'radix-webb-flipped.png', + 'file' => 'radix_webb_flipped.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_webb_flipped', 'category' => t('Panopoly'), - 'theme' => 'webb_flipped', - 'css' => 'webb-flipped.css', + 'theme' => 'radix_webb_flipped', 'regions' => array( 'header' => t('Header'), 'sidebar' => t('Sidebar'), diff --git a/plugins/layouts/whelan/whelan.css b/plugins/layouts/whelan/whelan.css deleted file mode 100644 index a9df7c379b628cb37cc5c932f556ad241d2ccdd2..0000000000000000000000000000000000000000 --- a/plugins/layouts/whelan/whelan.css +++ /dev/null @@ -1,44 +0,0 @@ -/** - * @file - * Whelan panel layout -**/ - -.whelan-container { - margin-bottom: 1em; -} - -.whelan-column-content-region { - min-height: 1px; - width: 25.532%; - float: left; -} - - .whelan-column-content-region-inner { - margin-right: 20px; - } - - .whelan-column2 { - width: 23.404%; - } - - .whelan-column2-inner { - margin-right: 0; - } - - .whelan-content { - width: 51.064%; - } - -/* iPhone [portrait + landscape] */ -@media only screen and (max-width: 480px) { - .whelan-column-content-region, - .whelan-column2, - .whelan-content { - width: 100%; - float: none; - } - - .whelan-column-content-region-inner { - margin-right: 0; - } -} diff --git a/plugins/layouts/whelan/whelan.inc b/plugins/layouts/whelan/whelan.inc index 2ac0257ecfc31d745c96ec209f60ca74639324af..15181373372e3994184dd8d2467c0684e41b96e5 100644 --- a/plugins/layouts/whelan/whelan.inc +++ b/plugins/layouts/whelan/whelan.inc @@ -2,10 +2,11 @@ // Plugin definition $plugin = array( 'title' => t('Whelan'), - 'icon' => 'whelan.png', + 'icon' => 'radix-whelan.png', + 'file' => 'radix_whelan.inc', + 'path' => drupal_get_path('module', 'radix_layouts') . '/plugins/layouts/radix_whelan', 'category' => t('Panopoly'), - 'theme' => 'whelan', - 'css' => 'whelan.css', + 'theme' => 'radix_whelan', 'regions' => array( 'column1' => t('First Column'), 'column2' => t('Second Column'), diff --git a/plugins/layouts/whelan/whelan.png b/plugins/layouts/whelan/whelan.png deleted file mode 100644 index 7c6ab04d4d8382de3b21a5f098660c53af7cc188..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 376 zcmeAS@N?(olHy`uVBq!ia0vp^MnLSq!3-qxxvzKvDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_d9MePATA+A4u{P6eppEhlpnwpxHmX@ihsiC3azJ2>{-@cug znCRl-;^5$5V`CE+7nhTh6BHD5>(;GDj~?yWvnM$@+1}pX$;rvf%j?XUGwar^i;9ZU z*Vk89SD!zBzJh{6czC#qipt@`hvVbp@7=qnt*sps6H``JW?^CB=H@ne@?>3IT}Ma9 z|Ns9R8ykylm5cy6$z+bQ1_G@Q!(3Wb9_UPd#3FI%@A-7ADZ6!U1bzK? z_w|+Xh5)UkcX#&o81hS2XKDX-dG(~t!;@!S>5k3c&t`oP(V409We3aG`b~2^ss!L* zf~DZf*!NBQIoqSEch$~}IaTQC6>`M3zq)$=vx&>Ak1hGRW8tLv49pCB;}5*3?tLx} PbP|K7tDnm{r-UW|@@tm5 diff --git a/plugins/layouts/whelan/whelan.tpl.php b/plugins/layouts/whelan/whelan.tpl.php deleted file mode 100644 index 64a4645194f37891637aca8a234e737fdff6e52b..0000000000000000000000000000000000000000 --- a/plugins/layouts/whelan/whelan.tpl.php +++ /dev/null @@ -1,33 +0,0 @@ - - -
> - -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -