Prefix theme settings with #

This commit is contained in:
James Brooks
2014-12-20 18:34:15 +00:00
parent 6b76cf5dc7
commit ccfab70668

View File

@@ -41,23 +41,38 @@
<fieldset>
<div class='form-group'>
<label>Background Color</label>
<input type='text' class='form-control' name='style.background_color' value='{{ Setting::get("style_background_color") }}' />
<div class='input-group'>
<div class='input-group-addon'>#</div>
<input type='text' class='form-control' maxlength="6" name='style.background_color' value='{{ Setting::get("style_background_color") }}' />
</div>
</div>
<div class='form-group'>
<label>Text Color</label>
<input type='text' class='form-control' name='style.text_color' value='{{ Setting::get("style_text_color") }}' />
<div class='input-group'>
<div class='input-group-addon'>#</div>
<input type='text' class='form-control' maxlength="6" name='style.text_color' value='{{ Setting::get("style_text_color") }}' />
</div>
</div>
<div class='form-group'>
<label>Success Warning Color</label>
<input type='text' class='form-control' name='style.success_warning_color' value='{{ Setting::get("style_success_warning_color") }}' />
<div class='input-group'>
<div class='input-group-addon'>#</div>
<input type='text' class='form-control' maxlength="6" name='style.success_warning_color' value='{{ Setting::get("style_success_warning_color") }}' />
</div>
</div>
<div class='form-group'>
<label>Error Warning Color</label>
<input type='text' class='form-control' name='style.error_warning_color' value='{{ Setting::get("style_error_warning_color") }}' />
<div class='input-group'>
<div class='input-group-addon'>#</div>
<input type='text' class='form-control' maxlength="6" name='style.error_warning_color' value='{{ Setting::get("style_error_warning_color") }}' />
</div>
</div>
<div class='form-group'>
<label>Info Warning Color</label>
<input type='text' class='form-control' name='style.info_warning_color' value='{{ Setting::get("style_info_warning_color") }}' />
<div class='input-group'>
<div class='input-group-addon'>#</div>
<input type='text' class='form-control' name='style.info_warning_color' value='{{ Setting::get("style_info_warning_color") }}' />
</div>
</div>
</fieldset>