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

48 lines
872 B
SCSS
Raw Normal View History

2011-11-12 12:04:43 +01:00
/** Commit diff view **/
.diff_file {
border:1px solid #CCC;
margin-bottom:1em;
.diff_file_header {
padding:5px 5px;
border-bottom:1px solid #CCC;
background: #eee;
}
.diff_file_content {
overflow:auto;
overflow-y:hidden;
background:#fff;
color:#333;
font-size: 12px;
font-family: 'Courier New', 'andale mono','lucida console',monospace;
}
.diff_file_content_image {
background:#eee;
text-align:center;
img {
padding:100px;
max-width:300px;
}
}
}
.diff_file_content{
.old_line, .new_line {
background:#ECECEC;
color:#777;
2011-11-30 23:24:28 +01:00
width:35px;
2011-11-12 12:04:43 +01:00
float:left;
padding: 0px 5px;
border-right: 1px solid #ccc;
2011-11-30 23:24:28 +01:00
text-align:right;
2011-11-12 12:04:43 +01:00
}
}
2011-11-12 13:45:32 +01:00
pre.commit_message {
white-space: pre-wrap;
2011-11-30 23:24:28 +01:00
font-family: "Helvetica", sans-serif;
color: #555;
font-weight:bold;
font-size:15px;
2011-11-12 13:45:32 +01:00
}