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/acp_ranks.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/acp_ranks.html')
-rw-r--r-- | phpBB/adm/style/acp_ranks.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_ranks.html b/phpBB/adm/style/acp_ranks.html index e316c35b2a..8012892b26 100644 --- a/phpBB/adm/style/acp_ranks.html +++ b/phpBB/adm/style/acp_ranks.html @@ -26,7 +26,7 @@ <legend>{L_ACP_RANKS}</legend> <dl> <dt><label for="title">{L_RANK_TITLE}:</label></dt> - <dd><input name="title" type="text" id="title" value="{RANK_TITLE}" maxlength="255" /></dd> + <dd><input name="title" type="text" class="text" id="title" value="{RANK_TITLE}" maxlength="255" /></dd> </dl> <dl> <dt><label for="rank_image">{L_RANK_IMAGE}:</label></dt> @@ -40,7 +40,7 @@ <!-- IF S_SPECIAL_RANK --><div id="posts" style="display: none;"><!-- ELSE --><div id="posts"><!-- ENDIF --> <dl> <dt><label for="min_posts">{L_RANK_MINIMUM}:</label></dt> - <dd><input name="min_posts" type="text" id="min_posts" maxlength="10" value="{MIN_POSTS}" /></dd> + <dd><input name="min_posts" type="text" class="text" id="min_posts" maxlength="10" value="{MIN_POSTS}" /></dd> </dl> </div> |