mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 06:18:52 +00:00
[ticket/13713] Fix scrolling not working and not needed includes
PHPBB3-13713
This commit is contained in:
parent
1a5e3966e6
commit
ae1f556b74
2 changed files with 2 additions and 4 deletions
|
@ -26,8 +26,6 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/jquery.caret.min.js -->
|
|
||||||
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/jquery.atwho.min.js -->
|
|
||||||
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/jquery.tribute.js -->
|
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/jquery.tribute.js -->
|
||||||
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/editor.js -->
|
<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/editor.js -->
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,8 @@
|
||||||
/* Mention dropdown
|
/* Mention dropdown
|
||||||
---------------------------------------- */
|
---------------------------------------- */
|
||||||
.mention-container { /* mention-container */
|
.mention-container { /* mention-container */
|
||||||
|
overflow: auto; /* placed here for list to scroll with arrow key press */
|
||||||
|
max-height: 200px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -22,8 +24,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.mention-container ul { /* mention-list */
|
.mention-container ul { /* mention-list */
|
||||||
overflow: auto; /* placed here for list to scroll with arrow key press */
|
|
||||||
max-height: 200px;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
|
Loading…
Add table
Reference in a new issue