diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-05-04 23:33:12 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-05-04 23:33:12 +0000 |
commit | 386c2da85d6b4f68be920dc99435699b4aa3fce5 (patch) | |
tree | 5163124b162c38a911ce6cd9dc27d0fa8be82717 /phpBB/adm/style/custom_profile_fields.html | |
parent | ecaba49e1f86cdc3f3667f9ec4c2e04281940256 (diff) | |
download | forums-386c2da85d6b4f68be920dc99435699b4aa3fce5.tar forums-386c2da85d6b4f68be920dc99435699b4aa3fce5.tar.gz forums-386c2da85d6b4f68be920dc99435699b4aa3fce5.tar.bz2 forums-386c2da85d6b4f68be920dc99435699b4aa3fce5.tar.xz forums-386c2da85d6b4f68be920dc99435699b4aa3fce5.zip |
#10461
Rest of it... hurray++; for whenever stupid CSS classes need not be added and one can just do:
input[type=text] { cursor: text; }
git-svn-id: file:///svn/phpbb/trunk@7463 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/custom_profile_fields.html')
-rw-r--r-- | phpBB/adm/style/custom_profile_fields.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/custom_profile_fields.html b/phpBB/adm/style/custom_profile_fields.html index 884f2059aa..c78c71748c 100644 --- a/phpBB/adm/style/custom_profile_fields.html +++ b/phpBB/adm/style/custom_profile_fields.html @@ -10,7 +10,7 @@ <!-- END text --> <!-- BEGIN string --> - <input type="text" name="{string.FIELD_IDENT}" size="{string.FIELD_LENGTH}" maxlength="{string.FIELD_MAXLEN}" value="{string.FIELD_VALUE}" /> + <input type="text" class="text" name="{string.FIELD_IDENT}" size="{string.FIELD_LENGTH}" maxlength="{string.FIELD_MAXLEN}" value="{string.FIELD_VALUE}" /> <!-- END string --> <!-- BEGIN bool --> @@ -22,7 +22,7 @@ <!-- END bool --> <!-- BEGIN int --> - <input type="text" name="{int.FIELD_IDENT}" size="{int.FIELD_LENGTH}" value="{int.FIELD_VALUE}" /> + <input type="text" class="text" name="{int.FIELD_IDENT}" size="{int.FIELD_LENGTH}" value="{int.FIELD_VALUE}" /> <!-- END int --> <!-- BEGIN date --> |