mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11552] Responsive user profile
PHPBB3-11552
This commit is contained in:
parent
9f0b0d9017
commit
74eb7012a3
3 changed files with 29 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
</dl>
|
</dl>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<dl class="left-box details" style="width: 80%;">
|
<dl class="left-box details profile-details">
|
||||||
<dt>{L_USERNAME}{L_COLON}</dt>
|
<dt>{L_USERNAME}{L_COLON}</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<!-- IF USER_COLOR --><span style="color: {USER_COLOR}; font-weight: bold;"><!-- ELSE --><span><!-- ENDIF -->{USERNAME}</span>
|
<!-- IF USER_COLOR --><span style="color: {USER_COLOR}; font-weight: bold;"><!-- ELSE --><span><!-- ENDIF -->{USERNAME}</span>
|
||||||
|
|
|
@ -558,6 +558,10 @@ table.info tbody th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.left-box.profile-details {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
.right-box {
|
.right-box {
|
||||||
float: right;
|
float: right;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
|
@ -347,6 +347,26 @@ textarea, dd textarea, #message-box textarea {
|
||||||
display: inline-block !important;
|
display: inline-block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* User profile
|
||||||
|
----------------------------------------*/
|
||||||
|
.column1, .column2, .left-box.profile-details {
|
||||||
|
float: none;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
|
||||||
|
{
|
||||||
|
dl.details dt, dl.details dd {
|
||||||
|
width: auto;
|
||||||
|
float: none;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.details dd {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Misc stuff
|
/* Misc stuff
|
||||||
----------------------------------------*/
|
----------------------------------------*/
|
||||||
h2 {
|
h2 {
|
||||||
|
@ -389,6 +409,10 @@ p.rightside {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.topic-actions > .pagination {
|
||||||
|
padding-bottom: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.topic-actions > div.search-box, p.jumpbox-return {
|
.topic-actions > div.search-box, p.jumpbox-return {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue