diff options
author | hubaishan <saeed@hubaishan.com> | 2017-07-30 07:11:23 +0300 |
---|---|---|
committer | hubaishan <saeed@hubaishan.com> | 2017-07-30 07:11:23 +0300 |
commit | ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a (patch) | |
tree | bb7d01e65bfe51c3720c48103dd59fa950b2e97a /phpBB/styles/prosilver/theme | |
parent | 3ccaac488b77c2eb89a9db9ec025bfd2d14fa648 (diff) | |
download | forums-ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a.tar forums-ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a.tar.gz forums-ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a.tar.bz2 forums-ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a.tar.xz forums-ff5c88be77e09b83a60b9abe54d7afbc8d36ee3a.zip |
[ticket/15297] Fix current date broken lines
Because browsers give priority to style in bidi.css
so I sign (!important) to the style in responsive.css
PHPBB3-15297
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 8653042a69..0257941ead 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -538,8 +538,8 @@ fieldset.display-actions { @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-center { - float: none; - text-align: center; + float: none !important; + text-align: center !important; margin-bottom: 5px; } |