未验证 提交 4223beff 编写于 作者: P Phil Hughes

changed a link into a button

i18n
上级 5372c2e8
......@@ -18,6 +18,9 @@ export default {
showMergeRequestText() {
return this.currentMergeRequestId && this.viewer === viewerTypes.mr;
},
mergeRequestId() {
return `!${this.currentMergeRequest.iid}`;
},
},
mounted() {
this.$nextTick(() => {
......@@ -57,7 +60,8 @@ export default {
(<a
v-if="currentMergeRequest"
:href="currentMergeRequest.web_url"
>!{{ currentMergeRequest.iid }}</a>)
v-text="mergeRequestId"
></a>)
</template>
</div>
</template>
......
......@@ -127,9 +127,8 @@ export default {
class="context-header ide-context-header dropdown"
ref="mergeRequestDropdown"
>
<a
href="#"
role="button"
<button
type="button"
data-toggle="dropdown"
>
<div
......@@ -185,7 +184,7 @@ export default {
class="ml-auto"
name="chevron-down"
/>
</a>
</button>
<merge-request-dropdown
:show="showMergeRequestsDropdown"
/>
......
......@@ -82,7 +82,7 @@ export default {
<input
type="search"
class="dropdown-input-field"
placeholder="Search merge requests"
:placeholder="__('Search merge requests')"
v-model="search"
@input="searchMergeRequests"
ref="searchInput"
......
......@@ -26,18 +26,24 @@
margin-right: 2px;
width: $contextual-sidebar-width;
a {
> a,
> button {
transition: padding $sidebar-transition-duration;
font-weight: $gl-font-weight-bold;
display: flex;
width: 100%;
align-items: center;
padding: 10px 16px 10px 10px;
color: $gl-text-color;
background-color: transparent;
border: 0;
text-align: left;
&:hover,
a:hover {
&:focus {
background-color: $link-hover-background;
color: $gl-text-color;
outline: 0;
}
}
......
......@@ -458,14 +458,10 @@
width: auto;
margin-right: 0;
a {
> a,
> button {
height: 60px;
}
a:hover,
a:focus {
text-decoration: none;
}
}
.projects-sidebar {
......@@ -1302,6 +1298,10 @@
.dropdown-input {
padding-left: $gl-padding;
padding-right: $gl-padding;
.fa {
right: 26px;
}
}
.btn-link {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册