|
1 | 1 | <header class="bg-white border-bottom py-2 px-3 d-flex align-items-center gap-3 shadow-sm" style="height: 64px; z-index: 1000;"> |
2 | 2 | <div class="d-flex align-items-center gap-2 text-primary"> |
3 | 3 | <i class="bi bi-journal-text fs-4"></i> |
4 | | - <span class="fw-bold fs-5 d-none d-md-block">ClefExplorer</span> |
| 4 | + <span class="fw-bold fs-5 d-none d-md-block">Clef Explorer</span> |
5 | 5 | </div> |
6 | | - |
| 6 | + |
7 | 7 | <div class="flex-grow-1 d-flex justify-content-center"> |
8 | 8 | <div class="input-group shadow-sm" style="max-width: 720px;"> |
9 | 9 | <span class="input-group-text bg-white border-end-0"><i class="bi bi-search text-muted"></i></span> |
10 | | - <input type="text" class="form-control bg-white border-start-0 border-end-0" placeholder="Pesquisar nos logs (mensagem, correlação, exceção)..." |
| 10 | + <input type="text" class="form-control bg-white border-start-0 border-end-0" placeholder="Pesquisar nos logs (mensagem, correlação, exceção)..." |
11 | 11 | value="@TextoPesquisa" @oninput="OnSearchInput"> |
12 | | - @if(!string.IsNullOrEmpty(TextoPesquisa)) |
| 12 | + @if (!string.IsNullOrEmpty(TextoPesquisa)) |
13 | 13 | { |
14 | 14 | <button class="btn btn-white border border-start-0" @onclick="ClearSearch"><i class="bi bi-x"></i></button> |
15 | 15 | } |
|
21 | 21 | </div> |
22 | 22 |
|
23 | 23 | <div class="d-flex align-items-center gap-2"> |
24 | | - <button class="btn btn-light text-primary" @onclick="OnReload" title="Recarregar"> |
| 24 | + @* <button class="btn btn-light text-primary" @onclick="OnReload" title="Recarregar"> |
25 | 25 | <i class="bi bi-arrow-clockwise fs-5"></i> |
26 | | - </button> |
| 26 | + </button> *@ |
27 | 27 | <div class="dropdown"> |
28 | 28 | <button class="btn btn-light text-secondary" data-bs-toggle="dropdown"><i class="bi bi-gear fs-5"></i></button> |
29 | 29 | <ul class="dropdown-menu dropdown-menu-end shadow"> |
|
39 | 39 | @code { |
40 | 40 | [Parameter] public string TextoPesquisa { get; set; } = string.Empty; |
41 | 41 | [Parameter] public EventCallback<string> TextoPesquisaChanged { get; set; } |
42 | | - |
| 42 | + |
43 | 43 | [Parameter] public int QuantidadeRegistros { get; set; } |
44 | 44 | [Parameter] public EventCallback<int> QuantidadeRegistrosChanged { get; set; } |
45 | 45 |
|
|
0 commit comments