1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Responsive fixes

- Make composer absolutely positioned on mobile to work around iOS 8/9
bug
- Make search results dropdown appear on mobile

closes flarum/core#137
This commit is contained in:
Toby Zerner
2015-08-04 11:27:51 +09:30
parent 856ebe9d42
commit 7154558239
4 changed files with 38 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
.Search {
position: relative;
}
@media @tablet-up {
.Search {
input:focus, &.active input, .Search-results {
@@ -11,6 +14,10 @@
left: auto;
right: 0;
@media @phone {
left: 0;
}
> li > a {
white-space: normal;
}