BUGFIX: multiple sub/sup
This commit is contained in:
parent
39be48a441
commit
46218c7a3a
|
@ -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();
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue