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_icons.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_icons.html')
-rw-r--r-- | phpBB/adm/style/acp_icons.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/acp_icons.html b/phpBB/adm/style/acp_icons.html index 302324240d..2deff4258f 100644 --- a/phpBB/adm/style/acp_icons.html +++ b/phpBB/adm/style/acp_icons.html @@ -45,11 +45,11 @@ <td style="text-align: center;"><img src="{items.IMG_SRC}" alt="" title="" /><input type="hidden" name="image[{items.IMG}]" value="1" /></td> <td style="vertical-align: top;">[{items.IMG}]</td> <!-- IF S_SMILIES --> - <td><input class="post" type="text" name="code[{items.IMG}]" value="{items.CODE}" size="10" maxlength="50" /></td> - <td><input class="post" type="text" name="emotion[{items.IMG}]" value="{items.EMOTION}" size="10" maxlength="50" /></td> + <td><input class="text post" type="text" name="code[{items.IMG}]" value="{items.CODE}" size="10" maxlength="50" /></td> + <td><input class="text post" type="text" name="emotion[{items.IMG}]" value="{items.EMOTION}" size="10" maxlength="50" /></td> <!-- ENDIF --> - <td><input class="post" type="text" size="3" name="width[{items.IMG}]" value="{items.WIDTH}" /></td> - <td><input class="post" type="text" size="3" name="height[{items.IMG}]" value="{items.HEIGHT}" /></td> + <td><input class="text post" type="text" size="3" name="width[{items.IMG}]" value="{items.WIDTH}" /></td> + <td><input class="text post" type="text" size="3" name="height[{items.IMG}]" value="{items.HEIGHT}" /></td> <td> <input type="checkbox" class="radio" name="display_on_posting[{items.IMG}]"{items.POSTING_CHECKED} /> <!-- IF items.S_ID --> |