Commit 0c828553 by Reda Lemeden

Merge pull request #55 from MITx/rl-comments

Added comments to Askbot stylesheets
parents ef0ff1a3 b265ef9c
// Styles for individual answers
div.answer-controls { div.answer-controls {
@include box-sizing(border-box); @include box-sizing(border-box);
display: inline-block; display: inline-block;
......
// original styles // original Askbot styles
// body { // body {
// background: #fff; // background: #fff;
......
// Style for the user badge list (can be accessed by clicking "View all MIT badges" in the badge section of the Askbot user profile
div.badges-intro { div.badges-intro {
margin: 20px 0; margin: 20px 0;
} }
......
// Layout // Generic layout styles for the discussion forums
body.askbot { body.askbot {
section.main-content { section.main-content {
......
// Styles for the WYSIWYG question/answer editor
.wmd-panel .wmd-panel
{ {
} }
......
// Styles for different forms in the system
form.answer-form { form.answer-form {
@include box-sizing(border-box); @include box-sizing(border-box);
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
......
// Style for modal boxes that pop up to notify the user of various events
.vote-notification { .vote-notification {
background-color: darken($mit-red, 7%); background-color: darken($mit-red, 7%);
@include border-radius(4px); @include border-radius(4px);
......
// Style for the user profile view
body.user-profile-page { body.user-profile-page {
section.questions { section.questions {
......
// Styles for the single question view
div.question-header { div.question-header {
div.official-stamp { div.official-stamp {
......
// Styles for the default question list view
div.question-list-header { div.question-list-header {
display: block; display: block;
margin-bottom: 0px; margin-bottom: 0px;
......
// Styles for the Askbot sidebar
div.discussion-wrapper aside { div.discussion-wrapper aside {
@extend .sidebar; @extend .sidebar;
border-left: 1px solid #d3d3d3; border-left: 1px solid #d3d3d3;
......
// Styles for the question tags
ul.tags { ul.tags {
list-style: none; list-style: none;
display: inline; display: inline;
......
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