1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 07:47:34 +02:00

[ticket/14194]Fix search and quicklinks

PHPBB3-14194
This commit is contained in:
Michael Miday
2015-10-11 10:43:49 +02:00
parent 148d7d9b79
commit 9f651e2777

View File

@@ -16,8 +16,24 @@
} }
@media (max-width: 430px) { @media (max-width: 430px) {
.action-bar .search-box .inputbox {
width: 120px;
}
.section-viewtopic .search-box .inputbox { .section-viewtopic .search-box .inputbox {
width: 110px; 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...";
} }
} }
@@ -92,6 +108,10 @@
margin-top: 5px; margin-top: 5px;
width: 100%; width: 100%;
} }
.quick-links .dropdown-trigger span {
display: none;
}
} }
@media (max-width: 550px) { @media (max-width: 550px) {