Skip to content

Commit 6380be8

Browse files
committed
Added coloration separation to link selection
1 parent 7eee9bc commit 6380be8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/studio/add-link.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
<div class="form-group col-lg-8">
1818
<label for="exampleFormControlSelect1">Button*</label>
1919
<select class="form-control" name="button">
20-
<option> custom </option>
21-
<option> custom_website </option>
20+
<option style="background-color:#ffe8e4;"> custom </option>
21+
<option style="background-color:#ffe8e4;"> custom_website </option>
2222
@foreach($buttons as $button)
2323
@if (!in_array($button->name, ['custom', 'custom_website', 'heading', 'space']))
2424
<option> {{ $button->name }} </option>
2525
@endif
2626
@endforeach
27-
<option> heading </option>
28-
<option> space </option>
27+
<option style="background-color:#ebebeb;"> heading </option>
28+
<option style="background-color:#ebebeb;"> space </option>
2929
</select>
3030
<br>
3131
<label>* Required fields</label><br>

0 commit comments

Comments
 (0)