@import "ui-variables"; @import "ui-mixins"; .sidebar-activity-transition-wrapper { order: 2; z-index: 2; overflow-y: auto; &.sidebar-activity-empty { position: absolute; bottom: 0; width: 100%; } } .sidebar-activity { display: block; width: 100%; bottom: 0; background: @background-off-primary; font-size: @font-size-small; color: @text-color-subtle; line-height:@line-height-computed * 0.95; box-shadow:inset 0 1px 0 @border-color-divider; &:hover { cursor: default } .item { border-bottom:1px solid @border-color-divider; &:hover { cursor: default } .inner { padding: @padding-large-vertical*1.2 @padding-base-horizontal @padding-large-vertical*1.2 @padding-base-horizontal; } .count { color: @text-color-very-subtle; float:right; } .btn { display:block; text-align:center; margin-top:4px; margin-bottom:4px; font-size: @font-size-small; } .progress-track { display:block; height:3px; font-size:0; background: rgba(0,0,0,0.1); .progress { transition: width 0.4s; height:3px; background-color: @background-color-info; } } // TODO: Necessary for Chromium 42 to render `activity-opacity-leave` animation // properly. Removing position relative causes the div to remain visible position:relative; opacity: 1; .account-detail-area { max-height: 0; overflow: hidden; transition: max-height 0.2s; } &.expanded-sync { .account-detail-area { max-height: 1000px; } .account.inner { border-top: 1px solid rgba(0,0,0,0.1) } } h2 { font-size: 14px; margin: 0; overflow: hidden; text-overflow: ellipsis; font-weight: 500; } h3 { font-size: 14px; margin: 10px 0 4px 0; } .amount { margin-top: 2px; font-size: 12px; color: @text-color-subtle; } .close-expanded { display: block; margin: 0 @padding-base-horizontal @padding-large-vertical @padding-base-horizontal; } .complete .progress-track .progress { background-color: @nylas-green; } } transition: height 0.4s; transition-delay: 2s; &.sidebar-activity-error { .progress { background-color: @error-color; } } } .activity-opacity-enter { opacity:0; transition: opacity .125s ease-out; } .activity-opacity-enter.activity-opacity-enter-active { opacity:1; } .activity-opacity-leave { opacity:1; transition: opacity .125s ease-in; transition-delay: 0.5s; } .activity-opacity-leave.activity-opacity-leave-active { transition-delay: 0.5s; opacity:0; } .notifications-sticky { width:100%; .notification-info { background-color: @background-color-info; } .notification-developer { background-color: #615396; } .notification-error { background-color: @background-color-error; border-color: @background-color-error; color: @error-color; } .notification-success { border-color: @background-color-success; } .notifications-sticky-item { display:block; font-size: @font-size-base; line-height: @line-height-base; padding: @padding-base-vertical @padding-base-horizontal @padding-base-vertical @padding-base-horizontal; color:@text-color-inverse; border-top:1px solid rgba(0,0,0,0.25); border-bottom:1px solid rgba(0,0,0,0.25); a { float:right; font-size:13px; background-color: rgba(255,255,255,0.2); color:@text-color-inverse; border-radius: 4px; padding:1px; padding-left:6px; padding-right:6px; margin-left:10px; border-top:1px solid transparent; border-bottom:none; } a:hover { background-color: rgba(0,0,0,0.2); border-top:1px solid rgba(0,0,0,0.35); text-decoration:none; color:@text-color-inverse; } i { margin-right:@padding-base-horizontal; } } } body.platform-win32 { .notifications-sticky { .notifications-sticky-item { a { border-radius: 0; } } } }