mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
0bd303865e
Summary: Load unread counts from database again, not tags fix(multiselect-list): Clear selection on esc fix(onboarding): Make target=_blank links work in onboarding pages fix(workspace): Items in header and footer regions are in a single column fix(layout): Critical issue for things not 100% height fix(activity-bar): Show in dev mode so you know you're in dev mode fix(quoted-text): Support for #divRplyFwdMsg quoted text marker Test Plan: Run specs Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1484
86 lines
1.6 KiB
Text
86 lines
1.6 KiB
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
@font-face {
|
|
font-family: 'Hurme';
|
|
font-style: normal;
|
|
src: url(nylas://today/assets/HurmeGeometricSans4Thin.otf);
|
|
}
|
|
|
|
.today-icon {
|
|
display:inline-block;
|
|
overflow:hidden;
|
|
width:16px;
|
|
height:16px;
|
|
color:@source-list-bg;
|
|
text-align:center;
|
|
font-weight:500;
|
|
font-size:11px;
|
|
line-height:19px;
|
|
position:relative;
|
|
top:5px;
|
|
background-color:@text-color-very-subtle;
|
|
|
|
&.selected {
|
|
background-color:@accent-primary;
|
|
}
|
|
}
|
|
.today {
|
|
background:url(nylas://today/assets/background.png) top center no-repeat;
|
|
background-size:100%;
|
|
overflow-y:scroll;
|
|
position:absolute;
|
|
width:100%;
|
|
height:100%;
|
|
|
|
.inner {
|
|
|
|
}
|
|
|
|
.to-the-inbox {
|
|
opacity:0.3;
|
|
position:absolute;
|
|
width:100%;
|
|
text-align:center;
|
|
bottom:10px;
|
|
font-weight:@font-weight-semi-bold;
|
|
}
|
|
.centered {
|
|
text-align:center;
|
|
opacity:0.6;
|
|
.time {
|
|
font-family: 'Hurme';
|
|
margin-top:70px;
|
|
font-size:100px;
|
|
line-height:96px;
|
|
}
|
|
.date {
|
|
font-family:@font-family-sans-serif;
|
|
font-weight:@font-weight-normal;
|
|
font-size:22px;
|
|
}
|
|
}
|
|
.boxes {
|
|
display: flex;
|
|
flex-direction:row;
|
|
padding:15px;
|
|
position:absolute;
|
|
bottom:20px;
|
|
width:100%;
|
|
.box {
|
|
margin:15px;
|
|
border-radius: @border-radius-large;
|
|
background-color:white;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.3);
|
|
flex:1;
|
|
height:40vh;
|
|
h2 {
|
|
margin-top:4px;
|
|
padding:12px;
|
|
border-bottom:1px solid #ccc;
|
|
font-size:15px;
|
|
font-weight:@font-weight-semi-bold;
|
|
}
|
|
}
|
|
}
|
|
}
|