Theme: Add input[type=email] to styles.

This commit is contained in:
reliberate 2016-04-25 10:26:17 -06:00
parent 6a1a208864
commit bb93aea5ba
1 changed files with 12 additions and 4 deletions

View File

@ -786,11 +786,13 @@
input[type=text].txt,
input[type=number].txt,
input[type=password].txt,
input[type=email].txt,
select.formfld,
textarea.formfld,
input[type=text].formfld,
input[type=number].formfld,
input[type=password].formfld {
input[type=password].formfld,
input[type=email].formfld {
font-family: <?php echo ($_SESSION['theme']['input_text_font']['text'] != '') ? $_SESSION['theme']['input_text_font']['text'] : 'Arial'; ?>;
font-size: <?php echo ($_SESSION['theme']['input_text_size']['text'] != '') ? $_SESSION['theme']['input_text_size']['text'] : '12px'; ?>;
color: <?php echo ($_SESSION['theme']['input_text_color']['text'] != '') ? $_SESSION['theme']['input_text_color']['text'] : '#000000'; ?>;
@ -831,10 +833,12 @@
input[type=text].txt,
input[type=number].txt,
input[type=password].txt,
input[type=email].txt,
textarea.formfld,
input[type=text].formfld,
input[type=number].formfld,
input[type=password].formfld {
input[type=password].formfld,
input[type=email].formfld {
transition: width 0.25s;
-moz-transition: width 0.25s;
-webkit-transition: width 0.25s;
@ -850,10 +854,12 @@
input[type=text].txt:hover,
input[type=number].txt:hover,
input[type=password].txt:hover,
input[type=email].txt:hover,
textarea.formfld:hover,
input[type=text].formfld:hover,
input[type=number].formfld:hover,
input[type=password].formfld:hover {
input[type=password].formfld:hover,
input[type=email].formfld:hover {
border-color: <?php echo ($_SESSION['theme']['input_border_color_hover']['text'] != '') ? $_SESSION['theme']['input_border_color_hover']['text'] : '#c0c0c0'; ?>;
}
@ -861,10 +867,12 @@
input[type=text].txt:focus,
input[type=number].txt:focus,
input[type=password].txt:focus,
input[type=email].txt:focus,
textarea.formfld:focus,
input[type=text].formfld:focus,
input[type=number].formfld:focus,
input[type=password].formfld:focus {
input[type=password].formfld:focus,
input[type=email].formfld:focus {
border-color: <?php echo ($_SESSION['theme']['input_border_color_focus']['text'] != '') ? $_SESSION['theme']['input_border_color_focus']['text'] : '#c0c0c0'; ?>;
/* first clear */
-webkit-box-shadow: none;