]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Test case for callouts
authorKevin Ball <kmball11@gmail.com>
Wed, 9 Mar 2016 23:41:20 +0000 (15:41 -0800)
committerKevin Ball <kmball11@gmail.com>
Wed, 9 Mar 2016 23:41:20 +0000 (15:41 -0800)
testing/src/layouts/default.html
testing/src/pages/grid-with-callouts-inky.html [new file with mode: 0644]

index 7be6abc5ef37de8d05e7b6926468f2e00349aa44..829553d208bcd71201ebc029e86acec5fda35710 100644 (file)
@@ -7,8 +7,7 @@
 </head>
  
 <body>
-<!-- inject:css -->
-  <!-- endinject -->
+  <!-- <style> -->
   <table class="body" data-made-with-foundation>
     <tr>
       <td class="center" align="center" valign="top">
diff --git a/testing/src/pages/grid-with-callouts-inky.html b/testing/src/pages/grid-with-callouts-inky.html
new file mode 100644 (file)
index 0000000..da1a5e8
--- /dev/null
@@ -0,0 +1,44 @@
+<container>
+  <row>
+  <columns small="12" large="12">
+    <callout>
+      <p>Lorem ipsum</p>
+    </callout>
+    </columns>
+  </row>
+  <row class="collapse">
+    <columns small="12" large="12">
+      <callout>
+        <p>Lorem ipsum</p>
+      </callout>
+    </columns>
+  </row>
+  <row>
+    <columns small="12" large="6">
+      <callout class="alert">
+        <p>Small Alert Callout should be 6 columns in large</p>
+      </callout>
+    </columns>
+    <columns small="12" large="6">
+      <callout class="primary">
+      </callout>
+    </columns>
+  </row>
+  <row>
+    <columns small="12" large="2">
+      <callout class="success">
+        <p>Success</p>
+      </callout>
+    </columns>
+    <columns small="4" large="4">
+      <callout class="warning">
+        <p>Warning</p>
+      </callout>
+    </columns>
+    <columns small="8" large="6">
+      <callout>
+        <p>Normal 8 and 6</p>
+      </callout>
+    </columns>
+  </row>
+</container>