diff options
author | Shibu Lijack <shibulijack@gmail.com> | 2012-04-02 16:53:09 +0530 |
---|---|---|
committer | Shibu Lijack <shibulijack@gmail.com> | 2012-04-02 16:53:09 +0530 |
commit | d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1 (patch) | |
tree | d5fba14f5e6ec1db7cbd0d9b2f39090e839762fa | |
parent | 3ced1d2bfcee5ee4c0c62cae752d84c9cd4c9ea0 (diff) | |
download | forums-d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1.tar forums-d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1.tar.gz forums-d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1.tar.bz2 forums-d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1.tar.xz forums-d8c67937d6e9bb07f4ab103e66c96efaf0bb51d1.zip |
[ticket/10734] Fixed cp css
Fixed border radius and padding of the ucp and mcp.
PHPBB-10734
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/cp.css | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index b6d1f310c6..53fa2dd653 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -871,6 +871,7 @@ ul.cplist { #cp-main .panel { background-color: #F9F9F9; + padding: 5px 10px; } #cp-main .pm { diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index fd67c48111..57696d71ee 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -276,7 +276,7 @@ a#logo:hover { .panel { margin-bottom: 4px; - padding: 0 10px; + padding: 5px 10px; background-color: #f3f3f3; color: #3f3f3f; } diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css index d073b2b9d1..899b02faf1 100644 --- a/phpBB/styles/prosilver/theme/cp.css +++ b/phpBB/styles/prosilver/theme/cp.css @@ -179,7 +179,9 @@ ul.cplist { #minitabs li { display: block; float: right; - padding: 0 10px 4px 10px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + padding: 5px 10px 4px 10px; font-size: 1em; font-weight: bold; margin-left: 2px; |