|
32 | 32 | <EditForm OnValidSubmit="HandleValidSubmit" Model="_inputModel">
|
33 | 33 | <DataAnnotationsValidator />
|
34 | 34 |
|
35 |
| - <div class="form-group mb-4"> |
36 |
| - <label class="font-weight-bold">Product Name</label> |
| 35 | + <div class="form-group mb-5"> |
| 36 | + <label class="text-info font-weight-bold">Product Name</label> |
37 | 37 | <InputText class="form-control" @bind-Value="_inputModel.ProductName" />
|
38 | 38 | <ValidationMessage For="() => _inputModel.ProductName" />
|
39 | 39 | </div>
|
40 | 40 |
|
41 | 41 | @if (!string.IsNullOrWhiteSpace(_base64Icon))
|
42 | 42 | {
|
43 | 43 | <div class="form-group mb-4">
|
44 |
| - <label class="font-weight-bold">Current Icon</label> |
| 44 | + <label class="text-info font-weight-bold">Current Icon</label> |
45 | 45 | <br />
|
46 | 46 | <img class="img-fluid" src="data:image/png;base64,@_base64Icon" />
|
47 | 47 | </div>
|
48 | 48 | }
|
49 | 49 |
|
50 |
| - <div class="form-group mb-4"> |
51 |
| - <label class="font-weight-bold"></label> |
| 50 | + <div class="form-group mb-5"> |
| 51 | + <label class="text-info font-weight-bold">New Icon</label> |
52 | 52 | <InputFile type="file" accept="image/png" class="form-control" OnChange="IconUploadInputChanged" />
|
53 | 53 | </div>
|
54 |
| - <div class="form-group mb-4"> |
55 |
| - <label class="font-weight-bold">Title Foreground</label> |
| 54 | + <div class="form-group mb-5"> |
| 55 | + <label class="text-info font-weight-bold">Title Foreground</label> |
56 | 56 | <ColorPicker @bind-Color="_inputModel.TitleForegroundColor" />
|
57 | 57 | </div>
|
58 |
| - <div class="form-group mb-4"> |
59 |
| - <label class="font-weight-bold">Title Background</label> |
| 58 | + <div class="form-group mb-5"> |
| 59 | + <label class="text-info font-weight-bold">Title Background</label> |
60 | 60 | <ColorPicker @bind-Color="_inputModel.TitleBackgroundColor" />
|
61 | 61 | </div>
|
62 |
| - <div class="form-group mb-2"> |
63 |
| - <label class="font-weight-bold">Button Color</label> |
| 62 | + <div class="form-group mb-5"> |
| 63 | + <label class="text-info font-weight-bold">Button Color</label> |
64 | 64 | <ColorPicker @bind-Color="_inputModel.TitleButtonColor" />
|
65 | 65 | </div>
|
66 | 66 | <div class="form-group text-right">
|
|
0 commit comments