Commit eaff88b3 authored by Simon Knox's avatar Simon Knox

use existing class for btn-link buttons

parent 63ac5f1f
...@@ -54,13 +54,13 @@ export default { ...@@ -54,13 +54,13 @@ export default {
<div class="block labels"> <div class="block labels">
<div class="title append-bottom-10"> <div class="title append-bottom-10">
Labels Labels
<a <button
v-if="canEdit" v-if="canEdit"
class="edit-link pull-right" type="button"
href="#" class="edit-link btn btn-blank pull-right"
> >
Edit Edit
</a> </button>
</div> </div>
<div class="value issuable-show-labels"> <div class="value issuable-show-labels">
<span <span
......
...@@ -71,13 +71,13 @@ export default { ...@@ -71,13 +71,13 @@ export default {
<div class="block milestone"> <div class="block milestone">
<div class="title append-bottom-10"> <div class="title append-bottom-10">
Milestone Milestone
<a <button
v-if="canEdit" v-if="canEdit"
class="edit-link pull-right" type="button"
href="#" class="edit-link btn btn-blank pull-right"
> >
Edit Edit
</a> </button>
</div> </div>
<div <div
class="value" class="value"
......
...@@ -95,13 +95,13 @@ export default { ...@@ -95,13 +95,13 @@ export default {
> >
<div class="title append-bottom-10"> <div class="title append-bottom-10">
{{ label }} {{ label }}
<a <button
v-if="canEdit" v-if="canEdit"
class="js-sidebar-dropdown-toggle edit-link pull-right" type="button"
href="#" class="edit-link btn btn-blank pull-right"
> >
Edit Edit
</a> </button>
</div> </div>
<div class="value"> <div class="value">
<div <div
......
...@@ -74,13 +74,13 @@ export default { ...@@ -74,13 +74,13 @@ export default {
<div class="block weight"> <div class="block weight">
<div class="title append-bottom-10"> <div class="title append-bottom-10">
Weight Weight
<a <button
v-if="canEdit" v-if="canEdit"
class="edit-link pull-right" type="button"
href="#" class="edit-link btn btn-blank pull-right"
> >
Edit Edit
</a> </button>
</div> </div>
<div <div
class="value" class="value"
......
...@@ -305,16 +305,6 @@ h6 { ...@@ -305,16 +305,6 @@ h6 {
font-weight: $gl-font-weight-bold; font-weight: $gl-font-weight-bold;
} }
.edit-link {
color: $gl-text-color;
&:focus,
&:hover {
color: $gl-text-color;
text-decoration: none;
}
}
.light-header { .light-header {
font-weight: $gl-font-weight-bold; font-weight: $gl-font-weight-bold;
} }
......
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