Skip to content
Snippets Groups Projects
Commit 609d49bc authored by Taurie Davis's avatar Taurie Davis
Browse files

34768 Fix problem with issuable header wrapping when content is too long

parent ae470ae2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -42,8 +42,7 @@
&.avatar-inline {
float: none;
display: inline-block;
margin-left: 4px;
margin-bottom: 2px;
margin-left: 2px;
flex-shrink: 0;
-webkit-flex-shrink: 0;
 
Loading
Loading
Loading
Loading
@@ -3,6 +3,7 @@
border-bottom: 1px solid $border-color;
color: $gl-text-color;
line-height: 34px;
display: flex;
 
a {
color: $gl-text-color;
Loading
Loading
Loading
Loading
@@ -613,6 +613,8 @@
float: none;
display: inline-block;
margin-top: 0;
height: auto;
align-self: center;
 
@media (max-width: $screen-xs-max) {
position: absolute;
Loading
Loading
@@ -626,6 +628,8 @@
padding-left: 45px;
padding-right: 45px;
line-height: 35px;
display: flex;
flex-grow: 1;
 
@media (min-width: $screen-sm-min) {
float: left;
Loading
Loading
@@ -637,11 +641,12 @@
.issuable-actions {
@include new-style-dropdown;
 
padding-top: 10px;
align-self: center;
flex-shrink: 0;
flex: 0 0 auto;
 
@media (min-width: $screen-sm-min) {
float: right;
padding-top: 0;
}
}
 
Loading
Loading
@@ -655,8 +660,9 @@
 
.issuable-meta {
display: inline-block;
line-height: 18px;
font-size: 14px;
line-height: 24px;
align-self: center;
}
 
.js-issuable-selector-wrap {
Loading
Loading
Loading
Loading
@@ -134,11 +134,24 @@ ul.related-merge-requests > li {
}
 
@media (max-width: $screen-xs-max) {
.issue-btn-group {
width: 100%;
.detail-page-header,
.issuable-header {
display: block;
.issuable-meta {
line-height: 18px;
}
}
 
.btn {
.issuable-actions {
margin-top: 10px;
.issue-btn-group {
width: 100%;
.btn {
width: 100%;
}
}
}
}
Loading
Loading
---
title: Fix problem with issuable header wrapping when content is too long
merge_request:
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment