mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-07 16:48:02 +08:00
c629967c3d
commit423cf4f407
Author: Ben Gotow <ben@foundry376.com> Date: Fri Oct 11 22:33:53 2019 -0500 Replace belcard with homegrown VCard parser because our needs are minimal and the linux binary has relocation issues commit4ae19c0ed5
Author: Ben Gotow <ben@foundry376.com> Date: Fri Oct 11 10:38:26 2019 -0500 Skip building a few more belr components, still looking for relocation error cause commita7ec02a449
Author: Ben Gotow <ben@foundry376.com> Date: Thu Oct 10 22:16:15 2019 -0500 Fix windows SRV record lookups for contact directory autodiscovery commit318a31d279
Author: Ben Gotow <ben@foundry376.com> Date: Thu Oct 10 20:50:06 2019 -0500 Leave vcard_grammar unpacked so mailsync can find it at runtime commitbf7e43e37d
Author: Ben Gotow <ben@foundry376.com> Date: Thu Oct 10 20:43:01 2019 -0500 Fix bug in icon case sensitivity commitc283513653
Author: Ben Gotow <ben@foundry376.com> Date: Thu Oct 10 17:29:24 2019 -0500 Renew Windows Authenticode code signing cert (there goes $500…) commitd13235f65b
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 23:25:34 2019 -0500 Bump mailsync to move belr dlls commit00ca6431df
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 23:22:53 2019 -0500 Bump to xcode9 to fix odd C++11 error commit47903c99c4
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 23:01:32 2019 -0500 Bump mailsync to build belr as a dll instead of a static lib commit21d645d4e7
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 22:38:24 2019 -0500 Bump mailsync commit3f943031cb
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 21:57:39 2019 -0500 Bump mailsync to fix windows libetpan failure commit8fb55ca0fc
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 21:36:57 2019 -0500 Bump mailsync, add grammar commitb959c54e50
Author: Ben Gotow <ben@foundry376.com> Date: Wed Oct 9 21:20:13 2019 -0500 Bump mailsync for linux / win32 commitddb5229d67
Author: Ben Gotow <ben@foundry376.com> Date: Tue Oct 8 22:44:12 2019 -0500 Bump mailsync commitf80e1bc422
Author: Ben Gotow <ben@foundry376.com> Date: Tue Oct 8 11:11:39 2019 -0500 Fix LESS linter failures commit66dc60a731
Author: Ben Gotow <ben@foundry376.com> Date: Tue Oct 8 11:00:37 2019 -0500 Extend participant search to return / expand groups commit3bded91307
Author: Ben Gotow <ben@foundry376.com> Date: Tue Oct 8 03:18:11 2019 -0500 Add comments, etc commit4ede5446de
Author: Ben Gotow <ben@foundry376.com> Date: Tue Oct 8 02:38:50 2019 -0500 Google People API contacts CRUD alongside CardDav commit96c6a64e46
Author: Ben Gotow <ben@foundry376.com> Date: Mon Oct 7 14:00:34 2019 -0500 Build ContactBook concept to track which accounts have sync running commit1f6aab1083
Author: Ben Gotow <ben@foundry376.com> Date: Mon Oct 7 11:38:03 2019 -0500 Contact and contact group CRUD, address book menus commitb877c58d48
Author: Ben Gotow <ben@foundry376.com> Date: Sun Oct 6 16:32:33 2019 -0500 Editing contact names working commit761079304c
Author: Ben Gotow <ben@foundry376.com> Date: Mon Sep 30 15:42:59 2019 -0500 Improved styling of YYYYMMDD field commit71a567276b
Author: Ben Gotow <ben@foundry376.com> Date: Mon Sep 30 15:06:28 2019 -0500 UI for edit + move + delete contacts commitf1967dd603
Author: Ben Gotow <ben@foundry376.com> Date: Thu Sep 26 13:50:44 2019 -0500 Allow you to turn on / off the “Found in Mail” autocompletions commit0c2b0eb03b
Author: Ben Gotow <ben@foundry376.com> Date: Thu Sep 26 13:50:14 2019 -0500 Improve contacts window launch perf by lazy loading composer support, scanning less of fs for themes commit07abd6cb71
Author: Ben Gotow <ben@foundry376.com> Date: Thu Sep 26 04:36:10 2019 -0500 Support for CardDav contact display, better groups presentation commit0a9e166d79
Author: Ben Gotow <ben@foundry376.com> Date: Tue Sep 24 12:42:37 2019 -0500 Add hidden attribute to the model in prep for deletion of auto-created contacts commite6ce3b2af9
Author: Ben Gotow <ben@foundry376.com> Date: Tue Sep 24 12:12:52 2019 -0500 Initial pass at address book commit740d7e8655
Author: Ben Gotow <ben@foundry376.com> Date: Tue Sep 24 08:27:06 2019 -0500 Make headers of Preferences > Accounts consistent with General
213 lines
4.6 KiB
Text
213 lines
4.6 KiB
Text
@import 'ui-variables';
|
|
|
|
.selection-bar-absolute-enter {
|
|
opacity: 0;
|
|
.inner {
|
|
top: -100%;
|
|
}
|
|
}
|
|
|
|
.selection-bar-absolute-enter.selection-bar-absolute-enter-active {
|
|
opacity: 1;
|
|
.inner {
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.selection-bar-absolute-leave {
|
|
opacity: 1;
|
|
.inner {
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.selection-bar-absolute-leave.selection-bar-absolute-leave-active {
|
|
opacity: 0;
|
|
.inner {
|
|
top: -100%;
|
|
}
|
|
}
|
|
|
|
.sheet-toolbar .selection-bar {
|
|
// This item sits in the toolbar and takes up all the remaining
|
|
// space from the toolbar-spacer divs, but flex-shrink means that
|
|
// it shrinks before any other element when not enough space is available.
|
|
|
|
// This is important because the spacers will prevent items from being clickable,
|
|
// (webkit-app-region:drag) even if we're covering them up. We need to make them
|
|
// 0px wide!
|
|
|
|
width: 100%;
|
|
flex-shrink: 100;
|
|
height: 38px;
|
|
z-index: 10000;
|
|
-webkit-app-region: drag;
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
left: -1px;
|
|
right: -1px;
|
|
top: 0;
|
|
height: 37px;
|
|
border-left: 1px solid @border-color-divider;
|
|
border-right: 1px solid @border-color-divider;
|
|
background-color: @background-primary;
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
.inner {
|
|
position: absolute;
|
|
width: 100%;
|
|
display: flex;
|
|
-webkit-app-region: no-drag;
|
|
transition: top 0.2s ease-in-out;
|
|
|
|
.centered {
|
|
flex: 1;
|
|
cursor: default;
|
|
text-align: center;
|
|
color: @text-color-subtle;
|
|
line-height: 38px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
-webkit-app-region: drag;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-container {
|
|
.list-rows {
|
|
// Note: This fills empty / unrendered space with the dividers.
|
|
// background-size needs to be provided.
|
|
background: linear-gradient(to top, @list-border 0px, @list-bg 1px) repeat;
|
|
}
|
|
|
|
.list-rows > div {
|
|
// Note: This allows rows to be animated in and out!
|
|
transition: top ease-out 120ms;
|
|
}
|
|
.list-item {
|
|
font-size: @font-size-base;
|
|
color: @text-color;
|
|
background: @list-bg;
|
|
|
|
&:hover {
|
|
background: darken(@list-bg, 5%);
|
|
}
|
|
|
|
&.selected {
|
|
background: @list-selected-bg;
|
|
color: @list-selected-color;
|
|
border-bottom: 1px solid @list-selected-border;
|
|
}
|
|
|
|
&.next-is-selected {
|
|
border-bottom: 1px solid @list-selected-border;
|
|
}
|
|
|
|
&.focused {
|
|
background: @list-focused-bg;
|
|
color: @list-focused-color;
|
|
border-bottom: 1px solid @list-focused-border;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.is-blurred {
|
|
.list-container {
|
|
.list-item {
|
|
&.selected {
|
|
background: fadeout(desaturate(@list-selected-bg, 100%), 65%);
|
|
border-bottom: 1px solid fadeout(desaturate(@list-selected-border, 100%), 65%);
|
|
color: @text-color;
|
|
}
|
|
|
|
&.focused {
|
|
background: fadeout(desaturate(@list-focused-bg, 100%), 65%);
|
|
border-bottom: 1px solid fadeout(desaturate(@list-focused-border, 100%), 65%);
|
|
color: @text-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-tabular {
|
|
flex: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.list-tabular-item {
|
|
position: relative;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid @list-border;
|
|
border-left: 4px solid transparent;
|
|
|
|
&:hover {
|
|
cursor: default;
|
|
}
|
|
|
|
&.keyboard-cursor {
|
|
border-left: 4px solid @list-focused-bg;
|
|
}
|
|
|
|
&.selected {
|
|
.checkmark .inner {
|
|
background-color: @accent-primary;
|
|
background-image: url(images/thread-list/checkbox-checkmark@2x.png);
|
|
border: none;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
|
|
&.selected.focused {
|
|
.checkmark .inner {
|
|
background-color: @list-bg;
|
|
background-image: url(images/thread-list/checkbox-checkmark-activerow@2x.png);
|
|
border: none;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
&.focused {
|
|
.checkmark .inner {
|
|
border: 1px solid @accent-primary;
|
|
}
|
|
}
|
|
|
|
.checkmark {
|
|
padding: 11px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
.inner {
|
|
width: 14px;
|
|
height: 14px;
|
|
border: 1px solid @list-border;
|
|
border-radius: 2px;
|
|
background: transparent;
|
|
background-size: 12px 9px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-column {
|
|
// The width is set by React.
|
|
display: inherit;
|
|
padding: 0 @padding-base-horizontal;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
align-items: center;
|
|
|
|
&:first-child {
|
|
padding-left: @padding-base-horizontal - 4;
|
|
}
|
|
&:last-child {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|