UNPKG

react-notification-center

Version:

react-notification-center keep all your notification in a single place

154 lines (137 loc) 3.58 kB
@import './notification.less'; @import './notifications.less'; .react-redux-notification { width: 24px; height: 24px; position: relative; z-index: 99999; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; *, *:before, *:after { box-sizing: border-box; } .r-notifications-icon { width: 10px; height: 10px; border: 1px solid white; border-radius: 50px; text-align: center; line-height: 20px; color: white; position: absolute; z-index: 0; font-size: 10px; cursor: pointer; background-color: #ccc; top: 6px; left: 6px; overflow: hidden; transition: all .2s ease-in-out; &.active { background-color: #ff5c5c; width: 22px; height: 22px; top: 1px; left: 1px; } &:hover { transform: scale(1.1); } } .rn-header { width: 100%; height: 50px; background-color: #fcfcfc; border-bottom: 1px solid #f0f0f0; border-top-right-radius: 3px; border-top-left-radius: 3px; overflow: hidden; h4 { width: 100%; padding: 0px 20px; margin: 0; text-align: center; line-height: 50px; color: #333; } } .rn-content { width: 100%; height: 360px; background-color: white; overflow: hidden; overflow-y: auto; font-size: 14px; .no-rn { width: 100%; height: 100%; text-align: center; color: #999; line-height: 250px; overflow: hidden; } } .rn-footer { width: 100%; height: 40px; background-color: #fcfcfc; border-top: 1px solid #f0f0f0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; overflow: hidden; } .rr-wrapper { box-shadow: 3px 3px 25px #dbdbdb; border-radius: 3px; width: 350px; height: 450px; position: absolute; z-index: 1; &.left { top: 40px; left: -25px; } &:before { content: ''; width: 0; height: 0; border-right: 15px solid transparent; border-left: 15px solid transparent; border-bottom: 15px solid #fcfcfc; position: absolute; top: -15px; left: 21px; } .notification-holder { border-radius: 3px; width: 100%; height: 100%; position: absolute; overflow: hidden; border-radius: 3px; } } &.light-theme { .notification-box { background-color: white; } .notification-list { .header { border-bottom: 1px solid #f0f0f0; h4 { color: #666; } } .contents { li.item { border-bottom: 1px solid #f9f9f9; .short-desc { color: #444; } } } .footer { border-top: 1px solid #f0f0f0; } } } }