mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-11 18:47:51 +08:00
df38008c56
Summary: This diff includes a few small things: - Menu: Don't select the first item until the user taps down arrow, and allow the user to use the arrow keys to move up and down through Menu items. - Menu: Make scroll code from MultiselectList re-usable, use in Menu. Now if you use the keys to move to an item that is offscreen it will follow. - Popover: Tapping the button that opened popover should close it - Make sure buttons in toolbars are at least standard height - Re-enable Markdown processing via `grunt docs` - A bit of initial inline documentation for crosjdoc. Need to evaluate whether this is worth doing everywhere. - New `search-playground` package for experimenting with search and search weights. - Swap itemClassProvider for more generic itemPropProvider - Add crojsdoc config file - Export React, because third party packages can't require things from our app - [FEATURE] Bring back static file support in third party packages via `nylas://translate/IMG_20150417_124142.jpg` - Fix invariant error with search bar - [FEATURE] "Show Original" under Message actions - Fix DatabaseView so that many archives at once don't cause problems Test Plan: Run specs Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1426
53 lines
928 B
Text
53 lines
928 B
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
.search-bar,
|
|
.search-settings-bar {
|
|
.header {
|
|
color: @text-color-very-subtle;
|
|
font-weight: @font-weight-semi-bold;
|
|
font-size: @font-size-small;
|
|
padding-top:@padding-small-horizontal;
|
|
display:block;
|
|
}
|
|
}
|
|
|
|
.search-settings-bar {
|
|
padding:15px;
|
|
padding-bottom:25px;
|
|
border-bottom:1px solid #ccc;
|
|
background: url(nylas://search-playground/cloudine.png) top right no-repeat;
|
|
background-size:contain;
|
|
|
|
.field {
|
|
display:inline-block;
|
|
padding-right:15px;
|
|
}
|
|
input[type=range] {
|
|
margin-left:10px;
|
|
position:relative;
|
|
top:3px;
|
|
}
|
|
input[type=text] {
|
|
margin-left:10px;
|
|
width:40px;
|
|
padding-bottom:0;
|
|
}
|
|
}
|
|
|
|
.search-bottom-bar {
|
|
order:100;
|
|
text-align:right;
|
|
padding-top:15px;
|
|
padding-bottom:15px;
|
|
.btn {
|
|
margin-right:15px;
|
|
}
|
|
}
|
|
|
|
.search-playground {
|
|
.thread-list {
|
|
position: relative;
|
|
flex: 1;
|
|
}
|
|
}
|