diff options
| author | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-30 18:00:47 +0200 |
|---|---|---|
| committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-30 18:00:47 +0200 |
| commit | 95c603d545ade8ab37e81fd99f2b62765a54bcb0 (patch) | |
| tree | 2551a544d510169e262b2dd616e87af3bec6b708 /phpBB/styles/prosilver/theme/content.css | |
| parent | 0dcf24acc10e7ad52bf47c39faf14b118fd1566d (diff) | |
| download | forums-95c603d545ade8ab37e81fd99f2b62765a54bcb0.tar forums-95c603d545ade8ab37e81fd99f2b62765a54bcb0.tar.gz forums-95c603d545ade8ab37e81fd99f2b62765a54bcb0.tar.bz2 forums-95c603d545ade8ab37e81fd99f2b62765a54bcb0.tar.xz forums-95c603d545ade8ab37e81fd99f2b62765a54bcb0.zip | |
[ticket/8228] Fix still existing problems with code in firefox
A user of a board mentioned that there are still some problems
in firefox if php-highlighting is on. So I used a snippet which
they worked on for weeks. Link to the snippet (in german):
http://www.ongray-design.de/forum/viewtopic.php?t=541
PHPBB3-8228
Diffstat (limited to 'phpBB/styles/prosilver/theme/content.css')
| -rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 0cab12910b..c56c7f9ef8 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -472,13 +472,13 @@ blockquote.uncited { } /* Code block */ -dl.codebox { +.codebox { padding: 3px; border: 1px solid transparent; font-size: 1em; } -dl.codebox dt { +.codebox p { text-transform: uppercase; border-bottom: 1px solid transparent; margin-bottom: 3px; @@ -487,11 +487,11 @@ dl.codebox dt { display: block; } -blockquote dl.codebox { +blockquote .codebox { margin-left: 0; } -dl.codebox pre { +.codebox code { /* Also see tweaks.css */ overflow: auto; display: block; |
