diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-22 15:36:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-22 15:36:02 +0200 |
commit | 5c36eef0394b47455b66ad913d157bdd32f8004c (patch) | |
tree | fd5cdf53d9374abc4815e323929dccc2a101f7b2 /view/theme/redbasic | |
parent | 26e20f99997b061f36c5698035a0b2a7747b4b1a (diff) | |
download | volse-hubzilla-5c36eef0394b47455b66ad913d157bdd32f8004c.tar.gz volse-hubzilla-5c36eef0394b47455b66ad913d157bdd32f8004c.tar.bz2 volse-hubzilla-5c36eef0394b47455b66ad913d157bdd32f8004c.zip |
textcomplete: return up to 100 items and look for for matches in the entire string (not just the beginning) when suggesting emojis
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/css/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4f0658477..489d71735 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1474,6 +1474,12 @@ blockquote { background-color: $item_colour; } +.textcomplete-dropdown { + max-height: 300px; + max-width: 250px; + overflow: auto; +} + .dropdown-item.active { color: #fff; background-color: #007bff; |