BUGFIX: make sure category selector never gets focus on mobile

This commit is contained in:
Régis Hanol 2014-07-07 17:35:52 +02:00
parent f5a94bf668
commit b0815e8ace
2 changed files with 7 additions and 11 deletions

View file

@ -72,9 +72,6 @@
margin-left: 10px;
}
#reply-control {
.toggle-preview, #draft-status, #file-uploading {
position: absolute;

View file

@ -13,8 +13,6 @@ display: none;
display: none;
}
#reply-control {
.composer-bottom-right {
position: absolute;
@ -147,7 +145,6 @@ display: none;
}
.reply-area {
max-width: 1500px;
margin-left: auto;
margin-right: auto;
float: none;
}
@ -196,11 +193,6 @@ display: none;
@include medium-width { width: 283px; }
@include small-width { width: 218px; }
}
.select2-search input {
width: 378px;
@include medium-width { width: 233px; }
@include small-width { width: 168px; }
}
}
}
.edit-reason-input, .display-edit-reason {
@ -357,3 +349,10 @@ display: none;
display: none;
}
}
// make sure the category selector *NEVER* gets focus by default on mobile anywhere
.select2-hidden,
.select2-search,
.select2-focusser {
display:none !important;
}