diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-19 16:20:34 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-19 16:20:34 +0300 |
| commit | fbd57b93696394e5c80297c4b166fff5bfc16860 (patch) | |
| tree | 92585e701203c0b7a01b71a12b5b1d918ca27d6b /phpBB | |
| parent | ee8d7b536c30ac3f88aca1cb59fdb4d81b41cf90 (diff) | |
| download | forums-fbd57b93696394e5c80297c4b166fff5bfc16860.tar forums-fbd57b93696394e5c80297c4b166fff5bfc16860.tar.gz forums-fbd57b93696394e5c80297c4b166fff5bfc16860.tar.bz2 forums-fbd57b93696394e5c80297c4b166fff5bfc16860.tar.xz forums-fbd57b93696394e5c80297c4b166fff5bfc16860.zip | |
[ticket/11552] Responsive PM editor
Responsive PM editor, fix quickmod tools
PHPBB3-11552
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/styles/prosilver/template/posting_editor.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 22 |
2 files changed, 22 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html index 187718d8c1..f3e62db649 100644 --- a/phpBB/styles/prosilver/template/posting_editor.html +++ b/phpBB/styles/prosilver/template/posting_editor.html @@ -31,7 +31,7 @@ <!-- ENDIF --> <!-- IF not S_EDIT_POST --> <dl class="pmlist"> - <dt><textarea id="username_list" name="username_list" class="inputbox" cols="50" rows="2" tabindex="1"></textarea></dt> + <dt><label>{L_TO}{L_COLON}<textarea id="username_list" name="username_list" class="inputbox" cols="50" rows="2" tabindex="1"></textarea></label></dt> <dd><span><a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a></span></dd> <dd><input type="submit" name="add_to" value="{L_ADD}" class="button2" tabindex="1" /></dd> <dd><input type="submit" name="add_bcc" value="{L_ADD_BCC}" class="button2" tabindex="1" /></dd> diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index fa58e168ca..39004c0eaf 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -317,6 +317,20 @@ textarea, dd textarea, #message-box textarea { box-sizing: border-box; } +dl.pmlist dt { + width: auto !important; + margin-bottom: 5px; +} + +dl.pmlist dd { + display: inline-block; + margin-left: 0 !important; +} + +dl.pmlist dd:first-of-type { + padding-left: 20px; +} + #smiley-box, #message-box { float: none; width: auto; @@ -369,7 +383,7 @@ textarea, dd textarea, #message-box textarea { /* Post ----------------------------------------*/ -.postprofile, .postbody { +.postprofile, .postbody, .search .postbody { display: block; width: auto; float: none; @@ -436,6 +450,12 @@ p.rightside { overflow: hidden; } +fieldset.quickmod { + width: auto; + float: none; + text-align: center; +} + @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-center { |
