forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes activeadmin#505 Fixed bug where having no breadcrumbs in the t…
…itlebar would cause the actions buttons to not be vertically centred.
- Loading branch information
Showing
4 changed files
with
58 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
17 changes: 17 additions & 0 deletions
17
app/assets/stylesheets/active_admin/mixins/_utilities.scss
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,17 @@ | ||
@mixin clearfix { | ||
&:after { | ||
visibility: hidden; | ||
display: block; | ||
content: ""; | ||
clear: both; | ||
height: 0; | ||
} | ||
} | ||
|
||
@mixin box-sizing($value: border-box) { | ||
-moz-box-sizing: $value; | ||
-webkit-box-sizing: $value; | ||
-o-box-sizing: $value; | ||
-ms-box-sizing: $value; | ||
box-sizing: $value; | ||
} |
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