2016-03-30 16:30:06 -04:00
|
|
|
.commits-compare-switch {
|
2015-10-08 07:29:14 -04:00
|
|
|
@include btn-default;
|
|
|
|
@include btn-white;
|
2014-03-06 04:05:00 -05:00
|
|
|
background: image-url("switch_icon.png") no-repeat center center;
|
2012-12-20 08:39:39 -05:00
|
|
|
text-indent: -9999px;
|
2012-12-19 12:14:05 -05:00
|
|
|
float: left;
|
|
|
|
margin-right: 9px;
|
|
|
|
}
|
2013-03-21 16:22:21 -04:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit-header {
|
|
|
|
padding: 5px 10px;
|
|
|
|
background-color: $background-color;
|
2016-06-08 05:32:54 -04:00
|
|
|
border-top: 1px solid #eee;
|
2016-05-25 04:11:47 -04:00
|
|
|
border-bottom: 1px solid #eee;
|
2016-05-24 03:28:18 -04:00
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-width: 0;
|
|
|
|
}
|
2013-09-10 03:17:15 -04:00
|
|
|
}
|
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit-row-title {
|
2016-06-07 11:09:46 -04:00
|
|
|
line-height: 1;
|
2016-06-08 05:32:54 -04:00
|
|
|
margin-bottom: 7px;
|
2014-01-08 05:42:57 -05:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.notes_count {
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
2013-09-10 03:17:15 -04:00
|
|
|
}
|
2013-09-10 06:15:49 -04:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.str-truncated {
|
|
|
|
max-width: 70%;
|
2013-09-10 06:15:49 -04:00
|
|
|
}
|
2015-11-02 10:39:24 -05:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit-row-message {
|
|
|
|
color: $gl-dark-link-color;
|
2013-09-10 03:17:15 -04:00
|
|
|
}
|
2013-09-10 06:15:49 -04:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.text-expander {
|
2016-06-08 05:32:54 -04:00
|
|
|
display: inline-block;
|
2016-05-24 09:00:49 -04:00
|
|
|
background: $gray-light;
|
2016-06-09 05:50:03 -04:00
|
|
|
color: $gl-placeholder-color;
|
2016-05-24 03:28:18 -04:00
|
|
|
padding: 0 5px;
|
|
|
|
cursor: pointer;
|
2016-05-24 09:00:49 -04:00
|
|
|
border: 1px solid $border-gray-dark;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
margin-left: 5px;
|
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
&:hover {
|
2016-05-24 09:00:49 -04:00
|
|
|
background-color: darken($gray-light, 10%);
|
|
|
|
text-decoration: none;
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
2013-09-10 06:15:49 -04:00
|
|
|
}
|
2013-10-13 04:00:51 -04:00
|
|
|
}
|
2014-06-14 12:02:16 -04:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit-actions {
|
2016-05-31 06:04:18 -04:00
|
|
|
@media (min-width: $screen-sm-min) {
|
2016-05-24 03:28:18 -04:00
|
|
|
float: right;
|
2016-05-24 09:00:49 -04:00
|
|
|
margin-left: $gl-padding;
|
2016-06-08 05:32:54 -04:00
|
|
|
margin-top: 2px;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
2015-11-02 10:39:24 -05:00
|
|
|
|
2016-07-08 21:06:12 -04:00
|
|
|
.btn-clipboard, .btn-transparent {
|
2016-06-08 05:32:54 -04:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-06-08 05:32:54 -04:00
|
|
|
.btn {
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: $gl-padding;
|
2016-01-18 15:58:15 -05:00
|
|
|
}
|
2016-05-24 03:28:18 -04:00
|
|
|
}
|
|
|
|
}
|
2016-01-18 15:58:15 -05:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit-short-id {
|
|
|
|
font-family: $monospace_font;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.commit {
|
2016-05-31 06:40:46 -04:00
|
|
|
padding: 10px 0;
|
2016-06-20 12:26:00 -04:00
|
|
|
position: relative;
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-05-31 06:04:18 -04:00
|
|
|
@media (min-width: $screen-sm-min) {
|
2016-06-27 05:59:56 -04:00
|
|
|
padding-left: 46px;
|
2016-05-31 06:04:18 -04:00
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
&:not(:last-child) {
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-05-24 09:00:49 -04:00
|
|
|
a,
|
|
|
|
button {
|
2016-05-24 03:28:18 -04:00
|
|
|
color: $gl-dark-link-color;
|
2016-05-31 06:04:18 -04:00
|
|
|
vertical-align: baseline;
|
2016-05-24 03:28:18 -04:00
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-06-20 12:26:00 -04:00
|
|
|
|
2016-05-24 03:28:18 -04:00
|
|
|
.avatar {
|
2016-06-27 05:59:56 -04:00
|
|
|
margin-left: -46px;
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
|
2016-04-13 11:10:03 -04:00
|
|
|
.item-title {
|
|
|
|
display: inline-block;
|
2016-05-31 06:04:18 -04:00
|
|
|
|
|
|
|
@media (min-width: $screen-sm-min) {
|
|
|
|
max-width: 70%;
|
|
|
|
}
|
2016-04-13 11:10:03 -04:00
|
|
|
}
|
|
|
|
|
2015-02-20 00:55:47 -05:00
|
|
|
.commit-row-description {
|
|
|
|
font-size: 14px;
|
2016-03-15 15:56:28 -04:00
|
|
|
border-left: 1px solid #eee;
|
2015-02-20 00:55:47 -05:00
|
|
|
padding: 10px 15px;
|
2016-05-24 09:00:49 -04:00
|
|
|
margin: 10px 0;
|
2015-02-20 00:55:47 -05:00
|
|
|
background: #f9f9f9;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
pre {
|
|
|
|
border: none;
|
|
|
|
background: inherit;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2016-06-13 21:09:26 -04:00
|
|
|
white-space: pre-wrap;
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
2016-03-29 07:43:33 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $gl-dark-link-color;
|
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.commit-row-info {
|
2015-09-03 09:09:55 -04:00
|
|
|
color: $gl-gray;
|
2016-06-07 11:09:46 -04:00
|
|
|
line-height: 1;
|
2015-02-20 00:55:47 -05:00
|
|
|
|
|
|
|
a {
|
2015-09-03 09:09:55 -04:00
|
|
|
color: $gl-gray;
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
|
2016-03-25 10:40:51 -04:00
|
|
|
.avatar {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.inline-commit {
|
|
|
|
.commit-row-title {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.committed_ago {
|
|
|
|
float: right;
|
|
|
|
@extend .cgray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-20 21:34:19 -04:00
|
|
|
|
2015-11-05 07:49:34 -05:00
|
|
|
.branch-commit {
|
|
|
|
color: $gl-gray;
|
|
|
|
.commit-id, .commit-row-message {
|
|
|
|
color: $gl-gray;
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 10:05:29 -05:00
|
|
|
|
2015-07-20 21:34:19 -04:00
|
|
|
.divergence-graph {
|
|
|
|
padding: 12px 12px 0 0;
|
|
|
|
float: right;
|
2016-01-06 05:40:03 -05:00
|
|
|
|
2015-07-20 21:34:19 -04:00
|
|
|
.graph-side {
|
|
|
|
position: relative;
|
|
|
|
width: 80px;
|
|
|
|
height: 22px;
|
|
|
|
padding: 5px 0 13px;
|
|
|
|
float: left;
|
2016-01-06 05:40:03 -05:00
|
|
|
|
2015-07-20 21:34:19 -04:00
|
|
|
.bar {
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-behind {
|
|
|
|
right: 0;
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-ahead {
|
|
|
|
left: 0;
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
}
|
2016-01-06 05:40:03 -05:00
|
|
|
|
2015-07-20 21:34:19 -04:00
|
|
|
.count {
|
|
|
|
padding-top: 6px;
|
2016-03-16 19:29:47 -04:00
|
|
|
padding-bottom: 0;
|
2015-07-20 21:34:19 -04:00
|
|
|
font-size: 12px;
|
|
|
|
color: #333;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.count-behind {
|
|
|
|
padding-right: 4px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.count-ahead {
|
|
|
|
padding-left: 4px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph-separator {
|
|
|
|
position: relative;
|
|
|
|
width: 1px;
|
|
|
|
height: 18px;
|
|
|
|
margin: 5px 0 0;
|
|
|
|
float: left;
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
}
|