feature(BuildCalc) Added reset button, can change micro delay, and can alter timing interval again
This commit is contained in:
@@ -77,16 +77,16 @@
|
||||
Border: <input type="color" value="@info_border" @onchange="e => info_border = e.Value!.ToString()!"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="color info_secondary">
|
||||
<div>Info Secondary</div>
|
||||
<div>
|
||||
Base: <input type="color" value="@info_secondary" @onchange="e => info_secondary = e.Value!.ToString()!"/>
|
||||
</div>
|
||||
<div>
|
||||
Border: <input type="color" value="@info_secondary_border" @onchange="e => info_secondary_border = e.Value!.ToString()!"/>
|
||||
</div>
|
||||
|
||||
<div class="color info_secondary">
|
||||
<div>Info Secondary</div>
|
||||
<div>
|
||||
Base: <input type="color" value="@info_secondary" @onchange="e => info_secondary = e.Value!.ToString()!"/>
|
||||
</div>
|
||||
<div>
|
||||
Border: <input type="color" value="@info_secondary_border" @onchange="e => info_secondary_border = e.Value!.ToString()!"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
@@ -183,6 +183,6 @@
|
||||
string info_border = "#210b36";
|
||||
string info_secondary = "#4c3e59";
|
||||
string info_secondary_border = "#7e58a2";
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -6,15 +6,15 @@
|
||||
Group specfic webpages. Each webpage link is used to navigate to that specific webpage. If on the webpage, the link turns dark gray. It can be clicked again to leave the page and return to home.
|
||||
</Description>
|
||||
<Example>
|
||||
<NavSectionComponent Section=@(new WebSectionModel { Name = "Example Section" })
|
||||
Children=@(new List<WebPageModel> { new() { Name = "Example Page", Href = "immortal-makingof", IsPrivate = "False" }, new() { Name = "Database", Href = "immortal-database", IsPrivate = "False" } })>
|
||||
</NavSectionComponent>
|
||||
<DesktopNavSectionComponent Section=@(new WebSectionModel { Name = "Example Section" })
|
||||
Children=@(new List<WebPageModel> { new() { Name = "Example Page", Href = "immortal-makingof", IsPrivate = "False" }, new() { Name = "Database", Href = "immortal-database", IsPrivate = "False" } })>
|
||||
</DesktopNavSectionComponent>
|
||||
</Example>
|
||||
<Usage>
|
||||
<CodeComponent>
|
||||
<NavSectionComponent Section=@@(new WebSectionModel{Name = "Example Section"})
|
||||
<DesktopNavSectionComponent Section=@@(new WebSectionModel{Name = "Example Section"})
|
||||
Children=@@(new List<WebPageModel>{new WebPageModel{Name="Example Page", Href = "immortal-makingof", IsPrivate = false}, new WebPageModel{Name="Database", Href = "immortal-database", IsPrivate = false}})>
|
||||
</NavSectionComponent>
|
||||
</DesktopNavSectionComponent>
|
||||
</CodeComponent>
|
||||
</Usage>
|
||||
<Code>
|
||||
|
||||
Reference in New Issue
Block a user