mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-30 20:15:56 +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 {
|
||||
width: 35%;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
&__identifier-cell {
|
||||
@ -112,6 +112,7 @@
|
||||
&__add-field {
|
||||
&#{&} {
|
||||
font-weight: fw(normal, 4);
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@ -210,6 +211,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
&__tag-item {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
&__tag-info {
|
||||
padding: item-spacing(1);
|
||||
margin-bottom: item-spacing(2);
|
||||
|
@ -1,2 +1,3 @@
|
||||
@import 'ember-power-select';
|
||||
@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))}}
|
||||
{{#each row.fieldChangeSet as |tag|}}
|
||||
|
||||
<div class="dataset-compliance-fields__tag-item">
|
||||
{{#basic-dropdown as |tagDrop|}}
|
||||
{{#tagDrop.trigger
|
||||
class="dataset-compliance-fields__tag-info dataset-compliance-fields__tag-info--editable"}}
|
||||
@ -386,10 +387,10 @@
|
||||
</button>
|
||||
</span>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/each}}
|
||||
|
||||
{{#unless row.hasNoneTag}}
|
||||
<br>
|
||||
<button
|
||||
class="nacho-button nacho-button--tertiary dataset-compliance-fields__add-field"
|
||||
onclick={{action row.onAddFieldTag}}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user