diff options
author | Michael Miday <midaym@gmail.com> | 2015-11-16 17:59:48 +0100 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-11-16 17:59:48 +0100 |
commit | c9ea49e1c231e22df6063b7ef7360b0a7a52d338 (patch) | |
tree | 71554adee8a42b7d706051d1fc9739e775fe4408 /phpBB/styles | |
parent | cbf9408e66eeddf2d53b87427bf8cb1f3d013a5c (diff) | |
download | forums-c9ea49e1c231e22df6063b7ef7360b0a7a52d338.tar forums-c9ea49e1c231e22df6063b7ef7360b0a7a52d338.tar.gz forums-c9ea49e1c231e22df6063b7ef7360b0a7a52d338.tar.bz2 forums-c9ea49e1c231e22df6063b7ef7360b0a7a52d338.tar.xz forums-c9ea49e1c231e22df6063b7ef7360b0a7a52d338.zip |
[ticket/14293]Fix postbody and profile widths
PHPBB3-14293
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 6d74c5772e..d71fd142e6 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -557,9 +557,16 @@ } } +@media (min-width: 700px) { + .postbody { width: 70%; } +} + +@media (min-width: 850px) { + .postbody { width: 76%; } +} + @media (max-width: 850px) { .postprofile { width: 28%; } - .postbody { width: 70%; } } @media (min-width: 701px) and (max-width: 950px) { |