Commit 9cc341e2 authored by Simon Knox's avatar Simon Knox

UI consistency fixes for font weight and color

parent 11f672d3
...@@ -56,12 +56,6 @@ ...@@ -56,12 +56,6 @@
</p> </p>
<div v-if="!collapseScope || expanded"> <div v-if="!collapseScope || expanded">
<div class="list-item"> <div class="list-item">
<div
v-if="board.milestone"
slot="currentValue"
>
{{ board.milestone.title }}
</div>
<board-milestone-select <board-milestone-select
:board="board" :board="board"
:milestone-path="milestonePath" :milestone-path="milestonePath"
......
...@@ -65,7 +65,7 @@ export default { ...@@ -65,7 +65,7 @@ export default {
<div class="value issuable-show-labels"> <div class="value issuable-show-labels">
<span <span
v-if="board.labels.length === 0" v-if="board.labels.length === 0"
class="no-value" class="text-secondary"
> >
Any label Any label
</span> </span>
......
...@@ -115,7 +115,10 @@ export default { ...@@ -115,7 +115,10 @@ export default {
</div> </div>
</div> </div>
</div> </div>
<div v-else> <div
v-else
class="text-secondary"
>
{{ anyUserText }} {{ anyUserText }}
</div> </div>
</div> </div>
......
...@@ -44,7 +44,7 @@ export default { ...@@ -44,7 +44,7 @@ export default {
computed: { computed: {
valueClass() { valueClass() {
if (this.value === 'Any Weight') { if (this.value === 'Any Weight') {
return 'placeholder'; return 'text-secondary';
} }
return 'bold'; return 'bold';
}, },
......
...@@ -52,12 +52,10 @@ export default { ...@@ -52,12 +52,10 @@ export default {
class="modal popup-dialog" class="modal popup-dialog"
role="dialog" role="dialog"
tabindex="-1" tabindex="-1"
@click="close"
> >
<div <div
class="modal-dialog modal-md" class="modal-dialog modal-md"
role="document" role="document"
@click.stop
> >
<div class="modal-content"> <div class="modal-content">
<div class="modal-header"> <div class="modal-header">
...@@ -103,6 +101,9 @@ export default { ...@@ -103,6 +101,9 @@ export default {
</div> </div>
</div> </div>
</div> </div>
<div class="modal-backdrop fade in" /> <div
class="modal-backdrop fade in"
@click="close"
/>
</div> </div>
</template> </template>
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
.cred { color: $common-red; } .cred { color: $common-red; }
.cgreen { color: $common-green; } .cgreen { color: $common-green; }
.cdark { color: $common-gray-dark; } .cdark { color: $common-gray-dark; }
.text-secondary {
color: $gl-text-color-secondary;
}
/** COMMON CLASSES **/ /** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; } .prepend-top-0 { margin-top: 0; }
......
...@@ -46,13 +46,6 @@ body.modal-open { ...@@ -46,13 +46,6 @@ body.modal-open {
padding: $gl-padding; padding: $gl-padding;
} }
.modal-header,
.modal-footer {
padding: $gl-padding;
background-color: $gray-light;
border-top: 1px solid $border-color;
}
.modal.popup-dialog { .modal.popup-dialog {
display: block; display: block;
......
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