PLT-5179 - Fixing modal overflow for autocomplete (#5002)

* PLT-5179 - Fixing modal overflow for autocomplete

* PLT-5171 - Fixing search bar popover behaviour
Этот коммит содержится в:
Asaad Mahmood
2017-01-09 19:32:27 +05:00
коммит произвёл Harrison Healey
родитель f6672605e8
Коммит 93a526f7ed
5 изменённых файлов: 41 добавлений и 55 удалений

Просмотреть файл

@@ -12,7 +12,6 @@
.modal-body {
max-height: calc(90vh - 62px);
overflow: auto;
padding: 20px 15px;
}
@@ -24,10 +23,6 @@
min-height: 8em;
}
.suggestion-list {
bottom: -149px;
}
.suggestion-list__content {
max-height: 150px;
}

Просмотреть файл

@@ -93,21 +93,20 @@
}
.search-help-popover {
@include single-transition(opacity, .3s, ease-in);
font-size: em(13px);
max-width: 300px;
max-width: 350px;
top: 36px;
visibility: hidden;
width: 100%;
&:not(.autocomplete) {
margin-top: 17px !important;
}
&.autocomplete {
display: block;
.popover-content {
-webkit-overflow-scrolling: touch;
padding: 10px;
position: relative;
-webkit-overflow-scrolling: touch;
}
}
@@ -206,6 +205,11 @@
.tooltip-inner {
max-width: 100%;
}
&.visible {
@include opacity(1);
visibility: visible;
}
}
.member-list__popover {