mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
5b7ae0ad54
Summary: Focused Content Store should notify observers when focused items change, not just when they're reassigned Popovers should have a `direction` and optional event onOpened Menu divider documentation was wrong, menus should support checked items by default Pressing escape in a popover's input should dismiss the popover Other changes Remove specs that make no sense anymore Small tweak to report build breaking. Shouldn't happen often ;) Test Plan: Run tests, which will now phone home if they break Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1493
42 lines
1 KiB
Text
42 lines
1 KiB
Text
@import "ui-variables";
|
|
|
|
.popover-container {
|
|
display:inline-block;
|
|
position:relative;
|
|
}
|
|
|
|
.popover {
|
|
width: 250px;
|
|
max-height:400px;
|
|
background-color: @background-color;
|
|
border-radius: @border-radius-base;
|
|
box-shadow: 0 4px 30px rgba(0,0,0,0.19), inset 0 0 1px rgba(0,0,0,0.5);
|
|
|
|
.menu {
|
|
z-index:1;
|
|
position: relative;
|
|
.content-container {
|
|
background: none;
|
|
}
|
|
.header-container {
|
|
border-top-left-radius: @border-radius-base;
|
|
border-top-right-radius: @border-radius-base;
|
|
background: none;
|
|
}
|
|
.footer-container {
|
|
border-bottom-left-radius: @border-radius-base;
|
|
border-bottom-right-radius: @border-radius-base;
|
|
background: none;
|
|
|
|
.item:last-child:hover {
|
|
border-bottom-left-radius: @border-radius-base;
|
|
border-bottom-right-radius: @border-radius-base;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popover-pointer {
|
|
background: transparent url('images/tooltip/tooltip-bg-pointer@2x.png') no-repeat;
|
|
background-size: 22.5px 10.5px;
|
|
}
|
|
}
|