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

357 lines
5.6 KiB
SCSS

.commit-description,
.commit-row-description {
padding: $gl-padding-8 0 $gl-padding-8 $gl-padding-8;
margin-top: $gl-padding-8;
border: 0;
border-radius: unset;
background: none;
word-break: normal;
overflow-x: auto;
border-left: 3px solid $white-dark;
color: $gl-text-color-secondary;
}
.commit-box {
border-top: 1px solid $border-color;
padding: $gl-padding 0;
.commit-title {
margin: 0;
color: $gl-text-color;
}
}
.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 {
.dropdown-menu {
margin-top: 11px;
}
}
}
.branch-info .commit-icon {
svg {
top: 3px;
}
}
/*
* 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;
.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);
position: absolute;
z-index: 1;
}
textarea {
background-color: $commit-message-text-area-bg;
font-family: inherit;
padding-left: $left;
position: relative;
z-index: 2;
}
}
.commit-header {
padding: 5px 10px;
background-color: $gray-light;
border-bottom: 1px solid $gray-darker;
border-top: 1px solid $gray-darker;
font-size: 14px;
&:first-child {
border-top-width: 0;
}
}
.commit-row-title {
.str-truncated {
max-width: 70%;
}
}
.commits-row {
+ .commits-row {
border-top: 1px solid $white-normal;
}
+ .commits-empty {
display: none;
}
}
.text-expander {
display: inline-flex;
background: $white;
color: $gl-text-color-secondary;
padding: 1px $gl-padding-4;
cursor: pointer;
border: 1px solid $border-white-normal;
border-radius: $border-radius-default;
margin-left: 5px;
font-size: 12px;
line-height: $gl-font-size;
outline: none;
&.open {
background-color: darken($gray-light, 10%);
box-shadow: inset 0 0 2px rgba($black, 0.2);
}
&:hover {
background-color: darken($gray-light, 10%);
text-decoration: none;
}
}
.commit.flex-list {
display: flex;
}
.avatar-cell {
img {
margin-right: 0;
}
}
.commit-content {
padding-right: 10px;
white-space: normal;
.commit-title {
display: flex;
align-items: center;
}
.committer {
color: $gl-text-color-tertiary;
.commit-author-link {
color: $gl-text-color;
}
}
}
.commit-actions {
.ci-status-icon svg {
vertical-align: text-bottom;
}
> .ci-status-link,
> .btn,
> .commit-sha-group {
margin-left: $gl-padding;
}
}
.commit-nav-buttons {
margin: 0 0.5rem;
a.btn,
button {
// See: https://gitlab.com/gitlab-org/gitlab-ui/-/issues/730
&:last-child > svg {
margin-left: 0.25rem;
margin-right: 0;
}
}
}
.clipboard-group,
.commit-sha-group {
display: inline-flex;
.label,
.btn:not(.gl-button) {
padding: $gl-vert-padding $gl-btn-padding;
border: 1px $gray-200 solid;
font-size: $gl-font-size;
line-height: $line-height-base;
border-radius: 0;
display: flex;
align-items: center;
}
.label-monospace {
user-select: text;
color: $gl-text-color;
background-color: $gray-light;
}
.btn svg {
top: auto;
fill: $gl-text-color-secondary;
}
:first-child {
border-bottom-left-radius: $border-radius-default;
border-top-left-radius: $border-radius-default;
}
:not(:first-child) {
border-left: 0;
}
:last-child {
border-bottom-right-radius: $border-radius-default;
border-top-right-radius: $border-radius-default;
}
}
.commit,
.generic-commit-status {
a {
color: $gl-text-color;
&.autodevops-badge {
color: $white;
}
}
.commit-row-description {
display: none;
flex: 1;
a {
color: $blue-600;
}
}
&.inline-commit {
.commit-row-title {
font-size: 13px;
}
}
}
.branch-commit {
.commit-icon {
text-align: center;
display: inline-block;
svg {
height: 14px;
width: 14px;
vertical-align: middle;
fill: $gl-text-color-secondary;
}
}
}
.commit,
.generic-commit-status,
.branch-commit {
.commit-sha {
color: $blue-600;
}
}
.gpg-status-box {
padding: 2px 10px;
&:empty {
display: none;
}
&.valid {
@include green-status-color;
}
&.invalid {
@include status-color($gray-dark, color('gray'), $gray-darkest);
border-color: $gray-darkest;
&:not(span):hover {
color: color('gray');
}
}
}
.gpg-popover-certificate-details {
ul {
padding-left: $gl-padding;
}
li.unstyled {
list-style-type: none;
}
}
.gpg-popover-status {
display: flex;
align-items: center;
font-weight: $gl-font-weight-normal;
line-height: 1.5;
}
.gpg-popover-icon {
// same margin as .s32.avatar
margin-right: $btn-side-margin;
&.valid {
svg {
border: 1px solid $brand-success;
fill: $brand-success;
}
}
&.invalid {
svg {
border: 1px solid $gray-darkest;
fill: $gray-darkest;
}
}
svg {
width: 32px;
height: 32px;
border-radius: 50%;
vertical-align: middle;
}
}
.gpg-popover-user-link {
display: flex;
align-items: center;
margin-bottom: $gl-padding / 2;
text-decoration: none;
color: $gl-text-color;
}
.commit .gpg-popover-help-link {
display: block;
color: $link-color;
}
.add-review-item {
.gl-tab-nav-item {
height: 100%;
}
}