show button toggle value as primary text color when single project is selected

This commit is contained in:
Dennis Tang 2018-05-06 18:04:25 +02:00
parent b53e544c8e
commit 41f2c1d564
2 changed files with 8 additions and 1 deletions

View file

@ -56,6 +56,9 @@ export default {
computed: {
...mapState(['selectedProject']),
...mapGetters(['hasProject']),
hasOneProject() {
return this.items.length === 1;
},
isDisabled() {
return this.items.length < 2;
},
@ -158,7 +161,7 @@ export default {
:value="selectedProject.projectId"
/>
<dropdown-button
:class="{ 'gl-field-error-outline': hasErrors }"
:class="{ 'gl-field-error-outline': hasErrors, 'read-only': hasOneProject }"
:is-disabled="isDisabled"
:is-loading="isLoading"
:toggle-text="toggleText"

View file

@ -63,6 +63,10 @@
border-radius: $border-radius-base;
white-space: nowrap;
&:disabled.read-only {
color: $gl-text-color !important;
}
&.no-outline {
outline: 0;
}