From 8e3b13d5c5fa0ff41166a8b3b5b413077e448f64 Mon Sep 17 00:00:00 2001 From: Crizzo Date: Sun, 2 Mar 2014 20:59:59 +0100 Subject: [ticket/9255] Added max-height and overflow-x to cp-mini in cp.css PHPBB3-9255 --- phpBB/styles/prosilver/theme/cp.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css index bf235b3fb5..cdf64c7236 100644 --- a/phpBB/styles/prosilver/theme/cp.css +++ b/phpBB/styles/prosilver/theme/cp.css @@ -357,6 +357,8 @@ ul.cplist { /* Friends list */ .cp-mini { margin: 10px 15px 10px 5px; + max-height: 200px; + overflow-x: auto; padding: 5px 10px; border-radius: 7px; } -- cgit v1.2.1 From 2f31e79445cc9f353f41f1860424e056617932a6 Mon Sep 17 00:00:00 2001 From: Crizzo Date: Sun, 2 Mar 2014 21:31:08 +0100 Subject: [ticket/9255] Changed overflow-x to overflow-y PHPBB3-9255 --- phpBB/styles/prosilver/theme/cp.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css index cdf64c7236..61df82c0ce 100644 --- a/phpBB/styles/prosilver/theme/cp.css +++ b/phpBB/styles/prosilver/theme/cp.css @@ -358,7 +358,7 @@ ul.cplist { .cp-mini { margin: 10px 15px 10px 5px; max-height: 200px; - overflow-x: auto; + overflow-y: auto; padding: 5px 10px; border-radius: 7px; } -- cgit v1.2.1