mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 14:52:24 +09:00
input type=color can not be empty
https://www.w3.org/TR/2012/WD-html5-20120329/states-of-the-type-attribute.html#color-state-type-color
This commit is contained in:
parent
18c5778789
commit
f41e3f5907
9 changed files with 20 additions and 19 deletions
|
|
@ -62,7 +62,7 @@
|
|||
<option value="solid">{$lang->cmd_widget_border_solid}</option>
|
||||
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
|
||||
</select>
|
||||
<input type="color" name="border_top_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
<input type="text" name="border_top_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<option value="solid">{$lang->cmd_widget_border_solid}</option>
|
||||
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
|
||||
</select>
|
||||
<input type="color" name="border_left_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
<input type="text" name="border_left_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
</td>
|
||||
<td style="text-align:right">
|
||||
<input type="number" name="border_right_thick" value="" class="small_input" /> px
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
<option value="solid">{$lang->cmd_widget_border_solid}</option>
|
||||
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
|
||||
</select>
|
||||
<input type="color" name="border_right_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
<input type="text" name="border_right_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -90,12 +90,12 @@
|
|||
<option value="solid">{$lang->cmd_widget_border_solid}</option>
|
||||
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
|
||||
</select>
|
||||
<input type="color" name="border_bottom_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
<input type="text" name="border_bottom_color" value="" class="color_input rx-spectrum" maxlength="7"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->cmd_widget_background_color}</th>
|
||||
<td colspan="2"><input type="color" name="background_color" value="" class="input rx-spectrum" /></td>
|
||||
<td colspan="2"><input type="text" name="background_color" value="" class="input rx-spectrum" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->cmd_widget_background_image_url}</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue