2015-02-19 23:45:21 -05:00
|
|
|
.commit-title{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-author, .commit-committer{
|
|
|
|
display: block;
|
|
|
|
color: #999;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-author strong, .commit-committer strong{
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-description {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-info-row {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
.avatar {
|
|
|
|
@extend .avatar-inline;
|
|
|
|
}
|
|
|
|
.commit-committer-link,
|
|
|
|
.commit-author-link {
|
|
|
|
color: #444;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-box {
|
2016-01-14 06:31:31 -05:00
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
|
2015-02-19 23:45:21 -05:00
|
|
|
.commit-title {
|
|
|
|
margin: 0;
|
2015-12-02 08:52:36 -05:00
|
|
|
font-size: 23px;
|
|
|
|
color: #313236;
|
2015-02-19 23:45:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.commit-description {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-stats {
|
2015-10-01 06:44:55 -04:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
|
|
li {
|
2016-03-16 19:29:47 -04:00
|
|
|
padding: 3px 0;
|
2015-11-18 09:15:47 -05:00
|
|
|
line-height: 20px;
|
2015-10-01 06:44:55 -04:00
|
|
|
}
|
|
|
|
}
|
2015-02-19 23:45:21 -05:00
|
|
|
.new-file {
|
|
|
|
a {
|
2015-10-01 06:55:11 -04:00
|
|
|
color: $gl-text-green;
|
2015-02-19 23:45:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.renamed-file {
|
2015-10-01 06:44:55 -04:00
|
|
|
a {
|
2015-10-01 06:55:11 -04:00
|
|
|
color: $gl-text-orange;
|
2015-02-19 23:45:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.deleted-file {
|
|
|
|
a {
|
2015-10-01 06:55:11 -04:00
|
|
|
color: $gl-text-red;
|
2015-02-19 23:45:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.edit-file{
|
2015-10-01 06:44:55 -04:00
|
|
|
a {
|
|
|
|
color: $gl-text-color;
|
2015-02-19 23:45:21 -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;
|
2016-03-10 14:31:21 -05:00
|
|
|
overflow: hidden; // See https://gitlab.com/gitlab-org/gitlab-ce/issues/13987
|
2015-02-19 23:45:21 -05:00
|
|
|
.max-width-marker {
|
|
|
|
width: 72ch;
|
|
|
|
color: rgba(0, 0, 0, 0.0);
|
|
|
|
font-family: inherit;
|
|
|
|
left: $left;
|
|
|
|
height: 100%;
|
|
|
|
border-right: 1px solid mix($input-border, white);
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
> textarea {
|
|
|
|
background-color: rgba(0, 0, 0, 0.0);
|
|
|
|
font-family: inherit;
|
|
|
|
padding-left: $left;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
}
|