mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-11 15:14:31 +08:00
fix(button-dropdown): Broken styles on reply/reply-all button dropdown
This commit is contained in:
parent
2e1e485051
commit
78a02ad52c
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
|
# 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.
|
# every 100 items and then combine the results before returning.
|
||||||
Promise.all(promises).then (results) =>
|
Promise.all(promises).then (results) =>
|
||||||
all = {};
|
all = {}
|
||||||
all = _.extend(all, result) for result in results
|
all = _.extend(all, result) for result in results
|
||||||
Promise.resolve(all)
|
Promise.resolve(all)
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
height: 32px;
|
height: 32px;
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
|
border-radius: 4px 0 0 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,7 +66,7 @@
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: -1px; // -1, because of the border above
|
right: -1px; // -1, because of the border above
|
||||||
|
white-space:nowrap;
|
||||||
display:none;
|
display:none;
|
||||||
|
|
||||||
.menu {
|
.menu {
|
||||||
|
|
Loading…
Add table
Reference in a new issue