mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/14194]Fix search and quicklinks
PHPBB3-14194
This commit is contained in:
parent
148d7d9b79
commit
9f651e2777
1 changed files with 22 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue