mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11552] Responsive PM editor
Responsive PM editor, fix quickmod tools PHPBB3-11552
This commit is contained in:
parent
ee8d7b536c
commit
fbd57b9369
2 changed files with 22 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<!-- IF not S_EDIT_POST -->
|
<!-- IF not S_EDIT_POST -->
|
||||||
<dl class="pmlist">
|
<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><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_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>
|
<dd><input type="submit" name="add_bcc" value="{L_ADD_BCC}" class="button2" tabindex="1" /></dd>
|
||||||
|
|
|
@ -317,6 +317,20 @@ textarea, dd textarea, #message-box textarea {
|
||||||
box-sizing: border-box;
|
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 {
|
#smiley-box, #message-box {
|
||||||
float: none;
|
float: none;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
@ -369,7 +383,7 @@ textarea, dd textarea, #message-box textarea {
|
||||||
|
|
||||||
/* Post
|
/* Post
|
||||||
----------------------------------------*/
|
----------------------------------------*/
|
||||||
.postprofile, .postbody {
|
.postprofile, .postbody, .search .postbody {
|
||||||
display: block;
|
display: block;
|
||||||
width: auto;
|
width: auto;
|
||||||
float: none;
|
float: none;
|
||||||
|
@ -436,6 +450,12 @@ p.rightside {
|
||||||
overflow: hidden;
|
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)
|
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
|
||||||
{
|
{
|
||||||
p.responsive-center {
|
p.responsive-center {
|
||||||
|
|
Loading…
Add table
Reference in a new issue