mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
BUGFIX: make sure category selector never gets focus on mobile
This commit is contained in:
parent
f5a94bf668
commit
b0815e8ace
2 changed files with 7 additions and 11 deletions
|
@ -72,9 +72,6 @@
|
|||
margin-left: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#reply-control {
|
||||
.toggle-preview, #draft-status, #file-uploading {
|
||||
position: absolute;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue