diff options
author | marijus <mario@localhost.localdomain> | 2013-11-22 21:19:41 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-11-22 21:19:41 +0100 |
commit | 72e0bd6b28fbb2e13a02573a053430493f97c14b (patch) | |
tree | 8b3573a5f2808a58abb2439b584df9e9ecbe74cd /view | |
parent | 28071c7f6a455fd70ad1ebad103c5780657a8583 (diff) | |
download | volse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.tar.gz volse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.tar.bz2 volse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.zip |
missing input type and use same font for password and text input
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 7 | ||||
-rwxr-xr-x | view/tpl/field_input.tpl | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f5e99bdf7..72413f283 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -51,7 +51,8 @@ a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; } } -input[type=text] { +input[type=text], +input[type=password] { font-family: arial,freesans,sans-serif; } @@ -458,9 +459,9 @@ footer { clear: both; } -#register-link, #lost-password-link { +#register-link, +#lost-password-link { float: left; - font-size: 90%; margin-left: 100px; } diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl index d5b3d6b4e..a584f95e7 100755 --- a/view/tpl/field_input.tpl +++ b/view/tpl/field_input.tpl @@ -1,6 +1,6 @@ <div class='field input'> <label for='id_{{$field.0}}' id='label_{{$field.0}}'>{{$field.1}}</label> - <input name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2}}">{{if $field.4}} <span class="required">{{$field.4}}</span> {{/if}} + <input name='{{$field.0}}' id='id_{{$field.0}}' type="text" value="{{$field.2}}">{{if $field.4}} <span class="required">{{$field.4}}</span> {{/if}} <span id='help_{{$field.0}}' class='field_help'>{{$field.3}}</span> <div id='end_{{$field.0}}' class='field_end'></div> </div> |