diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-15 17:45:26 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-17 21:13:05 +0300 |
| commit | 34fa93a1533da539001f5545c5d4be759f35c2e2 (patch) | |
| tree | 50db3c8ee8c7dec62d5874f5c0991a614f9eadbf | |
| parent | f655ca3e54e066be4fd27cdbdad23c9661340b2c (diff) | |
| download | forums-34fa93a1533da539001f5545c5d4be759f35c2e2.tar forums-34fa93a1533da539001f5545c5d4be759f35c2e2.tar.gz forums-34fa93a1533da539001f5545c5d4be759f35c2e2.tar.bz2 forums-34fa93a1533da539001f5545c5d4be759f35c2e2.tar.xz forums-34fa93a1533da539001f5545c5d4be759f35c2e2.zip | |
[ticket/11552] Adjustments for CP navigation
PHPBB3-11552
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index feed2fb4d3..3bf56c6e0d 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -199,8 +199,18 @@ ul.topiclist.forums dd.topics dfn, ul.topiclist.topics dd.posts dfn { #navigation { padding: 0; + margin: 0 auto; + max-width: 320px; } #navigation a { background-image: none; -}
\ No newline at end of file +} + +#navigation li:first-child a { + border-radius: 5px 5px 0 0; +} + +#navigation li:last-child a { + border-radius: 0 0 5px 5px; +} |
