]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Update migration.md
authorRafi <rafibomb@users.noreply.github.com>
Wed, 24 Feb 2016 17:10:02 +0000 (09:10 -0800)
committerRafi <rafibomb@users.noreply.github.com>
Wed, 24 Feb 2016 17:10:02 +0000 (09:10 -0800)
migration.md

index 901ed93aa6b0d3407f7b7478db4375dc70425ef6..689bec7f89139365e83b68d454b6ec763a4b8442 100644 (file)
@@ -325,6 +325,7 @@ Version 2 (Inky markup)
 <button href="http://zurb.com"></button>
 ```
 
+The button markup has changed to make the touch targets better. Now the whole button is clickable. It requires more table markup but you should use Inky anyways which is much simpler.
 
 ## Panels are now Callouts
 
@@ -356,8 +357,37 @@ Version 2 (CSS version)
 
 Version 2 (Inky markup)
 
+```
+Work in progress - issue [188](https://github.com/zurb/foundation-emails/issues/188)
+```
+
+***
+## NEW
+***
+
+### Menu
+
+Version 2 (CSS version)
+
+```
+<table class="menu">
+  <tr>
+    <td><a href="one.html">Item One</a></td>
+    <td><a href="one.html">Item Two</a></td>
+    <td><a href="one.html">Item Three</a></td>
+  </tr>
+</table>
 ```
 
+Version 2 (Inky markup)
+
+```
+<menu>
+  <item href="one.html">Item One</item>
+  <item href="one.html">Item Two</item>
+  <item href="one.html">Item Three</item>
+</menu>
 ```
 
+The menu component can be used to create a simple set of links comonly used in headers, for social icons or in footers. Adding the `.vertical` class will change the orientation.