-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't merge rulesets if between them a ruleset with same specificity (f…
…ixes #264)
- Loading branch information
Showing
3 changed files
with
30 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
issue #264 don't merge rulesets if between there is a ruleset with same specificity | ||
*/ | ||
|
||
.notification-banner.drop { | ||
top: -50px | ||
} | ||
|
||
.notification-banner.drop.in { | ||
top: 0 | ||
} | ||
|
||
.notification-banner.drop.out { | ||
top: -50px | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.notification-banner.drop{top:-50px}.notification-banner.drop.in{top:0}.notification-banner.drop.out{top:-50px} |
379ee44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rad; thanks.