2024-01-18 12:35:25 +00:00
|
|
|
export default {
|
2024-01-22 22:43:46 +00:00
|
|
|
name: 'Underlay',
|
2024-02-11 21:11:28 +00:00
|
|
|
selector: '#content',
|
|
|
|
// Out of tree selector: Most components are laid over underlay, but underlay itself is not part of the DOM tree,
|
|
|
|
// i.e. it's a separate absolutely-positioned component, so we need to treat it differently depending on whether
|
|
|
|
// we are searching for underlay specifically or for whatever is laid on top of it.
|
2024-01-31 15:39:51 +00:00
|
|
|
outOfTreeSelector: '.underlay',
|
2024-01-18 12:35:25 +00:00
|
|
|
validInnerComponents: [
|
2024-02-27 20:02:25 +00:00
|
|
|
'Panel'
|
2024-01-31 23:27:30 +00:00
|
|
|
],
|
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
directives: {
|
|
|
|
background: '#000000',
|
|
|
|
opacity: 0.2
|
|
|
|
}
|
|
|
|
}
|
2024-01-18 12:35:25 +00:00
|
|
|
]
|
|
|
|
}
|