mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-31 21:03:03 +00:00
Merge pull request #1240 from theseyi/misc-fix
fixes issue with delete button droppping to new line in smaller resol…
This commit is contained in:
commit
feaaa1a8d6
@ -43,7 +43,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__identifier-column {
|
&__identifier-column {
|
||||||
width: 35%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__identifier-cell {
|
&__identifier-cell {
|
||||||
@ -112,6 +112,7 @@
|
|||||||
&__add-field {
|
&__add-field {
|
||||||
&#{&} {
|
&#{&} {
|
||||||
font-weight: fw(normal, 4);
|
font-weight: fw(normal, 4);
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -210,6 +211,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__tag-item {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
&__tag-info {
|
&__tag-info {
|
||||||
padding: item-spacing(1);
|
padding: item-spacing(1);
|
||||||
margin-bottom: item-spacing(2);
|
margin-bottom: item-spacing(2);
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
@import 'ember-power-select';
|
@import 'ember-power-select';
|
||||||
@import 'ember-radio-button';
|
@import 'ember-radio-button';
|
||||||
|
@import 'ember-tooltip';
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
.ember-tooltip {
|
||||||
|
z-index: z(dropdown);
|
||||||
|
}
|
@ -193,6 +193,7 @@
|
|||||||
{{#if (and isEditing (not row.isReadonly))}}
|
{{#if (and isEditing (not row.isReadonly))}}
|
||||||
{{#each row.fieldChangeSet as |tag|}}
|
{{#each row.fieldChangeSet as |tag|}}
|
||||||
|
|
||||||
|
<div class="dataset-compliance-fields__tag-item">
|
||||||
{{#basic-dropdown as |tagDrop|}}
|
{{#basic-dropdown as |tagDrop|}}
|
||||||
{{#tagDrop.trigger
|
{{#tagDrop.trigger
|
||||||
class="dataset-compliance-fields__tag-info dataset-compliance-fields__tag-info--editable"}}
|
class="dataset-compliance-fields__tag-info dataset-compliance-fields__tag-info--editable"}}
|
||||||
@ -386,10 +387,10 @@
|
|||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
{{#unless row.hasNoneTag}}
|
{{#unless row.hasNoneTag}}
|
||||||
<br>
|
|
||||||
<button
|
<button
|
||||||
class="nacho-button nacho-button--tertiary dataset-compliance-fields__add-field"
|
class="nacho-button nacho-button--tertiary dataset-compliance-fields__add-field"
|
||||||
onclick={{action row.onAddFieldTag}}>
|
onclick={{action row.onAddFieldTag}}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user