From 6cccd3bcdd4da397382ce25de425a5d2149a4fc3 Mon Sep 17 00:00:00 2001 From: Michael Miday Date: Wed, 16 Sep 2015 17:20:11 +0200 Subject: [PATCH] [ticket/12769] Small icon BC --- phpBB/styles/prosilver/theme/buttons.css | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index 8f97e4db71..57a08491e1 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -125,3 +125,32 @@ button::-moz-focus-inner { padding: 0; border: 0 } + +/* Deprecated as of version 3.2 +-------------------------------------------------*/ +.small-icon { + background-position: 0 50%; + background-repeat: no-repeat; + background-image: none; +} + +.small-icon > a { + padding: 0 0 0 18px; +} + +ul.linklist.bulletin > li.small-icon:before { + display: none; +} + +.dropdown .small-icon > a { + display: block; +} + +.rtl .small-icon { + background-position: 100% 50%; +} + +.rtl .small-icon > a { + padding-left: 0; + padding-right: 19px; +}