gitlab-org--gitlab-foss/app/assets/stylesheets/generic/issue_box.scss
Dmitriy Zaporozhets d39948a8d0
Restore old padding for wiki blocks
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-02-11 21:03:43 +02:00

44 lines
687 B
SCSS

/**
* Issue box:
* Huge block (one per page) for storing title, descripion and other information.
* Used for Issue#show page, MergeRequest#show page etc
*
* CLasses:
* .issue-box - Regular box
*/
.issue-box {
color: #666;
margin:20px 0;
background: #FAFAFA;
border: 1px solid #EEE;
.control-group {
margin-bottom: 0;
}
.title {
font-size: 22px;
font-weight: 500;
line-height: 1.5;
margin: 0;
color: #333;
}
.context {
border: none;
border-top: 1px solid #eee;
}
.description {
border-top: 1px solid #eee;
}
.title, .context, .description {
padding: 15px 25px;
.clearfix {
margin: 0;
}
}
}