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{
|
2011-12-01 00:51:04 +01:00
|
|
|
table {
|
|
|
|
border:none;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
}
|
2011-11-12 12:04:43 +01:00
|
|
|
.old_line, .new_line {
|
2011-12-01 00:51:04 +01:00
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
border:none;
|
|
|
|
background:#F7F7F7;
|
|
|
|
color:#333;
|
2011-11-12 12:04:43 +01:00
|
|
|
padding: 0px 5px;
|
|
|
|
border-right: 1px solid #ccc;
|
2011-11-30 23:24:28 +01:00
|
|
|
text-align:right;
|
2011-12-01 00:51:04 +01:00
|
|
|
min-width:35px;
|
|
|
|
max-width:35px;
|
|
|
|
width:35px;
|
|
|
|
a {
|
|
|
|
float:left;
|
|
|
|
width:35px;
|
|
|
|
font-weight:normal;
|
|
|
|
&:hover {
|
|
|
|
text-decoration:underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.line_content {
|
|
|
|
white-space:pre;
|
|
|
|
height:14px;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
border:none;
|
|
|
|
&.new {
|
|
|
|
background: #DFD;
|
|
|
|
}
|
|
|
|
&.old {
|
|
|
|
background: #FDD;
|
|
|
|
}
|
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
|
|
|
}
|
2011-12-01 00:51:04 +01:00
|
|
|
|
|
|
|
/** COMMIT BLOCK **/
|
|
|
|
.commit-title{display: block;}
|
|
|
|
.commit-title{margin-bottom: 10px}
|
|
|
|
.commit-author{color: #999; font-weight: normal; font-style: italic;}
|
|
|
|
.commit-author strong{font-weight: bold; font-style: normal;}
|
|
|
|
|
|
|
|
/** bordered list **/
|
|
|
|
ul.bordered-list {
|
|
|
|
margin:5px 0px;
|
|
|
|
padding:0px;
|
|
|
|
li {
|
2011-12-02 11:57:18 +01:00
|
|
|
padding: 5px 0;
|
2011-12-01 00:51:04 +01:00
|
|
|
border-bottom: 1px solid #EEE;
|
|
|
|
overflow: hidden;
|
|
|
|
display: block;
|
|
|
|
margin:0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.bordered-list li:last-child { border:none }
|