Merge branch 'dev'
This commit is contained in:
commit
fbeb3743b2
|
|
@ -796,6 +796,7 @@ export function renderModuleLanding(opts: ModuleLandingOptions): string {
|
|||
<div class="rstack-header__left">
|
||||
<a href="/" style="display:flex;align-items:center;margin-right:4px"><img src="/favicon.png" alt="rSpace" class="rstack-header__logo"></a>
|
||||
<rstack-app-switcher current="${escapeAttr(mod.id)}"></rstack-app-switcher>
|
||||
<rstack-space-switcher current="" name="Spaces"></rstack-space-switcher>
|
||||
<a class="rstack-header__demo-btn" href="${demoUrl}">Try Demo</a>
|
||||
</div>
|
||||
<div class="rstack-header__center">
|
||||
|
|
@ -1129,6 +1130,7 @@ export function renderSubPageInfo(opts: SubPageInfoOptions): string {
|
|||
<div class="rstack-header__left">
|
||||
<a href="/" style="display:flex;align-items:center;margin-right:4px"><img src="/favicon.png" alt="rSpace" class="rstack-header__logo"></a>
|
||||
<rstack-app-switcher current="${escapeAttr(mod.id)}"></rstack-app-switcher>
|
||||
<rstack-space-switcher current="" name="Spaces"></rstack-space-switcher>
|
||||
<a class="rstack-header__demo-btn" href="${demoUrl}">Try Demo</a>
|
||||
</div>
|
||||
<div class="rstack-header__center">
|
||||
|
|
|
|||
|
|
@ -310,6 +310,8 @@ const STYLES = `
|
|||
font-size: 0.9rem; font-weight: 600; cursor: pointer;
|
||||
transition: background 0.15s;
|
||||
background: var(--rs-btn-secondary-bg); color: var(--rs-text-primary);
|
||||
white-space: nowrap; min-width: 0; flex-shrink: 1;
|
||||
overflow: hidden; text-overflow: ellipsis;
|
||||
}
|
||||
.trigger:hover { background: var(--rs-bg-hover); }
|
||||
|
||||
|
|
|
|||
|
|
@ -938,6 +938,7 @@ const STYLES = `
|
|||
font-size: 0.9rem; font-weight: 600; cursor: pointer;
|
||||
transition: background 0.15s;
|
||||
background: var(--rs-btn-secondary-bg); color: var(--rs-text-primary);
|
||||
white-space: nowrap; min-width: 0; flex-shrink: 1;
|
||||
}
|
||||
.trigger:hover { background: var(--rs-bg-hover); }
|
||||
.space-name { max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||
|
|
|
|||
|
|
@ -336,9 +336,8 @@ body.rstack-sidebar-open #toolbar {
|
|||
gap: 0;
|
||||
}
|
||||
.rstack-header__left {
|
||||
flex: 0 1 auto;
|
||||
flex: 1 1 0;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
gap: 2px;
|
||||
}
|
||||
.rstack-header__center {
|
||||
|
|
|
|||
Loading…
Reference in New Issue