Commit 3ca979cd authored by Paul Slaughter's avatar Paul Slaughter

Update commit description styles to monospace font and overflow-x

parent 0050b3df
.commit-description { %commit-description-base {
background: none; padding: 0 0 0 $gl-padding-8;
margin-top: $gl-padding-8;
border: 0; border: 0;
padding: 0; border-radius: unset;
background: none;
word-break: normal; word-break: normal;
white-space: pre-wrap; overflow-x: auto;
border-left: 2px solid $theme-gray-300;
color: $gl-text-color-secondary;
}
.commit-description {
@extend %commit-description-base;
} }
.js-details-expand { .js-details-expand {
...@@ -175,6 +183,7 @@ ...@@ -175,6 +183,7 @@
justify-content: space-between; justify-content: space-between;
align-items: start; align-items: start;
flex-grow: 1; flex-grow: 1;
min-width: 0;
.project_namespace { .project_namespace {
color: $gl-text-color-secondary; color: $gl-text-color-secondary;
...@@ -184,6 +193,7 @@ ...@@ -184,6 +193,7 @@
.commit-content { .commit-content {
padding-right: 10px; padding-right: 10px;
white-space: normal; white-space: normal;
overflow: hidden;
.commit-title { .commit-title {
display: flex; display: flex;
...@@ -274,17 +284,9 @@ ...@@ -274,17 +284,9 @@
} }
.commit-row-description { .commit-row-description {
font-size: 14px; @extend %commit-description-base;
padding: 0 0 0 $gl-padding-8;
border: 0;
display: none; display: none;
white-space: pre-wrap; flex: 1;
word-break: normal;
color: $gl-text-color-secondary;
background: none;
font-family: inherit;
border-left: 2px solid $theme-gray-300;
border-radius: unset;
a { a {
color: $gl-text-color; color: $gl-text-color;
......
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
%h3.commit-title %h3.commit-title
= markdown_field(@commit, :title) = markdown_field(@commit, :title)
- if @commit.description.present? - if @commit.description.present?
.commit-description< %pre.commit-description<
= preserve(markdown_field(@commit, :description)) = preserve(markdown_field(@commit, :description))
.info-well .info-well
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#{ commit_text.html_safe } #{ commit_text.html_safe }
- if commit.description? - if commit.description?
%pre.commit-row-description.js-toggle-content.prepend-top-8.append-bottom-8 %pre.commit-row-description.js-toggle-content.append-bottom-8
= preserve(markdown_field(commit, :description)) = preserve(markdown_field(commit, :description))
.commit-actions.flex-row.d-none.d-sm-flex .commit-actions.flex-row.d-none.d-sm-flex
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
%h3.commit-title %h3.commit-title
= markdown(commit.title, pipeline: :single_line) = markdown(commit.title, pipeline: :single_line)
- if commit.description.present? - if commit.description.present?
.commit-description< %pre.commit-description<
= preserve(markdown(commit.description, pipeline: :single_line)) = preserve(markdown(commit.description, pipeline: :single_line))
.info-well .info-well
......
---
title: Update commit message styles with monospace font and overflow-x
merge_request: 20988
author:
type: changed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment