fix(select-rich): allow hoverable content inside content-wrapper
This commit is contained in:
parent
bc768670ea
commit
eadb0fd971
1 changed files with 12 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { LionButton } from '@lion/button';
|
||||
import { html } from '@lion/core';
|
||||
import { css, html } from '@lion/core';
|
||||
|
||||
/**
|
||||
* LionSelectInvoker: invoker button consuming a selected element
|
||||
|
|
@ -8,6 +8,17 @@ import { html } from '@lion/core';
|
|||
* @extends {LionButton}
|
||||
*/
|
||||
export class LionSelectInvoker extends LionButton {
|
||||
static get styles() {
|
||||
return [
|
||||
super.styles,
|
||||
css`
|
||||
#content-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
`,
|
||||
];
|
||||
}
|
||||
|
||||
static get properties() {
|
||||
return {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue