From 96132da81b57572ca270027d4ba90ef741d0e489 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 17 Jul 2019 16:56:40 -0400 Subject: [PATCH] New UI elements Adding form and grid start and end. --- views/ui/f6/checkbox.html | 2 +- views/ui/f6/form-end.html | 2 ++ views/ui/f6/form-start.html | 16 +++++++++ views/ui/f6/grid-end.html | 5 +++ views/ui/f6/grid-start.html | 70 +++++++++++++++++++++++++++++++++++++ 5 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 views/ui/f6/form-end.html create mode 100644 views/ui/f6/form-start.html create mode 100644 views/ui/f6/grid-end.html create mode 100644 views/ui/f6/grid-start.html diff --git a/views/ui/f6/checkbox.html b/views/ui/f6/checkbox.html index a5b535ad..91e01f99 100644 --- a/views/ui/f6/checkbox.html +++ b/views/ui/f6/checkbox.html @@ -19,7 +19,7 @@
-
+
+*} +
diff --git a/views/ui/f6/grid-start.html b/views/ui/f6/grid-start.html new file mode 100644 index 00000000..266c5bd2 --- /dev/null +++ b/views/ui/f6/grid-start.html @@ -0,0 +1,70 @@ +{* + Foundation 6 - Grid Start + + {$ui = [ + 'nowrap' => string True if no sections should wrap to the right, + 'backgroundColor' => string Background color of overall grid area, + 'sectionColor' => string background color of sections + ]} + +*} +{$glm_f6_ui_wrapsize = 6 scope="global"} +{if isset($ui.nowrap) && $ui.nowrap} + {$glm_f6_ui_wrapsize = 12 scope="global"} +{/if} +{$glm_f6_ui_background_color = 'white' scope="global"} +{if isset($ui.backgroundColor)} + {$glm_f6_ui_background_color = $ui.backgroundColor scope="global"} +{/if} +{$glm_f6_ui_section_color = 'white' scope="global"} +{if isset($ui.sectionColor)} + {$glm_f6_ui_section_color = $ui.sectionColor scope="global"} +{/if} + + +
+ {*
*} + + -- 2.17.1