Skip to content

Commit

Permalink
[ticket/12562] Use border for all sizes except responsive
Browse files Browse the repository at this point in the history
PHPBB3-12562
  • Loading branch information
PayBas committed Jul 3, 2014
1 parent c23c56f commit 8222eea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.
16 changes: 5 additions & 11 deletions phpBB/styles/prosilver/theme/common.css
Expand Up @@ -59,7 +59,7 @@ body {
font-size: 10px;
line-height: normal;
margin: 0;
padding: 12px 0;
padding: 0;
word-wrap: break-word;
}

Expand Down Expand Up @@ -177,21 +177,15 @@ ol ol ul, ol ul ul, ul ol ul, ul ul ul {
#wrap {
border: 1px solid transparent;
border-radius: 8px;
margin: 0 auto;
margin: 12px auto;
max-width: 1152px;
min-width: 650px;
min-width: 625px;
padding: 15px;
}

@media only screen and (max-width: 1220px), only screen and (max-device-width: 1220px)
{
body {
padding: 0;
}

@media only screen and (max-width: 1220px), only screen and (max-device-width: 1220px) {
#wrap {
border: none;
border-radius: 0;
margin: 12px;
}
}

Expand Down
5 changes: 1 addition & 4 deletions phpBB/styles/prosilver/theme/responsive.css
Expand Up @@ -12,13 +12,10 @@ html {
height: auto;
}

body {
padding: 0;
}

#wrap {
border: none;
border-radius: 0;
margin: 0;
min-width: 290px;
padding: 0 5px;
}
Expand Down
5 changes: 0 additions & 5 deletions phpBB/styles/prosilver/theme/tweaks.css
Expand Up @@ -4,11 +4,6 @@ These style definitions are IE 7 and 8 specific
tweaks required due to its poor CSS support.
-------------------------------------------------*/

/* No body padding since IE8 doesn't support media-queries */
body {
padding: 0;
}

/* Clear float fix for IE7 */
.inner {
zoom: 1;
Expand Down

0 comments on commit 8222eea

Please sign in to comment.