Added coloration separation to link selection

This commit is contained in:
Julian Prieber 2022-08-02 11:40:59 +02:00
parent 7eee9bc1a2
commit 6380be8cb5
1 changed files with 4 additions and 4 deletions

View File

@ -17,15 +17,15 @@
<div class="form-group col-lg-8"> <div class="form-group col-lg-8">
<label for="exampleFormControlSelect1">Button*</label> <label for="exampleFormControlSelect1">Button*</label>
<select class="form-control" name="button"> <select class="form-control" name="button">
<option> custom </option> <option style="background-color:#ffe8e4;"> custom </option>
<option> custom_website </option> <option style="background-color:#ffe8e4;"> custom_website </option>
@foreach($buttons as $button) @foreach($buttons as $button)
@if (!in_array($button->name, ['custom', 'custom_website', 'heading', 'space'])) @if (!in_array($button->name, ['custom', 'custom_website', 'heading', 'space']))
<option> {{ $button->name }} </option> <option> {{ $button->name }} </option>
@endif @endif
@endforeach @endforeach
<option> heading </option> <option style="background-color:#ebebeb;"> heading </option>
<option> space </option> <option style="background-color:#ebebeb;"> space </option>
</select> </select>
<br> <br>
<label>* Required fields</label><br> <label>* Required fields</label><br>