Commit 9af9ec98 authored by Paul Slaughter's avatar Paul Slaughter

Merge branch '218716-iterate-on-epic-tree-card-spacing' into 'master'

Updated epic tree row styling

Closes #218716

See merge request gitlab-org/gitlab!32873
parents 2f63600e 11b9961c
...@@ -85,7 +85,7 @@ export default { ...@@ -85,7 +85,7 @@ export default {
class="confidential-icon append-right-4 align-self-baseline align-self-md-auto mt-xl-0" class="confidential-icon append-right-4 align-self-baseline align-self-md-auto mt-xl-0"
:aria-label="__('Confidential')" :aria-label="__('Confidential')"
/> />
<a :href="computedPath" class="sortable-link">{{ title }}</a> <a :href="computedPath" class="sortable-link gl-font-weight-normal">{{ title }}</a>
</div> </div>
<!-- Info area: meta, path, and assignees --> <!-- Info area: meta, path, and assignees -->
......
...@@ -73,7 +73,6 @@ $item-remove-button-space: 42px; ...@@ -73,7 +73,6 @@ $item-remove-button-space: 42px;
.sortable-link { .sortable-link {
color: $gray-900; color: $gray-900;
font-weight: normal;
} }
} }
......
---
title: Reduced padding and increased emphasis of titles within the epic tree
merge_request: 32873
author:
type: other
...@@ -151,7 +151,7 @@ export default { ...@@ -151,7 +151,7 @@ export default {
> >
<div class="item-contents d-flex align-items-center flex-wrap flex-grow-1 flex-xl-nowrap"> <div class="item-contents d-flex align-items-center flex-wrap flex-grow-1 flex-xl-nowrap">
<div class="item-title-wrapper flex-grow-1 mr-2"> <div class="item-title-wrapper flex-grow-1 mr-2">
<div class="item-title d-flex mb-0 pt-1 pb-2"> <div class="item-title d-flex mb-0 pt-1 pb-1">
<gl-icon <gl-icon
ref="stateIconMd" ref="stateIconMd"
class="d-block mr-2" class="d-block mr-2"
...@@ -180,13 +180,13 @@ export default { ...@@ -180,13 +180,13 @@ export default {
:aria-label="item.title" :aria-label="item.title"
:title="item.title" :title="item.title"
:href="computedPath" :href="computedPath"
class="sortable-link ws-normal" class="sortable-link ws-normal gl-font-weight-bold"
>{{ item.title }}</gl-link >{{ item.title }}</gl-link
> >
</div> </div>
<div <div
class="item-meta d-flex flex-wrap mt-xl-0 flex-xl-nowrap align-items-center pb-1 pt-2 ml-4" class="item-meta d-flex flex-wrap mt-xl-0 flex-xl-nowrap align-items-center pb-1 pt-1 ml-4"
> >
<span class="mr-3">{{ itemHierarchy }}</span> <span class="mr-3">{{ itemHierarchy }}</span>
<gl-tooltip v-if="isEpic" :target="() => $refs.countBadge"> <gl-tooltip v-if="isEpic" :target="() => $refs.countBadge">
......
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