mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
36 lines
457 B
CSS
36 lines
457 B
CSS
code .delline, code .oldfile {
|
|
background-color: #FEE;
|
|
color: #B00;
|
|
}
|
|
|
|
code .addline, code .newfile {
|
|
background-color: #DFD;
|
|
color: #080;
|
|
}
|
|
code .fileline {
|
|
font-weight: bold;
|
|
}
|
|
|
|
code .fileheader {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
code .hunkheader {
|
|
background-color: #f7f7f7;
|
|
color: #bbb;
|
|
}
|
|
|
|
pre {
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
pre code {
|
|
display: table-cell;
|
|
padding: 9px;
|
|
width: 100%;
|
|
}
|
|
|
|
#CurrentHunk {
|
|
border-left: 5px solid black;
|
|
} |