From cba58fe4e9f27d6acc1b0a0c27bc7e0d78a69080 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Fri, 16 May 2014 15:27:39 -0700 Subject: [PATCH] [ticket/12155] Display the buttons only when hovering the post. PHPBB3-12155 --- phpBB/styles/prosilver/theme/buttons.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index b7896a99b0..d8cb3932d9 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -160,6 +160,15 @@ ul.linklist.bulletin li.small-icon:before { margin-top: 2px; } +.notouch.section-viewtopic .post-buttons { + opacity: 0; +} + +.notouch.section-viewtopic .post:hover .post-buttons { + opacity: 1; + transition: opacity .8s; +} + .post-buttons li { float: left; margin-right: 3px;