2016-12-08 10:53:29 -05:00
|
|
|
.commit-description {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 10px;
|
|
|
|
word-break: normal;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.js-details-expand {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-box {
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
padding: $gl-padding 0;
|
|
|
|
|
|
|
|
.commit-title {
|
|
|
|
margin: 0;
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2016-12-08 10:53:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.commit-description {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-hash-full {
|
|
|
|
@media (max-width: $screen-sm-max) {
|
|
|
|
width: 80px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-15 20:44:31 -04:00
|
|
|
.pipeline-info {
|
|
|
|
.status-icon-container {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 3px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mr-widget-pipeline-graph {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 0 -6px 0 0;
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
margin-top: 11px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.branch-info .commit-icon {
|
|
|
|
margin-right: 3px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
top: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-08 10:53:29 -05:00
|
|
|
/*
|
|
|
|
* Commit message textarea for web editor and
|
|
|
|
* custom merge request message
|
|
|
|
*/
|
|
|
|
.commit-message-container {
|
|
|
|
background-color: $body-bg;
|
|
|
|
position: relative;
|
|
|
|
font-family: $monospace_font;
|
|
|
|
$left: 12px;
|
|
|
|
overflow: hidden; // See https://gitlab.com/gitlab-org/gitlab-ce/issues/13987
|
|
|
|
.max-width-marker {
|
|
|
|
width: 72ch;
|
|
|
|
color: $commit-max-width-marker-color;
|
|
|
|
font-family: inherit;
|
|
|
|
left: $left;
|
|
|
|
height: 100%;
|
|
|
|
border-right: 1px solid mix($input-border, $white-light);
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2016-12-09 11:18:19 -05:00
|
|
|
textarea {
|
2016-12-08 10:53:29 -05:00
|
|
|
background-color: $commit-message-text-area-bg;
|
|
|
|
font-family: inherit;
|
|
|
|
padding-left: $left;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-30 16:30:06 -04:00
|
|
|
.commits-compare-switch {
|
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;
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
2016-11-30 08:25:25 -05:00
|
|
|
border-bottom: 1px solid $gray-darker;
|
2017-02-27 22:31:21 -05:00
|
|
|
border-top: 1px solid $gray-darker;
|
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 {
|
|
|
|
.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 {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2013-09-10 03:17:15 -04:00
|
|
|
}
|
2016-10-18 20:41:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-expander {
|
|
|
|
display: inline-block;
|
2017-04-16 05:42:08 -04:00
|
|
|
background: $white-light;
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color-secondary;
|
2016-10-18 20:41:29 -04:00
|
|
|
padding: 0 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid $border-gray-dark;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
margin-left: 5px;
|
2017-03-18 08:01:00 -04:00
|
|
|
font-size: $gl-font-size;
|
|
|
|
line-height: $gl-font-size;
|
|
|
|
outline: none;
|
2016-10-18 20:41:29 -04:00
|
|
|
|
2017-04-16 05:42:08 -04:00
|
|
|
&.open {
|
|
|
|
background: $gray-light;
|
|
|
|
box-shadow: inset 0 0 2px rgba($black, 0.2);
|
|
|
|
}
|
|
|
|
|
2016-10-18 20:41:29 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: darken($gray-light, 10%);
|
|
|
|
text-decoration: none;
|
2013-09-10 06:15:49 -04:00
|
|
|
}
|
2013-10-13 04:00:51 -04:00
|
|
|
}
|
2014-06-14 12:02:16 -04:00
|
|
|
|
2017-02-27 22:31:21 -05:00
|
|
|
.commit.flex-list {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-cell {
|
|
|
|
width: 46px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-detail {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
.merge-request-branches & {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-content {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
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-06-08 05:32:54 -04:00
|
|
|
font-size: 0;
|
|
|
|
}
|
2015-11-02 10:39:24 -05:00
|
|
|
|
2016-07-26 15:25:42 -04:00
|
|
|
.ci-status-link {
|
|
|
|
display: inline-block;
|
2016-11-10 10:17:51 -05:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2016-07-26 15:25:42 -04:00
|
|
|
}
|
|
|
|
|
2016-10-24 16:22:06 -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
|
|
|
|
2017-05-11 11:47:44 -04:00
|
|
|
.commit-sha {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2016-05-24 03:28:18 -04:00
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-11-09 13:20:32 -05:00
|
|
|
.commit,
|
|
|
|
.generic_commit_status {
|
2015-02-20 00:55:47 -05:00
|
|
|
|
2016-05-24 09:00:49 -04:00
|
|
|
a,
|
|
|
|
button {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-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
|
|
|
|
|
|
|
.commit-row-description {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 10px 15px;
|
2016-05-24 09:00:49 -04:00
|
|
|
margin: 10px 0;
|
2016-08-19 11:39:18 -04:00
|
|
|
background: $gray-light;
|
2015-02-20 00:55:47 -05:00
|
|
|
display: none;
|
2017-06-06 19:27:50 -04:00
|
|
|
white-space: pre-wrap;
|
2016-08-19 11:40:21 -04:00
|
|
|
word-break: normal;
|
2015-02-20 00:55:47 -05:00
|
|
|
|
|
|
|
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 {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2016-03-29 07:43:33 -04:00
|
|
|
}
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.inline-commit {
|
|
|
|
.commit-row-title {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.committed_ago {
|
|
|
|
@extend .cgray;
|
2017-07-12 00:59:39 -04:00
|
|
|
float: right;
|
2015-02-20 00:55:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-20 21:34:19 -04:00
|
|
|
|
2015-11-05 07:49:34 -05:00
|
|
|
.branch-commit {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-11-01 06:15:47 -04:00
|
|
|
.commit-icon {
|
|
|
|
text-align: center;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
vertical-align: middle;
|
2016-12-30 15:18:27 -05:00
|
|
|
fill: $gl-text-color-secondary;
|
2016-11-01 06:15:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-11 11:47:44 -04:00
|
|
|
.commit-sha {
|
2016-11-01 06:15:47 -04:00
|
|
|
color: $gl-link-color;
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:22:06 -04:00
|
|
|
.commit-row-message {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2015-11-05 07:49:34 -05:00
|
|
|
}
|
|
|
|
}
|