diff options
author | Michael Miday <midaym@gmail.com> | 2015-09-16 17:20:11 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-09-17 18:37:30 +0200 |
commit | 6cccd3bcdd4da397382ce25de425a5d2149a4fc3 (patch) | |
tree | 06b71b7cdd85ff901984e961c742352d27bcefd4 /phpBB/styles | |
parent | 47eb88e877d3c5c6219eff2d65b66675aae26c02 (diff) | |
download | forums-6cccd3bcdd4da397382ce25de425a5d2149a4fc3.tar forums-6cccd3bcdd4da397382ce25de425a5d2149a4fc3.tar.gz forums-6cccd3bcdd4da397382ce25de425a5d2149a4fc3.tar.bz2 forums-6cccd3bcdd4da397382ce25de425a5d2149a4fc3.tar.xz forums-6cccd3bcdd4da397382ce25de425a5d2149a4fc3.zip |
[ticket/12769] Small icon BC
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/buttons.css | 29 |
1 files changed, 29 insertions, 0 deletions
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; +} |