BUGFIX: multiple sub/sup

This commit is contained in:
Régis Hanol 2014-07-11 15:27:42 +02:00
parent 39be48a441
commit 46218c7a3a
3 changed files with 4 additions and 1 deletions

View File

@ -266,6 +266,7 @@ sub,sup{
}
sup{top:-0.5em; }
sub{bottom:-0.25em; }
sup sup, sub sup, sup sub, sub sub { top: 0; }
figure{margin:0; }
fieldset{
border:1px solid scale-color-diff();

View File

@ -171,3 +171,5 @@
.heatmap-high {color: scale-color($danger, $lightness: -25%) !important;}
.heatmap-med {color: $danger !important;}
.heatmap-low {color: scale-color($danger, $lightness: 25%) !important;}
sup sup, sub sup, sup sub, sub sub { top: 0; }

View File

@ -60,7 +60,7 @@ describe ScreenedEmail do
ScreenedEmail.should_block?(email).should be_true
end
it "returns true when there is a record with a simiral email" do
it "returns true when there is a record with a similar email" do
ScreenedEmail.should_block?(email).should be_false
ScreenedEmail.create(email: similar_email).save
ScreenedEmail.should_block?(email).should be_true