gitlab-org--gitlab-foss/app/assets/stylesheets/pages/commits.scss

370 lines
5.6 KiB
SCSS
Raw Normal View History

2016-12-08 10:53:29 -05:00
.commit-title {
display: block;
}
.commit-author,
.commit-committer {
display: block;
color: $commit-committer-color;
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;
word-break: normal;
white-space: pre-wrap;
}
.js-details-expand {
&:hover {
text-decoration: none;
}
}
.ci-status-link {
svg {
overflow: visible;
}
}
.commit-box {
border-top: 1px solid $border-color;
padding: $gl-padding 0;
.commit-title {
margin: 0;
font-size: 23px;
color: $gl-gray-dark;
}
.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;
}
}
.file-stats {
ul {
list-style: none;
margin: 0;
padding: 10px 0;
li {
padding: 3px 0;
line-height: 20px;
}
}
.new-file {
a {
color: $gl-text-green;
}
}
.renamed-file {
a {
color: $gl-text-orange;
}
}
.deleted-file {
a {
color: $gl-text-red;
}
}
.edit-file {
a {
color: $gl-text-color;
}
}
}
/*
* 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;
}
> textarea {
background-color: $commit-message-text-area-bg;
font-family: inherit;
padding-left: $left;
position: relative;
z-index: 2;
}
}
.commits-compare-switch {
@include btn-default;
@include btn-white;
2012-12-19 12:14:05 -05:00
float: left;
margin-right: 9px;
}
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-top: 1px solid $gray-darker;
border-bottom: 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 {
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
}
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-10-18 20:41:29 -04:00
}
.text-expander {
display: inline-block;
background: $gray-light;
color: $gl-gray-light;
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;
line-height: 1;
&:hover {
background-color: darken($gray-light, 10%);
text-decoration: none;
2013-09-10 06:15:49 -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;
margin-left: $gl-padding;
margin-top: 2px;
font-size: 0;
}
2016-07-26 15:25:42 -04:00
.ci-status-link {
display: inline-block;
position: relative;
top: 1px;
2016-07-26 15:25:42 -04:00
}
.btn-clipboard,
.btn-transparent {
padding-left: 0;
padding-right: 0;
}
.btn {
&:not(:first-child) {
margin-left: $gl-padding;
}
2016-05-24 03:28:18 -04:00
}
}
2016-05-24 03:28:18 -04:00
.commit-short-id {
font-family: $monospace_font;
font-weight: 600;
}
.commit,
.generic_commit_status {
2016-05-31 06:40:46 -04:00
padding: 10px 0;
position: relative;
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
}
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
}
2016-12-08 10:53:29 -05:00
.commit-content {
display: inline-block;
2016-05-31 06:04:18 -04:00
@media (min-width: $screen-sm-min) {
max-width: 70%;
}
}
.commit-row-description {
font-size: 14px;
2016-12-12 17:26:21 -05:00
border-left: 1px solid $white-normal;
padding: 10px 15px;
margin: 10px 0;
background: $gray-light;
display: none;
2016-08-19 11:40:21 -04:00
white-space: pre-line;
word-break: normal;
pre {
border: none;
background: inherit;
padding: 0;
margin: 0;
white-space: pre-wrap;
}
2016-03-29 07:43:33 -04:00
a {
color: $gl-dark-link-color;
}
}
.commit-row-info {
color: $gl-gray;
line-height: 1.35;
a {
color: $gl-gray;
}
.avatar {
margin-right: 8px;
}
}
&.inline-commit {
.commit-row-title {
font-size: 13px;
}
.committed_ago {
float: right;
@extend .cgray;
}
}
}
.branch-commit {
color: $gl-gray;
.commit-icon {
text-align: center;
display: inline-block;
svg {
height: 14px;
width: 14px;
vertical-align: middle;
fill: $gl-gray-light;
}
}
2016-11-01 14:39:29 -04:00
.commit-id {
color: $gl-link-color;
}
.commit-row-message {
color: $gl-gray;
}
}
.divergence-graph {
padding: 12px 12px 0 0;
float: right;
.graph-side {
position: relative;
width: 80px;
height: 22px;
padding: 5px 0 13px;
float: left;
.bar {
position: absolute;
height: 4px;
2016-11-30 08:25:25 -05:00
background-color: $divergence-graph-bar-bg;
}
.bar-behind {
right: 0;
border-radius: 3px 0 0 3px;
}
.bar-ahead {
left: 0;
border-radius: 0 3px 3px 0;
}
.count {
padding-top: 6px;
padding-bottom: 0;
font-size: 12px;
2016-11-30 08:25:25 -05:00
color: $gl-title-color;
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;
2016-11-30 08:25:25 -05:00
background-color: $divergence-graph-separator-bg;
}
}