File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,15 @@ const SHADOW_ROOT_CSS = `
148
148
}
149
149
`
150
150
151
+ const OVERLAY_HOST_CSS = `
152
+ :host {
153
+ position: absolute;
154
+ right: 0;
155
+ top: 0;
156
+ z-index: 10000;
157
+ }
158
+ `
159
+
151
160
export default class TitleBar extends HTMLElement {
152
161
constructor ( ) {
153
162
super ( )
@@ -156,14 +165,14 @@ export default class TitleBar extends HTMLElement {
156
165
connectedCallback ( ) : void {
157
166
const shadow = this . attachShadow ( { mode : 'open' } )
158
167
168
+ const overlay = this . hasAttribute ( 'overlay' )
169
+
159
170
const style = document . createElement ( 'style' )
160
- style . textContent = SHADOW_ROOT_CSS
171
+ style . textContent = SHADOW_ROOT_CSS + ( overlay ? OVERLAY_HOST_CSS : '' )
161
172
shadow . appendChild ( style )
162
173
163
174
const isMacintosh = core . process . platform === 'darwin'
164
175
165
- const overlay = this . hasAttribute ( 'overlay' )
166
-
167
176
if ( ! overlay ) {
168
177
const el = document . createElement ( 'div' )
169
178
el . classList . add ( 'titlebar__drag-region' )
You can’t perform that action at this time.
0 commit comments