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

195 lines
3.3 KiB
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
}
}
/**
*
* COMMIT SHOw
*
*/
.diff_file {
border:1px solid #CCC;
margin-bottom:1em;
.diff_file_header {
padding:7px 5px;
border-bottom:1px solid #CCC;
background: #eee;
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
span {
font-size:14px;
}
}
.diff_file_content {
overflow:auto;
overflow-y:hidden;
background:#fff;
color:#333;
font-size: 12px;
font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
2012-07-02 22:08:07 +02:00
.old{
span.idiff{
background-color:#FAA;
}
}
.new{
span.idiff{
background-color:#AFA;
}
}
}
.diff_file_content_image {
background:#eee;
text-align:center;
img {
margin:50px;
padding:1px;
max-width:400px;
}
&.diff_image_removed {
img {
border: 1px solid #C00;
}
}
&.diff_image_added {
img {
border: 1px solid #0C0;;
}
}
}
}
.diff_file_content{
table {
border:none;
margin:0px;
padding:0px;
tr {
td {
font-size:12px;
}
}
}
.old_line, .new_line {
margin:0px;
padding:0px;
border:none;
background:#EEE;
color:#666;
padding: 0px 5px;
border-right: 1px solid #ccc;
text-align:right;
min-width:35px;
max-width:35px;
width:35px;
moz-user-select: none;
-khtml-user-select: none;
user-select: none;
a {
float:left;
width:35px;
font-weight:normal;
color:#666;
&:hover {
text-decoration:underline;
}
}
}
.line_content {
white-space:pre;
height:14px;
margin:0px;
padding:0px;
border:none;
&.new {
background: #CFD;
}
&.old {
background: #FDD;
}
&.matched {
color:#ccc;
background:#fafafa;
}
}
}
/** COMMIT BLOCK **/
.commit-title{display: block;}
.commit-title{margin-bottom: 10px}
.commit-author, .commit-committer{display: block;color: #999; font-weight: normal; font-style: italic;}
.commit-author strong, .commit-committer strong{font-weight: bold; font-style: normal;}
2012-06-13 19:02:30 +02:00
/** COMMIT ROW **/
.commit {
@extend .wll;
.browse_code_link_holder {
@extend .span2;
float:right;
}
.committed_ago {
float:right;
@extend .cgray;
}
}