gitlabhq/app/assets/stylesheets/sections/commits.scss

55 lines
809 B
SCSS
Raw Normal View History

.commit-box {
@extend .main_box;
2012-04-14 00:46:11 +02:00
.commit-head {
@extend .top_box_content;
2012-04-14 00:46:11 +02:00
.commit-title {
line-height: 26px;
margin:0;
}
2012-04-14 00:46:11 +02:00
.commit-description {
font-size: 14px;
border: none;
background-color: white;
padding-top:10px;
}
2012-04-14 00:46:11 +02:00
.browse-button {
@extend .btn;
@extend .btn-small;
float: right;
}
2012-04-14 00:46:11 +02:00
}
.commit-info {
@extend .middle_box_content;
@extend .clearfix;
.sha-block {
text-align:right;
&:first-child {
padding-bottom:6px;
}
a {
border-bottom: 1px solid #aaa;
margin-left: 9px;
}
}
&.merge-commit .sha-block {
clear: right;
}
.committer {
padding-left: 32px;
}
2012-04-14 00:46:11 +02:00
.avatar {
margin-right: 10px;
}
2012-04-14 00:46:11 +02:00
}
}