diff options
author | Michael Miday <midaym@gmail.com> | 2015-09-14 16:25:36 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-09-14 16:25:36 +0200 |
commit | 70f1b08c69c483122717979a7e91c6eed20cbed9 (patch) | |
tree | 5cbab66bfff3365a6d8bf8e750de757ae2c5a573 /phpBB/styles/prosilver/template/posting_editor.html | |
parent | fe0e9b2e4c0b83aa00a3f7bbecc82446a7f28bc0 (diff) | |
download | forums-70f1b08c69c483122717979a7e91c6eed20cbed9.tar forums-70f1b08c69c483122717979a7e91c6eed20cbed9.tar.gz forums-70f1b08c69c483122717979a7e91c6eed20cbed9.tar.bz2 forums-70f1b08c69c483122717979a7e91c6eed20cbed9.tar.xz forums-70f1b08c69c483122717979a7e91c6eed20cbed9.zip |
[ticket/14139] Add class of IDs to html tags
Diffstat (limited to 'phpBB/styles/prosilver/template/posting_editor.html')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_editor.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html index 484ca341c4..60d7b6c428 100644 --- a/phpBB/styles/prosilver/template/posting_editor.html +++ b/phpBB/styles/prosilver/template/posting_editor.html @@ -35,7 +35,7 @@ <!-- INCLUDE posting_buttons.html --> - <div id="smiley-box"> + <div id="smiley-box" class="smiley-box"> <!-- EVENT posting_editor_smilies_before --> <!-- IF S_SMILIES_ALLOWED and .smiley --> <strong>{L_SMILIES}</strong><br /> @@ -69,7 +69,7 @@ <!-- EVENT posting_editor_message_before --> - <div id="message-box"> + <div id="message-box" class="message-box"> <textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="4" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea> </div> @@ -102,13 +102,13 @@ <!-- ENDIF --> <!-- IF not S_PRIVMSGS and not S_SHOW_DRAFTS and not $SIG_EDIT eq 1 --> - <div id="tabs" class="sub-panels" data-show-panel="<!-- IF SHOW_PANEL -->{SHOW_PANEL}<!-- ELSE -->options-panel<!-- ENDIF -->" role="tablist"> + <div id="tabs" class="tabs sub-panels" data-show-panel="<!-- IF SHOW_PANEL -->{SHOW_PANEL}<!-- ELSE -->options-panel<!-- ENDIF -->" role="tablist"> <ul> <li id="options-panel-tab" class="tab activetab"><a href="#tabs" data-subpanel="options-panel" role="tab" aria-controls="options-panel"><span>{L_OPTIONS}</span></a></li> <!-- IF S_SHOW_ATTACH_BOX --> <li id="attach-panel-tab" class="tab"> <a href="#tabs" data-subpanel="attach-panel" role="tab" aria-controls="attach-panel"> - {L_ATTACHMENTS} <strong id="file-total-progress"><strong id="file-total-progress-bar"></strong></strong> + {L_ATTACHMENTS} <strong id="file-total-progress" class="file-total-progress"><strong id="file-total-progress-bar" class="file-total-progress-bar"></strong></strong> </a> </li> <!-- ENDIF --> |