mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
9a9de9577c
Something in webkit doesn't like the button html element nor the -webkit-appearance: button css tag. Ends up crashing in one of various WebCore::ThemeMac::paint functions. This would crash for anyone on 10.5 with the Gist it button enabled (which it is by default so that means anyone who ran it for the first time). Changing the button back to the way it was before SHA:b557d6b5c6e675216d340d20833f39d0096b7ccc
207 lines
2.4 KiB
CSS
207 lines
2.4 KiB
CSS
body {
|
|
font-family: 'Lucida Grande';
|
|
}
|
|
|
|
#commit_header {
|
|
width: auto;
|
|
font-size: 12px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#commit_header tr {
|
|
vertical-align: top;
|
|
}
|
|
|
|
#authorTable {
|
|
margin: -4px;
|
|
}
|
|
|
|
#rightcontent {
|
|
float: right;
|
|
margin: 5px;
|
|
}
|
|
|
|
#buttons {
|
|
float: left;
|
|
}
|
|
|
|
a.servicebutton {
|
|
display: block;
|
|
width: 80px;
|
|
padding: 2px;
|
|
margin-bottom: 4px;
|
|
|
|
border: 1px solid #3465a4;
|
|
background-color: #cce5ff;
|
|
color: #204a87;
|
|
|
|
font-size: 65%;
|
|
text-decoration: none;
|
|
text-align: center;
|
|
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
.gravatar {
|
|
padding: 0.1em;
|
|
|
|
border: solid gray 1px;
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
.gravatar img {
|
|
width: 2.9em;
|
|
height: 2.9em;
|
|
max-height: 60px;
|
|
max-width: 60px;
|
|
}
|
|
|
|
.property_name {
|
|
width: 6em;
|
|
color:#7F7F7F;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
#message_files {
|
|
margin: 5px;
|
|
padding-left: 1em;
|
|
width: auto;
|
|
}
|
|
|
|
#message {
|
|
font-family: Menlo, Monaco;
|
|
white-space: pre-wrap;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#files {
|
|
margin-top: 1em;
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
#files a {
|
|
color: #666666;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#files a:hover {
|
|
color: #4444ff;
|
|
border-bottom: 1px solid #4444ff;
|
|
}
|
|
|
|
#files img {
|
|
float: left;
|
|
margin-right: 0.5em;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
#files p {
|
|
margin-top: 0.25em;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
|
|
.clear_both {
|
|
clear:both;
|
|
display:block;
|
|
height:1px;
|
|
line-height:0;
|
|
margin:1em;
|
|
visibility:hidden;
|
|
}
|
|
|
|
#details {
|
|
font-family: Monaco;
|
|
font-size: 10px;
|
|
overflow: hidden;
|
|
width: 600px;
|
|
}
|
|
hr {
|
|
border: 0;
|
|
height: 1px;
|
|
margin: 0 8px;
|
|
background-color: #DEDEDE;
|
|
clear: both;
|
|
}
|
|
|
|
a {
|
|
color: rgb(20, 79, 174);
|
|
}
|
|
|
|
a.showdiff {
|
|
text-decoration: none;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.refs {
|
|
font-size: 9px;
|
|
font-family: Helvetica;
|
|
border: 1px solid black;
|
|
margin-right: 2px;
|
|
padding: 1px 3px 1px 3px;
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
.refs.head {
|
|
background-color: #aaf254;
|
|
}
|
|
|
|
.refs.remote {
|
|
background-color: #b2dfff;
|
|
}
|
|
|
|
.refs.tag {
|
|
background-color: #fced4f;
|
|
}
|
|
|
|
.refs.currentBranch {
|
|
background-color: #fca64f;
|
|
}
|
|
|
|
/*
|
|
div.button
|
|
{
|
|
color: #666666;
|
|
|
|
font-size: 60%;
|
|
text-align: center;
|
|
|
|
width: 70px;
|
|
|
|
margin-right: 10px;
|
|
|
|
padding: 2px;
|
|
|
|
float: left;
|
|
clear: both;
|
|
|
|
border: 1px solid;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
div.created
|
|
{
|
|
background-color: #ccffcc;
|
|
border-color: #66ff66;
|
|
}
|
|
|
|
div.changed
|
|
{
|
|
background-color: #ffcc99;
|
|
border-color: #ff9933;
|
|
}
|
|
|
|
div.deleted
|
|
{
|
|
background-color: #ffcccc;
|
|
border-color: #ff6666;
|
|
}
|
|
|
|
div.renamed
|
|
{
|
|
// No colour needed right now.
|
|
}
|
|
*/
|