-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: default show when first loading * fix: viewer page layout * fix: infinite render loop in FLuentCheckBox
- Loading branch information
Showing
7 changed files
with
71 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,40 @@ | ||
.box { | ||
display: flex; | ||
flex-flow: row; | ||
/* From designer */ | ||
|
||
.container { | ||
display: grid; | ||
grid-template-columns: auto 1fr; | ||
grid-template-rows: auto 1fr; | ||
gap: 0px 0px; | ||
grid-auto-flow: row; | ||
grid-template-areas: | ||
"settings viewer" | ||
"list viewer"; | ||
} | ||
|
||
.list { | ||
grid-area: list; | ||
} | ||
|
||
.viewer { | ||
grid-area: viewer; | ||
} | ||
|
||
.settings { | ||
grid-area: settings; | ||
} | ||
|
||
/* Additional */ | ||
|
||
.container { | ||
height: 100%; | ||
} | ||
|
||
.aside { | ||
flex: 0 1 auto; | ||
.settings { | ||
display: flex; | ||
flex-flow: column; | ||
align-items: flex-start; | ||
} | ||
|
||
.plot { | ||
flex: 1 1 auto; | ||
.list { | ||
overflow: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
.page { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
display: grid; | ||
grid-template-columns: 1fr; | ||
grid-template-rows: 3.5rem calc(100vh - 3.5rem); | ||
gap: 0px 0px; | ||
grid-auto-flow: row; | ||
grid-template-areas: | ||
"siteheader" | ||
"contents"; | ||
} | ||
|
||
.siteheader { | ||
flex: 0 1 auto; | ||
grid-area: siteheader; | ||
background-color: var(--neutral-layer-4); | ||
border-bottom: calc(var(--stroke-width) * 3px) solid var(--accent-fill-rest); | ||
justify-content: flex-start; | ||
height: 3.5rem; | ||
display: flex; | ||
align-items: center; | ||
white-space: nowrap; | ||
padding-left: 1.5rem; | ||
gap: 10px; | ||
} | ||
|
||
main { | ||
height: 100%; | ||
flex: 1 1 auto; | ||
/* background-color: var(--neutral-layer-1); | ||
color: var(--neutral-foreground-rest);*/ | ||
.contents { | ||
grid-area: contents; | ||
overflow: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
<FluentCheckbox @bind-Value:get="Value" @bind-Value:set="ValueChanged" @ref="_checkbox">@ChildContent</FluentCheckbox> | ||
<label> | ||
<input type="checkbox" @bind="CurrentValue" @ref="_checkbox" /> | ||
@ChildContent | ||
</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters