diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2011-07-14 15:05:25 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2011-07-14 15:05:25 +0200 |
| commit | bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a (patch) | |
| tree | 199bbb79f68d506dc39560a1d222f302f061013e /phpBB/styles/prosilver/theme | |
| parent | e4707a8be75263e610b00b3d600144e797f576d9 (diff) | |
| download | forums-bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a.tar forums-bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a.tar.gz forums-bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a.tar.bz2 forums-bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a.tar.xz forums-bb733b0204aef71c40290a9c8db8ad0a7e3e3d0a.zip | |
[ticket/6632] Better viewing of topics for wide screen displays
Also fixes PHPBB3-6458 "Width of Topics and Posts columns in Board Index is causing problems with language packs" by increasing the size to 90px instead of the ~70 it was like. Also tested on RTL languages.
PHPBB3-6458
PHPBB3-6632
Diffstat (limited to 'phpBB/styles/prosilver/theme')
| -rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 64beb97a37..2dad706bf5 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -29,10 +29,15 @@ ul.topiclist li.row dl { ul.topiclist dt { display: block; float: left; - width: 50%; + width: 100%; font-size: 1.1em; padding-left: 5px; padding-right: 5px; + margin-right: -465px; +} + +ul.topiclist dt .wrap-content { + padding-right: 465px; } ul.topiclist dd { @@ -96,6 +101,7 @@ li.header dt, li.header dd { li.header dt { font-weight: bold; + margin-right: -465px; } li.header dd { @@ -126,7 +132,7 @@ dl.icon dt { } dd.posts, dd.topics, dd.views { - width: 8%; + width: 90px; text-align: center; line-height: 2.2em; font-size: 1.2em; @@ -145,7 +151,7 @@ dl.icon dt li { } dd.lastpost { - width: 25%; + width: 230px; font-size: 1.1em; } |
