Skip to content

Commit 5ce8780

Browse files
committed
fix(titlebar): style for overlay mode
1 parent 89d7e53 commit 5ce8780

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

packages/titlebar/src/renderer.ts

+12-3
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,15 @@ const SHADOW_ROOT_CSS = `
148148
}
149149
`
150150

151+
const OVERLAY_HOST_CSS = `
152+
:host {
153+
position: absolute;
154+
right: 0;
155+
top: 0;
156+
z-index: 10000;
157+
}
158+
`
159+
151160
export default class TitleBar extends HTMLElement {
152161
constructor() {
153162
super()
@@ -156,14 +165,14 @@ export default class TitleBar extends HTMLElement {
156165
connectedCallback(): void {
157166
const shadow = this.attachShadow({ mode: 'open' })
158167

168+
const overlay = this.hasAttribute('overlay')
169+
159170
const style = document.createElement('style')
160-
style.textContent = SHADOW_ROOT_CSS
171+
style.textContent = SHADOW_ROOT_CSS + (overlay ? OVERLAY_HOST_CSS : '')
161172
shadow.appendChild(style)
162173

163174
const isMacintosh = core.process.platform === 'darwin'
164175

165-
const overlay = this.hasAttribute('overlay')
166-
167176
if (!overlay) {
168177
const el = document.createElement('div')
169178
el.classList.add('titlebar__drag-region')

0 commit comments

Comments
 (0)