Skip to content

Commit cfe83fc

Browse files
committed
Bump to version 2.0.0 🐙
1 parent a46e623 commit cfe83fc

File tree

6 files changed

+65
-16
lines changed

6 files changed

+65
-16
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "foundation-emails",
3-
"version": "2.0.0-rc.4",
3+
"version": "2.0.0",
44
"homepage": "http://foundation.zurb.com/emails",
55
"authors": [
66

dist/foundation.css

+55-12
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,6 @@ table.expanded {
966966
width: 100%; }
967967
table.expand table a,
968968
table.expanded table a {
969-
width: calc(100% - 20px);
970969
text-align: center; }
971970
table.expand center,
972971
table.expanded center {
@@ -1034,30 +1033,32 @@ table.button.alert:hover table td {
10341033
table.button.alert:hover table a {
10351034
border: 0px solid #e23317; }
10361035

1037-
th.callout {
1036+
table.callout {
1037+
margin-bottom: 16px;
1038+
Margin-bottom: 16px; }
1039+
1040+
th.callout-inner {
10381041
width: 100%;
10391042
border: 1px solid #cbcbcb;
10401043
padding: 10px;
1041-
background: #fefefe;
1042-
margin-bottom: 16px;
1043-
Margin-bottom: 16px; }
1044-
th.callout.primary {
1044+
background: #fefefe; }
1045+
th.callout-inner.primary {
10451046
background: #def0fc;
10461047
border: 1px solid #444444;
10471048
color: #0a0a0a; }
1048-
th.callout.secondary {
1049+
th.callout-inner.secondary {
10491050
background: #ebebeb;
10501051
border: 1px solid #444444;
10511052
color: #0a0a0a; }
1052-
th.callout.success {
1053+
th.callout-inner.success {
10531054
background: #e1faea;
10541055
border: 1px solid #1b9448;
10551056
color: #fefefe; }
1056-
th.callout.warning {
1057+
th.callout-inner.warning {
10571058
background: #fff3d9;
10581059
border: 1px solid #996800;
10591060
color: #fefefe; }
1060-
th.callout.alert {
1061+
th.callout-inner.alert {
10611062
background: #fce6e2;
10621063
border: 1px solid #b42912;
10631064
color: #fefefe; }
@@ -1087,10 +1088,10 @@ table.menu {
10871088
table.menu.vertical td.menu-item,
10881089
table.menu.vertical th.menu-item {
10891090
padding: 10px;
1090-
padding-right: 0; }
1091+
padding-right: 0;
1092+
display: block; }
10911093
table.menu.vertical td.menu-item a,
10921094
table.menu.vertical th.menu-item a {
1093-
display: block;
10941095
width: 100%; }
10951096

10961097
table.menu.vertical td.menu-item table.menu.vertical td.menu-item,
@@ -1102,6 +1103,9 @@ table.menu.vertical th.menu-item table.menu.vertical th.menu-item {
11021103
table.menu.text-center a {
11031104
text-align: center; }
11041105

1106+
.menu[align="center"] {
1107+
width: auto !important; }
1108+
11051109
body.outlook p {
11061110
display: inline !important; }
11071111

@@ -1336,5 +1340,44 @@ body.outlook p {
13361340
table.menu.vertical th, table.menu.small-vertical td,
13371341
table.menu.small-vertical th {
13381342
display: block !important; }
1343+
table.menu[align="center"] {
1344+
width: auto !important; }
13391345
table.button.expand {
13401346
width: 100% !important; } }
1347+
1348+
.footer-drip {
1349+
background: #F3F3F3;
1350+
border-radius: 0 0 10px 10px; }
1351+
1352+
.footer-drip .columns {
1353+
padding-top: 16px; }
1354+
1355+
.container.header-drip {
1356+
background: #F3F3F3; }
1357+
1358+
.container.header-drip .columns {
1359+
padding-bottom: 16px;
1360+
padding-top: 16px; }
1361+
1362+
.container.body-drip {
1363+
border-radius: 10px;
1364+
border-top: 10px solid #663399; }
1365+
1366+
.header {
1367+
background: #8a8a8a; }
1368+
1369+
.header p {
1370+
color: #ffffff;
1371+
margin: 0; }
1372+
1373+
.header .columns {
1374+
padding-bottom: 0; }
1375+
1376+
.header .container {
1377+
background: #8a8a8a;
1378+
padding-top: 16px;
1379+
padding-bottom: 16px; }
1380+
1381+
.header .container td {
1382+
padding-top: 16px;
1383+
padding-bottom: 16px; }

dist/foundation.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/partials/component-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ul class="vertical menu docs-nav" id="docs-menu">
22
<p class="docs-nav-version">
3-
<span data-docs-version>v2.0.0-rc.4</span>
3+
<span data-docs-version>v2.0.0</span>
44
<a href="https://github.com/zurb/foundation-emails/releases/" target="_blank">(Changelog)</a>
55
</p>
66

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "foundation-emails",
3-
"version": "2.0.0-rc.4",
3+
"version": "2.0.0",
44
"description": "A framework for responsive emails made by ZURB",
55
"keywords": [
66
"responsive",

scss/settings/_settings.scss

+6
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ $button-rounded: $global-rounded;
120120
$callout-background: $white;
121121
$callout-background-fade: 85%;
122122
$callout-padding: 10px;
123+
$callout-margin-bottom: $global-margin;
123124
$callout-border: 1px solid darken($callout-background, 20%);
124125
$callout-border-secondary: 1px solid darken($secondary-color, 20%);
125126
$callout-border-success: 1px solid darken($success-color, 20%);
@@ -136,5 +137,10 @@ $menu-item-color: $primary-color;
136137
// 8. Thumbnial
137138
// ------------
138139

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

0 commit comments

Comments
 (0)