2012-05-30 20:02:30 +02:00
|
|
|
/**
|
2012-12-01 13:49:21 +01:00
|
|
|
* Commit file
|
2012-05-30 20:02:30 +02:00
|
|
|
*/
|
2013-01-04 22:35:31 +01:00
|
|
|
.commit-committer-link,
|
|
|
|
.commit-author-link {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #555;
|
|
|
|
&:hover {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.file {
|
2012-11-23 17:51:38 +01:00
|
|
|
border: 1px solid #CCC;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-bottom: 1em;
|
2012-05-30 20:02:30 +02:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.header {
|
2012-11-18 17:41:41 +01:00
|
|
|
@extend .clearfix;
|
|
|
|
padding: 5px 5px 5px 10px;
|
|
|
|
color: #555;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-bottom: 1px solid #CCC;
|
2012-05-30 20:02:30 +02:00
|
|
|
background: #eee;
|
2012-11-23 17:51:38 +01:00
|
|
|
// TODO Replace with linear-gradient mixin
|
2012-05-30 20:02:30 +02:00
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
|
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
|
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
|
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
a{
|
|
|
|
color: $style_color;
|
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-11-18 17:41:41 +01:00
|
|
|
> span {
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 14px;
|
2012-11-18 17:41:41 +01:00
|
|
|
line-height: 30px;
|
|
|
|
}
|
2012-11-19 13:01:40 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
a.view-file{
|
2012-11-18 17:41:41 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2012-11-19 13:01:40 +01:00
|
|
|
|
2012-11-18 17:41:41 +01:00
|
|
|
.commit-short-id{
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-11-18 17:41:41 +01:00
|
|
|
font-size: smaller;
|
|
|
|
}
|
2012-11-19 13:01:40 +01:00
|
|
|
|
2012-11-18 17:41:41 +01:00
|
|
|
.file-mode{
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
.content {
|
2012-11-23 17:33:43 +01:00
|
|
|
overflow: auto;
|
|
|
|
overflow-y: hidden;
|
2012-12-01 13:49:21 +01:00
|
|
|
background: #FFF;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #333;
|
2012-05-30 20:02:30 +02:00
|
|
|
font-size: 12px;
|
2012-07-02 22:08:07 +02:00
|
|
|
.old{
|
|
|
|
span.idiff{
|
2012-11-23 17:51:38 +01:00
|
|
|
background-color: #FAA;
|
2012-07-02 22:08:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.new{
|
|
|
|
span.idiff{
|
2012-11-23 17:51:38 +01:00
|
|
|
background-color: #AFA;
|
2012-07-02 22:08:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-22 22:49:21 +02:00
|
|
|
table {
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
|
|
|
border: none;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2012-10-22 22:49:21 +02:00
|
|
|
td {
|
2012-11-23 17:33:43 +01:00
|
|
|
line-height: 18px;
|
2012-12-01 13:49:21 +01:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.old_line, .new_line {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
|
|
|
background: #EEE;
|
|
|
|
color: #666;
|
|
|
|
padding: 0px 5px;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
text-align: right;
|
|
|
|
min-width: 35px;
|
|
|
|
max-width: 35px;
|
|
|
|
width: 35px;
|
|
|
|
@include user-select(none);
|
|
|
|
a {
|
|
|
|
float: left;
|
|
|
|
width: 35px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #666;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.line_content {
|
|
|
|
white-space: pre;
|
|
|
|
height: 14px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
|
|
|
&.new {
|
|
|
|
background: #CFD;
|
|
|
|
}
|
|
|
|
&.old {
|
|
|
|
background: #FDD;
|
|
|
|
}
|
|
|
|
&.matched {
|
|
|
|
color: #ccc;
|
|
|
|
background: #fafafa;
|
2012-10-22 22:49:21 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
.image {
|
|
|
|
background: #ddd;
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: center;
|
2012-12-01 13:49:21 +01:00
|
|
|
padding: 30px;
|
|
|
|
.wrap{
|
2012-11-18 17:41:41 +01:00
|
|
|
display: inline-block;
|
2012-12-01 13:49:21 +01:00
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.frame {
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #fff;
|
|
|
|
line-height: 0;
|
2012-11-21 18:25:32 +01:00
|
|
|
img{
|
2012-12-01 13:49:21 +01:00
|
|
|
border: 1px solid #FFF;
|
2012-11-21 18:25:32 +01:00
|
|
|
background: url('trans_bg.gif');
|
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
&.deleted {
|
|
|
|
border: 1px solid $deleted;
|
|
|
|
}
|
2012-11-21 18:25:32 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
&.added {
|
|
|
|
border: 1px solid $added;
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
}
|
|
|
|
.image-info{
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 5px 0 0 0;
|
|
|
|
color: grey;
|
|
|
|
}
|
2012-05-30 20:02:30 +02:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.view.swipe{
|
|
|
|
position: relative;
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.swipe-frame{
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.swipe-wrap{
|
|
|
|
overflow: hidden;
|
|
|
|
border-left: 1px solid #999;
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
top: 13px;
|
|
|
|
right: 7px;
|
|
|
|
}
|
|
|
|
.frame{
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
position: absolute;
|
|
|
|
&.deleted{
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
|
|
|
top: 13px;
|
|
|
|
right: 7px;
|
2012-11-18 17:41:41 +01:00
|
|
|
}
|
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
.swipe-bar{
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
width: 15px;
|
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover{
|
|
|
|
.top-handle{
|
|
|
|
background-position: -15px 3px;
|
|
|
|
}
|
|
|
|
.bottom-handle{
|
|
|
|
background-position: -15px -11px;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
.top-handle{
|
|
|
|
display: block;
|
|
|
|
height: 14px;
|
|
|
|
width: 15px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
background: url('swipemode_sprites.gif') 0 3px no-repeat;
|
|
|
|
}
|
|
|
|
.bottom-handle{
|
|
|
|
display: block;
|
|
|
|
height: 14px;
|
|
|
|
width: 15px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
background: url('swipemode_sprites.gif') 0 -11px no-repeat;
|
|
|
|
}
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
} //.view.swipe
|
|
|
|
.view.onion-skin{
|
|
|
|
.onion-skin-frame{
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
2012-07-05 22:19:37 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
.frame.added, .frame.deleted {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
.controls{
|
|
|
|
display: block;
|
|
|
|
height: 14px;
|
|
|
|
width: 300px;
|
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -150px;
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.drag-track{
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 12px;
|
|
|
|
height: 10px;
|
|
|
|
width: 276px;
|
|
|
|
background: url('onion_skin_sprites.gif') -4px -20px repeat-x;
|
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.dragger {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
background: url('onion_skin_sprites.gif') 0px -34px repeat-x;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.transparent {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
right: 0px;
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
background: url('onion_skin_sprites.gif') -2px 0px no-repeat;
|
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.opaque {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 0px;
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
background: url('onion_skin_sprites.gif') -2px -10px no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} //.view.onion-skin
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
.view-modes{
|
2012-05-30 20:02:30 +02:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
|
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
|
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
|
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
ul, li{
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-block;
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2013-02-16 20:24:51 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
li{
|
|
|
|
color: grey;
|
|
|
|
border-left: 1px solid #c1c1c1;
|
|
|
|
padding: 0 12px 0 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
&:first-child{
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
&:hover{
|
2012-11-23 17:33:43 +01:00
|
|
|
text-decoration: underline;
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
2012-12-01 13:49:21 +01:00
|
|
|
&.active{
|
|
|
|
&:hover{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
cursor: default;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
&.disabled{
|
|
|
|
display: none;
|
|
|
|
}
|
2012-05-30 20:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** COMMIT BLOCK **/
|
2012-12-01 13:49:21 +01:00
|
|
|
.commit-title{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.commit-title{
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.commit-author, .commit-committer{
|
|
|
|
display: block;
|
2013-02-16 20:24:51 +01:00
|
|
|
color: #999;
|
|
|
|
font-weight: normal;
|
2012-12-01 13:49:21 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.commit-author strong, .commit-committer strong{
|
2013-02-16 20:24:51 +01:00
|
|
|
font-weight: bold;
|
2012-12-01 13:49:21 +01:00
|
|
|
font-style: normal;
|
|
|
|
}
|
2012-05-30 20:02:30 +02:00
|
|
|
|
2012-06-13 19:02:30 +02:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
/**
|
|
|
|
* COMMIT ROW
|
|
|
|
*/
|
2012-09-24 11:32:51 +02:00
|
|
|
.commit {
|
|
|
|
.browse_code_link_holder {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: right;
|
2012-06-13 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 11:32:51 +02:00
|
|
|
.committed_ago {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: right;
|
2012-06-13 19:02:30 +02:00
|
|
|
@extend .cgray;
|
|
|
|
}
|
2012-07-26 15:14:34 +02:00
|
|
|
|
2012-10-04 23:02:37 +02:00
|
|
|
.notes_count {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: right;
|
2012-10-04 23:02:37 +02:00
|
|
|
margin: -6px 8px 6px;
|
|
|
|
}
|
|
|
|
|
2012-09-24 11:32:51 +02:00
|
|
|
code {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #FCEEC1;
|
2012-11-23 17:33:43 +01:00
|
|
|
color: $style_color;
|
2012-07-26 15:14:34 +02:00
|
|
|
}
|
2012-07-27 23:27:54 +02:00
|
|
|
|
2012-09-24 11:32:51 +02:00
|
|
|
.commit_short_id {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: left;
|
2012-07-27 23:27:54 +02:00
|
|
|
@extend .lined;
|
2012-11-23 17:33:43 +01:00
|
|
|
min-width: 65px;
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-07-27 23:27:54 +02:00
|
|
|
}
|
2012-06-13 19:02:30 +02:00
|
|
|
}
|
2012-08-29 20:23:43 +02:00
|
|
|
|
2012-11-18 17:41:41 +01:00
|
|
|
.file-stats a {
|
|
|
|
color: $style_color;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
2012-08-29 21:29:50 +02:00
|
|
|
|
2012-11-18 17:41:41 +01:00
|
|
|
.file-stats {
|
|
|
|
.new-file{
|
|
|
|
i{
|
|
|
|
color: #1BCF00;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.renamed-file{
|
|
|
|
i{
|
|
|
|
color: #FE9300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.deleted-file{
|
|
|
|
i{
|
|
|
|
color: #FF0000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.edit-file{
|
|
|
|
i{
|
|
|
|
color: #555;
|
2012-08-29 21:29:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-28 15:05:54 +02:00
|
|
|
|
|
|
|
.label_commit {
|
2012-11-25 18:30:18 +01:00
|
|
|
@include border-radius(4px);
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 2px 4px;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 13px;
|
2012-09-28 15:05:54 +02:00
|
|
|
background: #474D57;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #fff;
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-09-28 15:05:54 +02:00
|
|
|
}
|
2012-12-20 14:39:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
.commits-compare-switch{
|
2012-12-19 18:14:05 +01:00
|
|
|
background: url("switch_icon.png") no-repeat center center;
|
2012-12-20 14:39:39 +01:00
|
|
|
width: 16px;
|
|
|
|
height: 18px;
|
|
|
|
text-indent: -9999px;
|
2012-12-19 18:14:05 +01:00
|
|
|
float: left;
|
|
|
|
margin-right: 9px;
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
@include border-radius(4px);
|
|
|
|
padding: 4px;
|
|
|
|
background-color: #EEE;
|
|
|
|
}
|