UNPKG

ygd

Version:

An enterprise-class UI design language and React-based implementation

84 lines (83 loc) 1.68 kB
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ .yg-message { box-sizing: content-box; margin: 0; padding: 0; color: #333; font-size: 12px; list-style: none; position: fixed; top: 16px; left: 0; z-index: 1010; width: 100%; pointer-events: none; } .yg-message-notice { padding: 8px; text-align: center; } .yg-message-notice:first-child { margin-top: -8px; } .yg-message-notice-content { display: inline-block; padding: 10px 16px; background: #fff; border-radius: 2px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); pointer-events: all; } .yg-message-success .anticon { color: #228b22; } .yg-message-error .anticon { color: #e2062c; } .yg-message-warning .anticon { color: #ffa812; } .yg-message-info .anticon, .yg-message-loading .anticon { color: #00a1ff; } .yg-message .anticon { position: relative; top: 1px; margin-right: 8px; font-size: 14px; } .yg-message-notice.move-up-leave.move-up-leave-active { overflow: hidden; -webkit-animation-name: MessageMoveOut; animation-name: MessageMoveOut; -webkit-animation-duration: 0.3s; animation-duration: 0.3s; } @-webkit-keyframes MessageMoveOut { 0% { max-height: 150px; padding: 8px; opacity: 1; } 100% { max-height: 0; padding: 0; opacity: 0; } } @keyframes MessageMoveOut { 0% { max-height: 150px; padding: 8px; opacity: 1; } 100% { max-height: 0; padding: 0; opacity: 0; } }