diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-11-24 22:19:37 +0100 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-11-24 22:19:37 +0100 | 
| commit | b81db686a8a2caf59bc40d2c30d68d145c4c82ed (patch) | |
| tree | 3585783079ff391159f38f006d49ee686121194d | |
| parent | eecde66ed4e9856e1a414067a8b8c37144ea043e (diff) | |
| parent | c9ea49e1c231e22df6063b7ef7360b0a7a52d338 (diff) | |
| download | forums-b81db686a8a2caf59bc40d2c30d68d145c4c82ed.tar forums-b81db686a8a2caf59bc40d2c30d68d145c4c82ed.tar.gz forums-b81db686a8a2caf59bc40d2c30d68d145c4c82ed.tar.bz2 forums-b81db686a8a2caf59bc40d2c30d68d145c4c82ed.tar.xz forums-b81db686a8a2caf59bc40d2c30d68d145c4c82ed.zip | |
Merge pull request #4031 from hanakin/ticket/14293
[ticket/14293]Fix postbody and profile responsive widths
| -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) { | 
