Compare commits
3 commits
434c84ce5c
...
2fcb6e1fae
Author | SHA1 | Date | |
---|---|---|---|
2fcb6e1fae | |||
d438c7c3cc | |||
ce86f2acf7 |
3 changed files with 32 additions and 8 deletions
|
@ -1,4 +1,5 @@
|
|||
@inject CustomAuthenticationStateProvider AuthStateProvider;
|
||||
@using System.Reflection
|
||||
@inject CustomAuthenticationStateProvider AuthStateProvider;
|
||||
@inject State State;
|
||||
<AuthorizeView>
|
||||
<Authorized>
|
||||
|
@ -42,6 +43,10 @@
|
|||
<i class="fa-solid fa-door-open"></i>
|
||||
<span>Logout</span>
|
||||
</a>
|
||||
<a class="row medium-opacity">
|
||||
<i class="fa-solid fa-circle-info tiny"></i>
|
||||
<small>@assembly.Name - @assembly.Version?.ToString()</small>
|
||||
</a>
|
||||
</menu>
|
||||
</button>
|
||||
<small class="s m address"><i class="fa-solid fa-fw fa-at tiny"></i>@State.SelectedAddressName</small>
|
||||
|
@ -76,6 +81,7 @@
|
|||
</AuthorizeView>
|
||||
|
||||
@code {
|
||||
AssemblyName assembly = Assembly.GetExecutingAssembly().GetName();
|
||||
public void changeAddress(AddressResponseData address) {
|
||||
State.SelectedAddress = address;
|
||||
}
|
||||
|
|
|
@ -13,14 +13,19 @@
|
|||
</div>
|
||||
|
||||
<nav>
|
||||
<label class="checkbox">
|
||||
<InputCheckbox @bind-Value="listed"></InputCheckbox>
|
||||
<label class="checkbox" disabled="@loading">
|
||||
<InputCheckbox @bind-Value="listed" disabled="@loading"></InputCheckbox>
|
||||
<span>Include my page in the Now Garden</span>
|
||||
</label>
|
||||
<div class="max"></div>
|
||||
<button class="transparent link" onclick="history.back();">Cancel</button>
|
||||
<button @onclick="Save">
|
||||
<i class="fa-solid fa-floppy-disk"></i> <span>Save</span>
|
||||
<button class="transparent link" onclick="history.back();" disabled="@loading">Cancel</button>
|
||||
<button @onclick="Save" disabled="@loading">
|
||||
@if (loading) {
|
||||
<span>Saving...</span>
|
||||
}
|
||||
else {
|
||||
<i class="fa-solid fa-floppy-disk"></i> <span>Save</span>
|
||||
}
|
||||
</button>
|
||||
</nav>
|
||||
|
||||
|
|
|
@ -238,9 +238,13 @@ dialog {
|
|||
position:absolute;
|
||||
left:0; right:0;
|
||||
top:0; bottom:0;
|
||||
background-color: var(--gray-8);
|
||||
background-image: var(--prami-svg);
|
||||
background-color: var(--surface-container-low);
|
||||
/*background-image: var(--prami-svg);*/
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center bottom;
|
||||
border-radius: 50%;
|
||||
border: 1px dashed var(--gray-4);
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
|
@ -452,3 +456,12 @@ article#directory ul{
|
|||
.markdown-editor > .EasyMDEContainer > .CodeMirror {
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
article {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
nav label {
|
||||
white-space: break-spaces;
|
||||
flex: 1 1 100%;
|
||||
}
|
Loading…
Reference in a new issue