170 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			170 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
| @import "../../style/themes/default";
 | |
| @import "../../style/mixins/index";
 | |
| 
 | |
| @alert-prefix-cls: ~"@{ant-prefix}-alert";
 | |
| 
 | |
| @alert-message-color: @heading-color;
 | |
| @alert-text-color: @text-color;
 | |
| 
 | |
| .@{alert-prefix-cls} {
 | |
|   .reset-component;
 | |
|   position: relative;
 | |
|   padding: 8px 15px 8px 37px;
 | |
|   border-radius: @border-radius-base;
 | |
| 
 | |
|   &&-no-icon {
 | |
|     padding: 8px 15px;
 | |
|   }
 | |
| 
 | |
|   &-icon {
 | |
|     top: 8px + @font-size-base * @line-height-base / 2 - @font-size-base / 2 + 1px;
 | |
|     left: 16px;
 | |
|     position: absolute;
 | |
|   }
 | |
| 
 | |
|   &-description {
 | |
|     font-size: @font-size-base;
 | |
|     line-height: 22px;
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   &-success {
 | |
|     border: @border-width-base @border-style-base ~`colorPalette("@{success-color}", 3)`;
 | |
|     background-color: ~`colorPalette("@{success-color}", 1)`;
 | |
|     .@{alert-prefix-cls}-icon {
 | |
|       color: @success-color;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &-info {
 | |
|     border: @border-width-base @border-style-base ~`colorPalette("@{info-color}", 3)`;
 | |
|     background-color: ~`colorPalette("@{info-color}", 1)`;
 | |
|     .@{alert-prefix-cls}-icon {
 | |
|       color: @info-color;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &-warning {
 | |
|     border: @border-width-base @border-style-base ~`colorPalette("@{warning-color}", 3)`;
 | |
|     background-color: ~`colorPalette("@{warning-color}", 1)`;
 | |
|     .@{alert-prefix-cls}-icon {
 | |
|       color: @warning-color;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &-error {
 | |
|     border: @border-width-base @border-style-base ~`colorPalette("@{error-color}", 3)`;
 | |
|     background-color: ~`colorPalette("@{error-color}", 1)`;
 | |
|     .@{alert-prefix-cls}-icon {
 | |
|       color: @error-color;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &-close-icon {
 | |
|     font-size: @font-size-sm;
 | |
|     position: absolute;
 | |
|     right: 16px;
 | |
|     top: 8px;
 | |
|     line-height: 22px;
 | |
|     overflow: hidden;
 | |
|     cursor: pointer;
 | |
| 
 | |
|     .@{iconfont-css-prefix}-cross {
 | |
|       color: @text-color-secondary;
 | |
|       transition: color .3s;
 | |
|       &:hover {
 | |
|         color: #404040;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &-close-text {
 | |
|     position: absolute;
 | |
|     right: 16px;
 | |
|   }
 | |
| 
 | |
|   &-with-description {
 | |
|     padding: 15px 15px 15px 64px;
 | |
|     position: relative;
 | |
|     border-radius: @border-radius-base;
 | |
|     color: @text-color;
 | |
|     line-height: @line-height-base;
 | |
|   }
 | |
| 
 | |
|   &-with-description&-no-icon {
 | |
|     padding: 15px;
 | |
|   }
 | |
| 
 | |
|   &-with-description &-icon {
 | |
|     position: absolute;
 | |
|     top: 16px;
 | |
|     left: 24px;
 | |
|     font-size: 24px;
 | |
|   }
 | |
| 
 | |
|   &-with-description &-close-icon {
 | |
|     position: absolute;
 | |
|     top: 16px;
 | |
|     right: 16px;
 | |
|     cursor: pointer;
 | |
|     font-size: @font-size-base;
 | |
|   }
 | |
| 
 | |
|   &-with-description &-message {
 | |
|     font-size: @font-size-lg;
 | |
|     color: @alert-message-color;
 | |
|     display: block;
 | |
|     margin-bottom: 4px;
 | |
|   }
 | |
| 
 | |
|   &-with-description &-description {
 | |
|     display: block;
 | |
|   }
 | |
| 
 | |
|   &&-close {
 | |
|     height: 0 !important;
 | |
|     margin: 0;
 | |
|     padding-top: 0;
 | |
|     padding-bottom: 0;
 | |
|     transition: all .3s @ease-in-out-circ;
 | |
|     transform-origin: 50% 0;
 | |
|   }
 | |
| 
 | |
|   &-slide-up-leave {
 | |
|     animation: antAlertSlideUpOut .3s @ease-in-out-circ;
 | |
|     animation-fill-mode: both;
 | |
|   }
 | |
| 
 | |
|   &-banner {
 | |
|     border-radius: 0;
 | |
|     border: 0;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes antAlertSlideUpIn {
 | |
|   0% {
 | |
|     opacity: 0;
 | |
|     transform-origin: 0% 0%;
 | |
|     transform: scaleY(0);
 | |
|   }
 | |
|   100% {
 | |
|     opacity: 1;
 | |
|     transform-origin: 0% 0%;
 | |
|     transform: scaleY(1);
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes antAlertSlideUpOut {
 | |
|   0% {
 | |
|     opacity: 1;
 | |
|     transform-origin: 0% 0%;
 | |
|     transform: scaleY(1);
 | |
|   }
 | |
|   100% {
 | |
|     opacity: 0;
 | |
|     transform-origin: 0% 0%;
 | |
|     transform: scaleY(0);
 | |
|   }
 | |
| }
 |