mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
e75b2fe82f
The following things have changed: * Moved the gravatar icon to the right * Do not load default image for gravatar to speed up loading of history view * Changed the notifier ** New spinner ** New location ** Colour coded for success / failure * Fonts changed * New button replacing "paste" --> "Gistie it"
133 lines
1.7 KiB
CSS
133 lines
1.7 KiB
CSS
body {
|
|
font-family: 'Lucida Grande';
|
|
}
|
|
|
|
#commit_header {
|
|
width: 100%;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#commit_header td {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
#notification {
|
|
margin: 5px;
|
|
padding: 3px;
|
|
clear: both;
|
|
|
|
border: 1px solid black;
|
|
background-color: #f3f3f3;
|
|
|
|
text-align: center;
|
|
font-size: 80%;
|
|
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
#notification.success {
|
|
background-color: #CCFF99;
|
|
border: 1px solid #99CC66;
|
|
}
|
|
|
|
#notification.fail {
|
|
background-color: #ff9999;
|
|
border: 1px solid #cc6666;
|
|
}
|
|
|
|
#rightcontent {
|
|
float: right;
|
|
}
|
|
|
|
#buttons {
|
|
float: left;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
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 {
|
|
margin: 5px;
|
|
padding: 2px;
|
|
width: 60px;
|
|
height: 60px;
|
|
|
|
border: solid gray 1px;
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
.property_name {
|
|
width: 50px;
|
|
color:#7F7F7F;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#message {
|
|
font-family: Helvetica;
|
|
margin-left: 0px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#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: 5px;
|
|
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 {
|
|
font-weight: bold;
|
|
} |