mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-21 22:54:11 +08:00
fix(button-dropdown): Broken styles on reply/reply-all button dropdown
This commit is contained in:
parent
d25dc9b879
commit
a099e677e0
2 changed files with 3 additions and 2 deletions
|
@ -417,7 +417,7 @@ class DatabaseStore extends NylasStore
|
|||
# We can only use WHERE IN for up to ~250 items at a time. Run a query for
|
||||
# every 100 items and then combine the results before returning.
|
||||
Promise.all(promises).then (results) =>
|
||||
all = {};
|
||||
all = {}
|
||||
all = _.extend(all, result) for result in results
|
||||
Promise.resolve(all)
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
height: 32px;
|
||||
padding-top: 7px;
|
||||
line-height: 18px;
|
||||
border-radius: 4px 0 0 4px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -65,7 +66,7 @@
|
|||
line-height: 14px;
|
||||
position: absolute;
|
||||
right: -1px; // -1, because of the border above
|
||||
|
||||
white-space:nowrap;
|
||||
display:none;
|
||||
|
||||
.menu {
|
||||
|
|
Loading…
Reference in a new issue