mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 17:33:49 +01:00
- Set a max-width on buttons so we can let them flex
- Fix missing button label
This commit is contained in:
parent
637bd9fe5b
commit
25ba3e477a
@ -30,6 +30,7 @@ export class Et2Button extends Et2InputWidget(SlotMixin(LionButton))
|
|||||||
/* These should probably come from somewhere else */
|
/* These should probably come from somewhere else */
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background-color: #e6e6e6;
|
background-color: #e6e6e6;
|
||||||
|
max-width: 125px;
|
||||||
}
|
}
|
||||||
:host([readonly]) {
|
:host([readonly]) {
|
||||||
display: none;
|
display: none;
|
||||||
@ -138,7 +139,7 @@ export class Et2Button extends Et2InputWidget(SlotMixin(LionButton))
|
|||||||
return html`
|
return html`
|
||||||
<div class="button-content et2_button" id="${this._buttonId}">
|
<div class="button-content et2_button" id="${this._buttonId}">
|
||||||
<slot name="icon"></slot>
|
<slot name="icon"></slot>
|
||||||
<slot></slot>
|
<slot>${this._label}</slot>
|
||||||
</div> `;
|
</div> `;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user