mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
1ef4fe8a6b
The diff display is rather slow now, probably because everything is put into one big pre tag. Before we can fix this, we have to parse the diff better. For now, just display a message.
38 lines
461 B
CSS
38 lines
461 B
CSS
#commit_header {
|
|
width: 100%;
|
|
font-family: Helvetica;
|
|
font-size: 12px;
|
|
}
|
|
.property_name {
|
|
width: 50px;
|
|
color:#7F7F7F;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
#message {
|
|
font-family: Helvetica;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#details {
|
|
font-family: Monaco;
|
|
font-size: 10px;
|
|
overflow: hidden;
|
|
width: 600px;
|
|
}
|
|
hr {
|
|
border: 0;
|
|
height: 1px;
|
|
width: 80%;
|
|
background-color: #999;
|
|
}
|
|
|
|
pre {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
pre code {
|
|
display: table-cell;
|
|
width: 100%;
|
|
}
|