Changeset 0.27.0 (#166)

This commit is contained in:
2026-03-10 16:38:06 +00:00
parent 400f7dd176
commit 7e4f1581f2
15 changed files with 1721 additions and 520 deletions

View File

@@ -0,0 +1,26 @@
/* v0.27.0: Extension surface container styles.
Provides the mount point layout that extension JS renders into.
Extension-specific CSS is loaded from /surfaces/{id}/css/main.css. */
.extension-surface {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.extension-mount {
flex: 1;
min-height: 0;
overflow: auto;
padding: 0;
position: relative;
}
/* Extension surfaces get the same user-menu positioning as other surfaces */
.extension-surface .user-menu-container {
position: absolute;
top: 8px;
right: 8px;
z-index: 100;
}