diff --git a/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss b/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss index a1fcc487..f904153e 100644 --- a/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +++ b/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss @@ -70,6 +70,7 @@ @mixin blueprint-reset-table-cell($reset-base-class: false) { @if $reset-base-class { @extend .#{$reset-base-class}; } @else { @include blueprint-reset; } + float: none !important; text-align: left; font-weight: normal; vertical-align: middle; } diff --git a/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css b/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css index 8eb49cd5..fb762a7c 100644 --- a/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +++ b/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css @@ -28,6 +28,7 @@ blockquote, q { content: ""; } th, td, caption { + float: none !important; text-align: left; font-weight: normal; vertical-align: middle; } @@ -62,6 +63,7 @@ body.testing blockquote, body.testing q { body.testing blockquote:before, body.testing blockquote:after, body.testing q:before, body.testing q:after { content: ""; } body.testing th, body.testing td, body.testing caption { + float: none !important; text-align: left; font-weight: normal; vertical-align: middle; } diff --git a/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css b/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css index 65162053..63bd86a7 100644 --- a/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +++ b/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css @@ -28,6 +28,7 @@ blockquote, q { content: ""; } th, td, caption { + float: none !important; text-align: left; font-weight: normal; vertical-align: middle; }