diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-27 14:29:15 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-17 21:13:06 +0300 |
| commit | 961a27091e4bd1e35966a9b2b3791cb4803c5592 (patch) | |
| tree | 818b81a6cf8d5b3410f442addfd4fa4571852bc5 /phpBB/styles/prosilver/theme/responsive.css | |
| parent | 8093e4e053964cefbbe0465989d14475a35ac186 (diff) | |
| download | forums-961a27091e4bd1e35966a9b2b3791cb4803c5592.tar forums-961a27091e4bd1e35966a9b2b3791cb4803c5592.tar.gz forums-961a27091e4bd1e35966a9b2b3791cb4803c5592.tar.bz2 forums-961a27091e4bd1e35966a9b2b3791cb4803c5592.tar.xz forums-961a27091e4bd1e35966a9b2b3791cb4803c5592.zip | |
[ticket/11552] MCP fixes, responsive logs
PHPBB3-11552
Diffstat (limited to 'phpBB/styles/prosilver/theme/responsive.css')
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 58 |
1 files changed, 55 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index c4f6394c9a..aa0da9af91 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -96,7 +96,7 @@ ul.topiclist li.header dd { display: none !important; } -ul.topiclist dt, ul.topiclist dt .list-inner { +ul.topiclist li.row dt, ul.topiclist li.row dt .list-inner { margin-right: 0; } @@ -218,11 +218,63 @@ ul.topiclist.forums dd.topics dfn, ul.topiclist.topics dd.posts dfn { } #navigation li:first-child a { - border-radius: 5px 5px 0 0; + border-top-left-radius: 5px; + border-top-right-radius: 5px; } #navigation li:last-child a { - border-radius: 0 0 5px 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; +} + +/* Responsive tables +----------------------------------------*/ +table.responsive, table.responsive thead, table.responsive tbody, table.responsive tr, table.responsive th, table.responsive td { + display: block; + width: auto; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +table.responsive thead { + display: none; +} + +table.responsive tr { + overflow: hidden; + margin: 5px 0; +} + +table.mcp-logs td:nth-child(2) { + width: 50%; + float: left; +} + +table.mcp-logs td:nth-child(3) { + margin-left: 50%; + text-align: right; +} + +table.mcp-logs td:nth-child(4), table.mcp-logs td:nth-child(5), +table.mcp-logs-full td:nth-child(1), table.mcp-logs-full td:nth-child(2) { + width: 33%; + float: left; +} + +table.mcp-logs td:nth-child(4), +table.mcp-logs-full td:nth-child(4) { + clear: left; +} + +table.mcp-logs td:nth-child(5), +table.mcp-logs-full td:nth-child(2) { + text-align: center; +} + +table.mcp-logs td:nth-child(6), +table.mcp-logs-full td:nth-child(3) { + margin-left: 66%; + text-align: right; } /* Misc stuff |
