Commit 55deb0d4 by Reda Lemeden

Fixed the sidebar layout issue in the discussion page

parent b977901a
...@@ -59,44 +59,41 @@ body.askbot { ...@@ -59,44 +59,41 @@ body.askbot {
} }
} }
.content-wrapper { .main-content {
@extend .clearfix; .discussion-wrapper {
@extend .wrapper; display: table;
@include box-shadow(0 1px 0 #fff); width: 100%;
@include box-sizing(border-box);
background: #fff; .discussion-content {
border: 1px solid #ccc; /*@extend .content;*/
border-top: 0; @include box-sizing(border-box);
display: table-cell;
.discussion-content { padding: $gw-gutter;
/*@extend .content;*/ vertical-align: top;
@include box-sizing(border-box); width: grid-width(9);
display: table-cell; }
padding: $gw-gutter;
vertical-align: top;
width: grid-width(9);
}
aside { aside {
@extend .sidebar; @extend .sidebar;
width: grid-width(2.5); width: grid-width(2.5);
padding: $gw-gutter; padding: $gw-gutter;
h2 { h2 {
font-size: 16px; font-size: 16px;
} }
h3 { h3 {
border-bottom: 0; border-bottom: 0;
box-shadow: none; box-shadow: none;
} }
input[type="text"] { input[type="text"] {
width: 68%; width: 68%;
} }
#displayTagFilterControl { #displayTagFilterControl {
margin-top: 10px; margin-top: 10px;
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment