Merge pull request #3291 from awesomerobot/master
clearfix for admin contents
This commit is contained in:
commit
ca9c350994
|
@ -33,6 +33,7 @@ td.flaggers td {
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
.admin-contents {
|
.admin-contents {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
@include clearfix();
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-options {
|
.view-options {
|
||||||
|
|
|
@ -33,6 +33,19 @@
|
||||||
// CSS3 properties
|
// CSS3 properties
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
|
// Clearfix
|
||||||
|
|
||||||
|
@mixin clearfix() {
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
&:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Border radius
|
// Border radius
|
||||||
|
|
||||||
@mixin border-radius-all($radius) {
|
@mixin border-radius-all($radius) {
|
||||||
|
|
Loading…
Reference in New Issue