From 9f651e2777c108bb7d5f65309f27509fd8be4810 Mon Sep 17 00:00:00 2001 From: Michael Miday Date: Sun, 11 Oct 2015 10:43:49 +0200 Subject: [PATCH] [ticket/14194]Fix search and quicklinks PHPBB3-14194 --- phpBB/styles/prosilver/theme/responsive.css | 24 +++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index d611f94e75..4f5a5db742 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -16,9 +16,25 @@ } @media (max-width: 430px) { - .section-viewtopic .search-box .inputbox { - width: 110px; + .action-bar .search-box .inputbox { + width: 120px; } + + .section-viewtopic .search-box .inputbox { + width: 57px; + } + + .action-bar .search-box .inputbox ::-moz-placeholder { + content: "Search..."; + } + + .action-bar .search-box .inputbox :-ms-input-placeholder { + content: "Search..."; + } + + .action-bar .search-box .inputbox ::-webkit-input-placeholder { + content: "Search..."; + } } @media (max-width: 500px) { @@ -92,6 +108,10 @@ margin-top: 5px; width: 100%; } + + .quick-links .dropdown-trigger span { + display: none; + } } @media (max-width: 550px) {