]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
adds inliner bugs test cases
authorRafiBomb <rafi@zurb.com>
Thu, 5 May 2016 20:42:22 +0000 (13:42 -0700)
committerRafiBomb <rafi@zurb.com>
Thu, 5 May 2016 20:42:22 +0000 (13:42 -0700)
scss/settings/_settings.scss
test/visual/pages/fluid-header.html
test/visual/pages/inliner-bugs.html [new file with mode: 0644]

index 696265e77959b34708827029bef4e8cdedaa7f16..50c74ef02f2972391394c8316a0e5116a32c8ab1 100644 (file)
@@ -30,7 +30,7 @@ $pre-color: #ff6908;
 $global-width: 580px;
 $global-width-small: 95%;
 $global-gutter: 16px;
-$body-background: $light-gray;
+$body-background: $white;
 $container-background: $white;
 $global-padding: 16px;
 $global-margin: 16px;
index bcce8d22a67448435bbd10c9907d3064f4f3fd53..1259f1877b698d5477efcf687fe2345d88d2b7e0 100644 (file)
@@ -1,38 +1,43 @@
-<style>
-.header, .header .container, .headline {
-  background: #012C35;
-}
-
-.header .container {
-  background: transparent !important;
-}
-
-.header .container p {
-  color: #fff !important;
-}
+<style type="text/css">
+  .wrapper.header {
+    background: #8a8a8a !important;
+  }
+  .wrapper.header .columns {
+    padding-bottom: 0 !important;
+  }
+  .header p {
+    color: #fff !important;
+    font-weight: bold;
+  }
+  .wrapper.header .header-container {
+    background: #8a8a8a !important;
+  }
 </style>
 
 
 
 <wrapper class="header">
-
+  <spacer size="16"></spacer>
   <center>
-    <container>
+    <container class="header-container">
       <row class="collapse">
-        <columns small="6" large="6">
-          <img src="http://placehold.it/50" alt="logo">
+        <columns small="6">
+          <img src="http://placehold.it/200x50/663399">
         </columns>
-        <columns small="6" large="6">
-          <p class="text-right">thing</p>
+        <columns small="6">
+          <spacer size="15"></spacer>
+          <p class="text-right">BASIC</p>
         </columns>
       </row>
     </container>
   </center>
-
+  <spacer size="16"></spacer>
 </wrapper>
 
 
 <container>
   <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Error atque, tempore illo nobis. Iure delectus eveniet ut, eaque molestias necessitatibus dicta, eos quidem ex maxime neque quae, fugiat temporibus amet.</p>
   <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consectetur nisi error, labore porro reiciendis est, voluptate quasi exercitationem ad sed, odio, rem quos nostrum beatae consequatur. Velit accusantium, quo alias!</p>
-</container>
\ No newline at end of file
+</container>
+
+
diff --git a/test/visual/pages/inliner-bugs.html b/test/visual/pages/inliner-bugs.html
new file mode 100644 (file)
index 0000000..18835b6
--- /dev/null
@@ -0,0 +1,31 @@
+<container>
+  <row>
+    <columns>
+      
+      #417 - 2 sets of angle backets: outer set should not get converted to charachter codes. you should not see 2 angle brackets here:
+      <br>
+      <<LCG Program\TG LCG Coupon Code Default='246996'>>
+
+      <hr>
+
+
+      Should not be converted to apostrophe
+      <br>
+      '
+
+      <hr>
+
+      <br>
+
+      #384 - Should not be converted to ampersand and nbsp
+      &nbsp;
+
+      <br>
+
+      Should not be converted to ampersand amp;
+      &
+
+      
+    </columns>
+  </row>
+</container>
\ No newline at end of file