Commit f6f4a596 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch...

Merge branch '218784-assignees-avatar-disappear-on-related-merge-requests-section-disappears-on-large-screens' into 'master'

Fixed unintentional hiding of assignees on large monitors

See merge request gitlab-org/gitlab!32891
parents 636ff7c4 b871bb90
...@@ -23,6 +23,11 @@ $item-remove-button-space: 42px; ...@@ -23,6 +23,11 @@ $item-remove-button-space: 42px;
.sortable-link { .sortable-link {
white-space: normal; white-space: normal;
} }
.item-assignees .avatar {
height: $gl-padding;
width: $gl-padding;
}
} }
.item-body { .item-body {
...@@ -276,10 +281,6 @@ $item-remove-button-space: 42px; ...@@ -276,10 +281,6 @@ $item-remove-button-space: 42px;
/* Small devices (landscape phones, 768px and up) */ /* Small devices (landscape phones, 768px and up) */
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {
.item-body .item-contents {
max-width: 95%;
}
.related-items-tree .item-contents, .related-items-tree .item-contents,
.item-body .item-title { .item-body .item-title {
max-width: 100%; max-width: 100%;
...@@ -348,6 +349,11 @@ $item-remove-button-space: 42px; ...@@ -348,6 +349,11 @@ $item-remove-button-space: 42px;
} }
.item-assignees { .item-assignees {
.avatar {
height: $gl-padding-24;
width: $gl-padding-24;
}
.avatar-counter { .avatar-counter {
height: $gl-padding-24; height: $gl-padding-24;
min-width: $gl-padding-24; min-width: $gl-padding-24;
...@@ -366,6 +372,10 @@ $item-remove-button-space: 42px; ...@@ -366,6 +372,10 @@ $item-remove-button-space: 42px;
.sortable-link { .sortable-link {
line-height: 1.3; line-height: 1.3;
} }
.item-info-area {
flex-basis: auto;
}
} }
@media only screen and (min-width: 1500px) { @media only screen and (min-width: 1500px) {
......
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