Skip to content

Commit

Permalink
Bump to version 2.0.0 🐙
Browse files Browse the repository at this point in the history
  • Loading branch information
gakimball committed Mar 23, 2016
1 parent a46e623 commit cfe83fc
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foundation-emails",
"version": "2.0.0-rc.4",
"version": "2.0.0",
"homepage": "http://foundation.zurb.com/emails",
"authors": [
"ZURB <foundation@zurb.com>"
Expand Down
67 changes: 55 additions & 12 deletions dist/foundation.css
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,6 @@ table.expanded {
width: 100%; }
table.expand table a,
table.expanded table a {
width: calc(100% - 20px);
text-align: center; }
table.expand center,
table.expanded center {
Expand Down Expand Up @@ -1034,30 +1033,32 @@ table.button.alert:hover table td {
table.button.alert:hover table a {
border: 0px solid #e23317; }

th.callout {
table.callout {
margin-bottom: 16px;
Margin-bottom: 16px; }

th.callout-inner {
width: 100%;
border: 1px solid #cbcbcb;
padding: 10px;
background: #fefefe;
margin-bottom: 16px;
Margin-bottom: 16px; }
th.callout.primary {
background: #fefefe; }
th.callout-inner.primary {
background: #def0fc;
border: 1px solid #444444;
color: #0a0a0a; }
th.callout.secondary {
th.callout-inner.secondary {
background: #ebebeb;
border: 1px solid #444444;
color: #0a0a0a; }
th.callout.success {
th.callout-inner.success {
background: #e1faea;
border: 1px solid #1b9448;
color: #fefefe; }
th.callout.warning {
th.callout-inner.warning {
background: #fff3d9;
border: 1px solid #996800;
color: #fefefe; }
th.callout.alert {
th.callout-inner.alert {
background: #fce6e2;
border: 1px solid #b42912;
color: #fefefe; }
Expand Down Expand Up @@ -1087,10 +1088,10 @@ table.menu {
table.menu.vertical td.menu-item,
table.menu.vertical th.menu-item {
padding: 10px;
padding-right: 0; }
padding-right: 0;
display: block; }
table.menu.vertical td.menu-item a,
table.menu.vertical th.menu-item a {
display: block;
width: 100%; }

table.menu.vertical td.menu-item table.menu.vertical td.menu-item,
Expand All @@ -1102,6 +1103,9 @@ table.menu.vertical th.menu-item table.menu.vertical th.menu-item {
table.menu.text-center a {
text-align: center; }

.menu[align="center"] {
width: auto !important; }

body.outlook p {
display: inline !important; }

Expand Down Expand Up @@ -1336,5 +1340,44 @@ body.outlook p {
table.menu.vertical th, table.menu.small-vertical td,
table.menu.small-vertical th {
display: block !important; }
table.menu[align="center"] {
width: auto !important; }
table.button.expand {
width: 100% !important; } }

.footer-drip {
background: #F3F3F3;
border-radius: 0 0 10px 10px; }

.footer-drip .columns {
padding-top: 16px; }

.container.header-drip {
background: #F3F3F3; }

.container.header-drip .columns {
padding-bottom: 16px;
padding-top: 16px; }

.container.body-drip {
border-radius: 10px;
border-top: 10px solid #663399; }

.header {
background: #8a8a8a; }

.header p {
color: #ffffff;
margin: 0; }

.header .columns {
padding-bottom: 0; }

.header .container {
background: #8a8a8a;
padding-top: 16px;
padding-bottom: 16px; }

.header .container td {
padding-top: 16px;
padding-bottom: 16px; }
2 changes: 1 addition & 1 deletion dist/foundation.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/partials/component-list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ul class="vertical menu docs-nav" id="docs-menu">
<p class="docs-nav-version">
<span data-docs-version>v2.0.0-rc.4</span>
<span data-docs-version>v2.0.0</span>
<a href="https://github.com/zurb/foundation-emails/releases/" target="_blank">(Changelog)</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foundation-emails",
"version": "2.0.0-rc.4",
"version": "2.0.0",
"description": "A framework for responsive emails made by ZURB",
"keywords": [
"responsive",
Expand Down
6 changes: 6 additions & 0 deletions scss/settings/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ $button-rounded: $global-rounded;
$callout-background: $white;
$callout-background-fade: 85%;
$callout-padding: 10px;
$callout-margin-bottom: $global-margin;
$callout-border: 1px solid darken($callout-background, 20%);
$callout-border-secondary: 1px solid darken($secondary-color, 20%);
$callout-border-success: 1px solid darken($success-color, 20%);
Expand All @@ -136,5 +137,10 @@ $menu-item-color: $primary-color;
// 8. Thumbnial
// ------------

$thumbnail-border: solid 4px $white;
$thumbnail-margin-bottom: $global-margin;
$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$thumbnail-transition: box-shadow 200ms ease-out;
$thumbnail-radius: $global-radius;

0 comments on commit cfe83fc

Please sign in to comment.