2012-09-24 11:32:51 +02:00
|
|
|
/**
|
|
|
|
* Events labels
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.event_label {
|
2012-09-24 12:33:51 +02:00
|
|
|
&.pushed {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 0 2px;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
|
2012-09-24 12:33:51 +02:00
|
|
|
&.opened {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 0 2px;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
|
2012-09-24 12:33:51 +02:00
|
|
|
&.closed {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 0 2px;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
|
2012-09-24 12:33:51 +02:00
|
|
|
&.merged {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 0 2px;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
|
2012-09-24 12:33:51 +02:00
|
|
|
&.left,
|
|
|
|
&.joined {
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 0 2px;
|
2012-11-23 17:33:43 +01:00
|
|
|
float: none;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dashboard events feed
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.event-item {
|
2012-11-23 17:51:38 +01:00
|
|
|
border-bottom: 1px solid #eee;
|
2012-09-24 11:32:51 +02:00
|
|
|
.event-title {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #333;
|
2012-09-24 11:32:51 +02:00
|
|
|
font-weight: bold;
|
|
|
|
.author_name {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #333;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.event-body {
|
|
|
|
p {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #555;
|
2012-11-10 23:08:42 +01:00
|
|
|
padding-top: 5px;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
2012-09-24 12:33:51 +02:00
|
|
|
.event-info {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #666;
|
2012-09-24 12:33:51 +02:00
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
.avatar {
|
2012-12-14 20:39:55 +01:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
.event_icon {
|
2012-12-14 20:39:55 +01:00
|
|
|
position: relative;
|
2012-09-24 11:32:51 +02:00
|
|
|
float: right;
|
|
|
|
border: 1px solid #EEE;
|
|
|
|
padding: 5px;
|
|
|
|
@include border-radius(5px);
|
|
|
|
background: #F9F9F9;
|
2012-12-14 20:39:55 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
top: -6px;
|
2012-09-24 11:32:51 +02:00
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 20px;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ul {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-left: 50px;
|
|
|
|
margin-bottom: 5px;
|
2012-09-24 11:32:51 +02:00
|
|
|
.avatar {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 18px;
|
|
|
|
margin-top: 3px;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-14 20:39:55 +01:00
|
|
|
padding: 16px 5px;
|
2012-09-24 11:32:51 +02:00
|
|
|
&:last-child { border:none }
|
|
|
|
|
|
|
|
.event_commits {
|
|
|
|
margin-top: 5px;
|
|
|
|
|
2012-09-25 12:14:20 +02:00
|
|
|
li {
|
|
|
|
&.commit {
|
|
|
|
background: transparent;
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 3px;
|
|
|
|
border: none;
|
|
|
|
font-size: 12px;
|
2012-09-25 12:14:20 +02:00
|
|
|
}
|
|
|
|
&.commits-stat {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Push event widget
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.event_lp {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #777;
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 10px;
|
|
|
|
min-height: 22px;
|
2012-10-22 22:37:50 +02:00
|
|
|
border-left: 5px solid #5AB9C3;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-bottom: 20px;
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #f9f9f9;
|
2012-09-24 11:32:51 +02:00
|
|
|
|
|
|
|
.avatar {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 24px;
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
2012-10-22 22:37:50 +02:00
|
|
|
|
|
|
|
.btn-new-mr {
|
|
|
|
@extend .btn-info;
|
|
|
|
@extend .small;
|
|
|
|
@extend .right;
|
|
|
|
margin: -3px;
|
|
|
|
}
|
2012-09-24 11:32:51 +02:00
|
|
|
}
|
2012-11-05 19:12:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Event filter
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.event_filter {
|
|
|
|
position: absolute;
|
|
|
|
width: 40px;
|
2012-11-06 12:47:43 +01:00
|
|
|
margin-left: -50px;
|
2012-11-05 19:12:26 +01:00
|
|
|
|
|
|
|
.filter_icon {
|
|
|
|
float: left;
|
|
|
|
border-left: 3px solid #4bc;
|
|
|
|
padding: 7px;
|
|
|
|
background: #f9f9f9;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 20px;
|
2012-11-05 19:12:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.inactive {
|
|
|
|
border-left: 3px solid #EEE;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|