diff options
| author | PayBas <contact@paybas.com> | 2014-06-24 17:19:55 +0200 |
|---|---|---|
| committer | PayBas <contact@paybas.com> | 2014-06-25 14:19:05 +0200 |
| commit | 775dc316b000d67e16e0f45133a24219e1918137 (patch) | |
| tree | 9db9d4b88da550dd2bd221d3be19c53b6094159f /phpBB/styles/prosilver | |
| parent | dd18085ba61524255d51a370e303ff047cda5f18 (diff) | |
| download | forums-775dc316b000d67e16e0f45133a24219e1918137.tar forums-775dc316b000d67e16e0f45133a24219e1918137.tar.gz forums-775dc316b000d67e16e0f45133a24219e1918137.tar.bz2 forums-775dc316b000d67e16e0f45133a24219e1918137.tar.xz forums-775dc316b000d67e16e0f45133a24219e1918137.zip | |
[ticket/12662] IE8 fixes
PHPBB3-12662
Diffstat (limited to 'phpBB/styles/prosilver')
| -rw-r--r-- | phpBB/styles/prosilver/template/forum_fn.js | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index 1ed84594c4..afc15139c0 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -382,7 +382,7 @@ function parse_document(container) */ if (oldBrowser) { // Fix .linklist.bulletin lists - container.find('ul.linklist.bulletin li:first-child, ul.linklist.bulletin li.rightside:last-child').addClass('no-bulletin'); + container.find('ul.linklist.bulletin > li:first-child, ul.linklist.bulletin > li.rightside:last-child').addClass('no-bulletin'); } /** diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 96d965e987..54c6fba340 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -423,7 +423,10 @@ ul.linklist.bulletin > li:before { } ul.linklist.bulletin > li:first-child:before, -ul.linklist.bulletin > li.rightside:last-child:before, +ul.linklist.bulletin > li.rightside:last-child:before { + content: none; +} + ul.linklist.bulletin > li.no-bulletin:before { content: none; } @@ -1141,6 +1144,7 @@ form > p.post-notice strong { max-height: none; max-width: 340px !important; padding: 0; + position: absolute; } .dropdown-extended .header { |
