diff options
author | Cesar G <prototech91@gmail.com> | 2014-06-14 10:03:09 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-06-14 10:03:09 -0700 |
commit | 0f034ca7173c700c9b6de4b9ebf9cead56f17207 (patch) | |
tree | f78adf58d04ecbe760f54e3858077b5432345a47 | |
parent | c11ad7bc9da28619d9274572e77e8d9970c5fd8e (diff) | |
download | forums-0f034ca7173c700c9b6de4b9ebf9cead56f17207.tar forums-0f034ca7173c700c9b6de4b9ebf9cead56f17207.tar.gz forums-0f034ca7173c700c9b6de4b9ebf9cead56f17207.tar.bz2 forums-0f034ca7173c700c9b6de4b9ebf9cead56f17207.tar.xz forums-0f034ca7173c700c9b6de4b9ebf9cead56f17207.zip |
[ticket/12553] Fix responsive user profile.
PHPBB3-12553
-rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 19 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 5 |
2 files changed, 19 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 4f9f802dca..0bfd60094a 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -969,6 +969,25 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a { text-align: right !important; } + /* User profile + ----------------------------------------*/ + .rtl .column1, .rtl .column2, .rtl .left-box.profile-details { + float: none; + } + + @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) + { + .rtl dl.details dt, .rtl dl.details dd { + float: none; + text-align: right; + } + + .rtl dl.details dd { + margin-left: 0; + margin-right: 20px; + } + } + /* Post ----------------------------------------*/ .rtl .postprofile, .rtl .postbody, .rtl .search .postbody { diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index b76f6b60cd..7e79f27bcc 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -459,11 +459,6 @@ p.rightside { margin-bottom: 0; } -.column1, .column2 { - width: auto; - float: none; -} - fieldset.quickmod { width: auto; float: none; |