]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
updates block-grid markup migration docs, fixes #347
authorRafiBomb <rafi@zurb.com>
Tue, 28 Jun 2016 17:06:25 +0000 (10:06 -0700)
committerRafiBomb <rafi@zurb.com>
Tue, 28 Jun 2016 17:06:25 +0000 (10:06 -0700)
docs/pages/migration.md
package.json
test/visual/pages/attributes.html

index d361ef7980bc06d04f3b76a2f016b0b7c2406f7a..16ee0733f9654d8daac30611126703c1a0262fcf 100644 (file)
@@ -251,7 +251,7 @@ The block grid has a minor syntax change with identifying the number of elements
 #### New Markup (Plain HTML)
 
 ```
-<table class="row">
+<table class="block-grid up-3">
   <tr>
     <th class="column first">
       Thing 1
@@ -267,11 +267,11 @@ The block grid has a minor syntax change with identifying the number of elements
 #### New Markup (Inky HTML)
 
 ```
-<row small-up="1" large-up="3">
+<block-grid up="3">
   <column>Thing 1</column>
   <column>Thing 2</column>
   <column>Thing 3</column>
-</row>
+</block-grid>
 ```
 
 ---
index 7947dfb09bae2fcc3559d0f0707acfe0af59b46e..2a141f8058653d598c138044175669744ba8daba 100644 (file)
@@ -43,7 +43,7 @@
     "gulp-sourcemaps": "^1.6.0",
     "gulp-wrap": "^0.11.0",
     "gulp-zip": "^3.2.0",
-    "inky": "zurb/inky",
+    "inky": "zurb/inky#fix-character-escaping",
     "lazypipe": "^1.0.1",
     "motion-ui": "^1.1.1",
     "multiline": "^1.0.2",
index c400ac0b6ac6c12abde879fcdea509a234945db3..8adf1c294f4ec64233f008e8410a0f4e10d3e62a 100644 (file)
@@ -2,6 +2,7 @@
   
   <spacer size="32"></spacer>
 
+  the row should have dir="rtl"
   <row dir="rtl">
     <columns large="4" valign="middle" align="center">
       <img class="small-float-center" src="http://placehold.it/300x200/345" alt="">
@@ -22,6 +23,8 @@
     </columns>
   </row>
 
+  the row should have dir="rtl", the columns should have valign and align attributes
+
   <row dir="rtl">
     <columns large="4" valign="middle" align="center">
       <img class="small-float-center" src="http://placehold.it/250/349" alt="">
       <p style="margin-bottom: 0;" class="text-right subheader">SUBHEADLINE</p>
     </columns> 
   </row> 
+
+  the items should have target="_blank"
+  <center>
+    <menu>
+      <item target="_blank" href="http://zurb.com">Item</item>
+      <item target="_blank" href="http://zurb.com">Item</item>
+      <item target="_blank" href="http://zurb.com">Item</item>
+    </menu>
+  </center>
 </container>