Merge pull request #3291 from awesomerobot/master

clearfix for admin contents
This commit is contained in:
Régis Hanol 2015-03-23 15:32:58 +01:00
commit ca9c350994
2 changed files with 14 additions and 0 deletions

View File

@ -33,6 +33,7 @@ td.flaggers td {
margin-bottom: 50px;
.admin-contents {
padding: 8px;
@include clearfix();
}
.view-options {

View File

@ -33,6 +33,19 @@
// CSS3 properties
// --------------------------------------------------
// Clearfix
@mixin clearfix() {
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
// Border radius
@mixin border-radius-all($radius) {