web: fix overflow on modalbutton
This commit is contained in:
parent
57925ed60a
commit
22ad850e6c
|
@ -24,10 +24,10 @@ export class ModalButton extends LitElement {
|
|||
:host {
|
||||
text-align: left;
|
||||
}
|
||||
::slotted(*) {
|
||||
.pf-c-modal-box.pf-m-lg {
|
||||
overflow-y: auto;
|
||||
}
|
||||
.pf-c-page__main-section {
|
||||
.pf-c-modal-box > .pf-c-button + * {
|
||||
margin-right: 0;
|
||||
}
|
||||
`
|
||||
|
|
|
@ -57,13 +57,13 @@ export class OutpostListPage extends TablePage<Outpost> {
|
|||
${gettext("Edit")}
|
||||
</ak-spinner-button>
|
||||
<div slot="modal"></div>
|
||||
</ak-modal-button>
|
||||
</ak-modal-button>
|
||||
<ak-modal-button href="${Outpost.adminUrl(`${item.pk}/delete`)}">
|
||||
<ak-spinner-button slot="trigger" class="pf-m-danger">
|
||||
${gettext("Delete")}
|
||||
</ak-spinner-button>
|
||||
<div slot="modal"></div>
|
||||
</ak-modal-button>
|
||||
</ak-modal-button>
|
||||
<ak-modal-button>
|
||||
<button slot="trigger" class="pf-c-button pf-m-tertiary">
|
||||
${gettext("View Deployment Info")}
|
||||
|
|
Reference in New Issue