33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
<div class="card shadow-sm rounded">
|
|
<div class="card-header bg-light bg-opacity-25">
|
|
<div class="d-flex justify-content-between align-items-center mt-2">
|
|
<div class="col-2 d-flex justify-content-between">
|
|
<h5>Area frame</h5>
|
|
</div>
|
|
@if (SashGroupList.Count == 0 && SplitList.Count == 0)
|
|
{
|
|
<div class="col d-flex justify-content-between">
|
|
<div class="input-group mb-2 justify-content-center">
|
|
<button class="btn btn-outline-secondary btn-sm" @onclick="RaiseAddSash">Aggiungi sash</button>
|
|
</div>
|
|
</div>
|
|
}
|
|
@if (!(CurrFrameWindow.AreaList[0] is Split))
|
|
{
|
|
<div class="col d-flex justify-content-between">
|
|
<div class="input-group mb-2 justify-content-center">
|
|
<button class="btn btn-outline-secondary btn-sm" @onclick="RaiseAddSplit">Aggiungi split</button>
|
|
</div>
|
|
</div>
|
|
}
|
|
@if (CurrFrameWindow.AreaList[0] is Fill)
|
|
{
|
|
<div class="col d-flex justify-content-between">
|
|
<div class="input-group mb-2 justify-content-center">
|
|
<button class="btn btn-outline-secondary btn-sm" @onclick="RaiseAddInglesina">Aggiungi inglesina</button>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div> |