625 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			625 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Plaintext
		
	
	
@import "../../style/themes/default";
 | 
						|
@import "../../style/mixins/index";
 | 
						|
@import "../../input/style/mixin";
 | 
						|
@import "../../button/style/mixin";
 | 
						|
@import "../../grid/style/mixin";
 | 
						|
@import "./mixin";
 | 
						|
 | 
						|
@form-prefix-cls: ~"@{ant-prefix}-form";
 | 
						|
@form-component-height: @input-height-base;
 | 
						|
@form-component-max-height: @input-height-lg;
 | 
						|
@form-feedback-icon-size: 14px;
 | 
						|
@form-help-margin-top: (@form-component-height - @form-component-max-height) / 2 + 2px;
 | 
						|
 | 
						|
.@{form-prefix-cls} {
 | 
						|
  .reset-component;
 | 
						|
  .reset-form;
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-item-required:before {
 | 
						|
  display: inline-block;
 | 
						|
  margin-right: 4px;
 | 
						|
  content: "*";
 | 
						|
  font-family: SimSun;
 | 
						|
  line-height: 1;
 | 
						|
  font-size: @font-size-base;
 | 
						|
  color: @label-required-color;
 | 
						|
  .@{form-prefix-cls}-hide-required-mark & {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Radio && Checkbox
 | 
						|
input[type="radio"],
 | 
						|
input[type="checkbox"] {
 | 
						|
  &[disabled],
 | 
						|
  &.disabled {
 | 
						|
    cursor: not-allowed;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// These classes are used directly on <label>s
 | 
						|
.@{ant-prefix}-radio-inline,
 | 
						|
.@{ant-prefix}-radio-vertical,
 | 
						|
.@{ant-prefix}-checkbox-inline,
 | 
						|
.@{ant-prefix}-checkbox-vertical {
 | 
						|
  &.disabled {
 | 
						|
    cursor: not-allowed;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// These classes are used on elements with <label> descendants
 | 
						|
.@{ant-prefix}-radio,
 | 
						|
.@{ant-prefix}-checkbox {
 | 
						|
  &.disabled {
 | 
						|
    label {
 | 
						|
      cursor: not-allowed;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Form items
 | 
						|
// You should wrap labels and controls in .@{form-prefix-cls}-item for optimum spacing
 | 
						|
.@{form-prefix-cls}-item {
 | 
						|
  label {
 | 
						|
    position: relative;
 | 
						|
 | 
						|
    > .@{iconfont-css-prefix} {
 | 
						|
      vertical-align: top;
 | 
						|
      font-size: @font-size-base;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .reset-component;
 | 
						|
  margin-bottom: @form-item-margin-bottom;
 | 
						|
  vertical-align: top;
 | 
						|
 | 
						|
  // nested FormItem
 | 
						|
  &-control > &:last-child,
 | 
						|
  & [class^="@{ant-prefix}-col-"] > &:only-child {
 | 
						|
    margin-bottom: -@form-item-margin-bottom;
 | 
						|
  }
 | 
						|
 | 
						|
  &-control {
 | 
						|
    line-height: @form-component-max-height - 0.0001px; // https://github.com/ant-design/ant-design/issues/8220
 | 
						|
    position: relative;
 | 
						|
    .clearfix;
 | 
						|
  }
 | 
						|
 | 
						|
  &-children {
 | 
						|
    position: relative;
 | 
						|
  }
 | 
						|
 | 
						|
  &-with-help {
 | 
						|
    margin-bottom: @form-item-margin-bottom - @font-size-base * @line-height-base - @form-help-margin-top;
 | 
						|
  }
 | 
						|
 | 
						|
  &-label {
 | 
						|
    text-align: right;
 | 
						|
    vertical-align: middle;
 | 
						|
    line-height: @form-component-max-height - 0.0001px;
 | 
						|
    display: inline-block;
 | 
						|
    overflow: hidden;
 | 
						|
    white-space: nowrap;
 | 
						|
 | 
						|
    label {
 | 
						|
      color: @label-color;
 | 
						|
 | 
						|
      &:after {
 | 
						|
        & when (@form-item-trailing-colon=true) {
 | 
						|
          content: ":";
 | 
						|
        }
 | 
						|
        & when not (@form-item-trailing-colon=true) {
 | 
						|
          content: " ";
 | 
						|
        }
 | 
						|
        margin: 0 8px 0 2px;
 | 
						|
        position: relative;
 | 
						|
        top: -0.5px;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-switch {
 | 
						|
    margin: 2px 0 4px;
 | 
						|
  }
 | 
						|
 | 
						|
  &-no-colon &-label label:after {
 | 
						|
    content: " ";
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-explain,
 | 
						|
.@{form-prefix-cls}-extra {
 | 
						|
  color: @text-color-secondary;
 | 
						|
  line-height: @line-height-base;
 | 
						|
  transition: color .15s @ease-out;
 | 
						|
  margin-top: @form-help-margin-top;
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-extra {
 | 
						|
  padding-top: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-text {
 | 
						|
  display: inline-block;
 | 
						|
  padding-right: 8px;
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-split {
 | 
						|
  display: block;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
// 表单下的输入框尺寸唯一: 大尺寸
 | 
						|
form {
 | 
						|
  .has-feedback {
 | 
						|
    .@{ant-prefix}-input {
 | 
						|
      padding-right: 24px;
 | 
						|
    }
 | 
						|
 | 
						|
    // Fix overlapping between feedback icon and <Select>'s arrow.
 | 
						|
    // https://github.com/ant-design/ant-design/issues/4431
 | 
						|
    > .@{ant-prefix}-select .@{ant-prefix}-select-arrow,
 | 
						|
    > .@{ant-prefix}-select .@{ant-prefix}-select-selection__clear,
 | 
						|
    :not(.@{ant-prefix}-input-group-addon) > .@{ant-prefix}-select .@{ant-prefix}-select-arrow,
 | 
						|
    :not(.@{ant-prefix}-input-group-addon) > .@{ant-prefix}-select .@{ant-prefix}-select-selection__clear {
 | 
						|
      right: 28px;
 | 
						|
    }
 | 
						|
    > .@{ant-prefix}-select .@{ant-prefix}-select-selection-selected-value,
 | 
						|
    :not(.@{ant-prefix}-input-group-addon) > .@{ant-prefix}-select .@{ant-prefix}-select-selection-selected-value {
 | 
						|
      padding-right: 42px;
 | 
						|
    }
 | 
						|
 | 
						|
    .@{ant-prefix}-cascader-picker {
 | 
						|
      &-arrow {
 | 
						|
        margin-right: 17px;
 | 
						|
      }
 | 
						|
      &-clear {
 | 
						|
        right: 28px;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    // Fix issue: https://github.com/ant-design/ant-design/issues/7854
 | 
						|
    .@{ant-prefix}-input-search:not(.@{ant-prefix}-input-search-enter-button) {
 | 
						|
      .@{ant-prefix}-input-suffix {
 | 
						|
        right: 28px;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    // Fix issue: https://github.com/ant-design/ant-design/issues/4783
 | 
						|
    .@{ant-prefix}-calendar-picker,
 | 
						|
    .@{ant-prefix}-time-picker {
 | 
						|
      &-icon,
 | 
						|
      &-clear {
 | 
						|
        right: 28px;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  textarea.@{ant-prefix}-input {
 | 
						|
    height: auto;
 | 
						|
  }
 | 
						|
 | 
						|
  // input[type=file]
 | 
						|
  .@{ant-prefix}-upload {
 | 
						|
    background: transparent;
 | 
						|
  }
 | 
						|
 | 
						|
  input[type="radio"],
 | 
						|
  input[type="checkbox"] {
 | 
						|
    width: 14px;
 | 
						|
    height: 14px;
 | 
						|
  }
 | 
						|
 | 
						|
  // Radios and checkboxes on same line
 | 
						|
  .@{ant-prefix}-radio-inline,
 | 
						|
  .@{ant-prefix}-checkbox-inline {
 | 
						|
    display: inline-block;
 | 
						|
    vertical-align: middle;
 | 
						|
    font-weight: normal;
 | 
						|
    cursor: pointer;
 | 
						|
    margin-left: 8px;
 | 
						|
 | 
						|
    &:first-child {
 | 
						|
      margin-left: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-checkbox-vertical,
 | 
						|
  .@{ant-prefix}-radio-vertical {
 | 
						|
    display: block;
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-checkbox-vertical + .@{ant-prefix}-checkbox-vertical,
 | 
						|
  .@{ant-prefix}-radio-vertical + .@{ant-prefix}-radio-vertical {
 | 
						|
    margin-left: 0;
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-input-number + .@{form-prefix-cls}-text {
 | 
						|
    margin-left: 8px;
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-select,
 | 
						|
  .@{ant-prefix}-cascader-picker {
 | 
						|
    width: 100%;
 | 
						|
  }
 | 
						|
 | 
						|
  // Don't impact select inside input group
 | 
						|
  .@{ant-prefix}-input-group .@{ant-prefix}-select,
 | 
						|
  .@{ant-prefix}-input-group .@{ant-prefix}-cascader-picker {
 | 
						|
    width: auto;
 | 
						|
  }
 | 
						|
 | 
						|
  // fix input with addon position. https://github.com/ant-design/ant-design/issues/8243
 | 
						|
  .@{ant-prefix}-input-group-wrapper {
 | 
						|
    vertical-align: middle;
 | 
						|
    position: relative;
 | 
						|
    top: -1px;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Input combined with select
 | 
						|
.@{ant-prefix}-input-group-wrap {
 | 
						|
  .@{ant-prefix}-select-selection {
 | 
						|
    border-bottom-left-radius: 0;
 | 
						|
    border-top-left-radius: 0;
 | 
						|
    &:hover {
 | 
						|
      border-color: @border-color-base;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-select-selection--single {
 | 
						|
    margin-left: -1px;
 | 
						|
    height: @input-height-lg;
 | 
						|
    background-color: #eee;
 | 
						|
    .@{ant-prefix}-select-selection__rendered {
 | 
						|
      padding-left: 8px;
 | 
						|
      padding-right: 25px;
 | 
						|
      line-height: 30px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-select-open .@{ant-prefix}-select-selection {
 | 
						|
    border-color: @border-color-base;
 | 
						|
    box-shadow: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Form layout
 | 
						|
//== Vertical Form
 | 
						|
.make-vertical-layout-label() {
 | 
						|
  padding: @form-vertical-label-padding;
 | 
						|
  margin: @form-vertical-label-margin;
 | 
						|
  display: block;
 | 
						|
  text-align: left;
 | 
						|
  line-height: @line-height-base;
 | 
						|
 | 
						|
  label:after {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.make-vertical-layout() {
 | 
						|
  .@{form-prefix-cls}-item-label,
 | 
						|
  .@{form-prefix-cls}-item-control-wrapper {
 | 
						|
    display: block;
 | 
						|
    width: 100%;
 | 
						|
  }
 | 
						|
  .@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-vertical .@{form-prefix-cls}-item-label,
 | 
						|
  // when labelCol is 24, it is a vertical form
 | 
						|
.@{ant-prefix}-col-24.@{form-prefix-cls}-item-label,
 | 
						|
.@{ant-prefix}-col-xl-24.@{form-prefix-cls}-item-label {
 | 
						|
  .make-vertical-layout-label();
 | 
						|
}
 | 
						|
 | 
						|
.@{form-prefix-cls}-vertical {
 | 
						|
  .@{form-prefix-cls}-item {
 | 
						|
    padding-bottom: 8px;
 | 
						|
  }
 | 
						|
  .@{form-prefix-cls}-item-control {
 | 
						|
    line-height: @line-height-base;
 | 
						|
  }
 | 
						|
  .@{form-prefix-cls}-explain,
 | 
						|
  .@{form-prefix-cls}-extra {
 | 
						|
    margin-top: 2px;
 | 
						|
    margin-bottom: -4px;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: @screen-xs-max) {
 | 
						|
  .make-vertical-layout();
 | 
						|
  .@{ant-prefix}-col-xs-24.@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: @screen-sm-max) {
 | 
						|
  .@{ant-prefix}-col-sm-24.@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: @screen-md-max) {
 | 
						|
  .@{ant-prefix}-col-md-24.@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: @screen-lg-max) {
 | 
						|
  .@{ant-prefix}-col-lg-24.@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: @screen-xl-max) {
 | 
						|
  .@{ant-prefix}-col-xl-24.@{form-prefix-cls}-item-label {
 | 
						|
    .make-vertical-layout-label();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
//== Inline Form
 | 
						|
.@{form-prefix-cls}-inline {
 | 
						|
  .@{form-prefix-cls}-item {
 | 
						|
    display: inline-block;
 | 
						|
    margin-right: 16px;
 | 
						|
    margin-bottom: 0;
 | 
						|
 | 
						|
    &-with-help {
 | 
						|
      margin-bottom: 24px;
 | 
						|
    }
 | 
						|
 | 
						|
    > .@{form-prefix-cls}-item-control-wrapper, > .@{form-prefix-cls}-item-label {
 | 
						|
      display: inline-block;
 | 
						|
      vertical-align: middle;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{form-prefix-cls}-text {
 | 
						|
    display: inline-block;
 | 
						|
  }
 | 
						|
 | 
						|
  .has-feedback {
 | 
						|
    display: inline-block;
 | 
						|
  }
 | 
						|
 | 
						|
  // Fix https://github.com/ant-design/ant-design/issues/1040
 | 
						|
  .@{form-prefix-cls}-explain {
 | 
						|
    position: absolute;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Validation state
 | 
						|
.has-success,
 | 
						|
.has-warning,
 | 
						|
.has-error,
 | 
						|
.is-validating {
 | 
						|
  &.has-feedback .@{form-prefix-cls}-item-children:after {
 | 
						|
    position: absolute;
 | 
						|
    top: 50%;
 | 
						|
    right: 0;
 | 
						|
    visibility: visible;
 | 
						|
    pointer-events: none;
 | 
						|
    width: @form-component-height;
 | 
						|
    height: 20px;
 | 
						|
    line-height: 20px;
 | 
						|
    margin-top: -10px;
 | 
						|
    text-align: center;
 | 
						|
    font-size: @form-feedback-icon-size;
 | 
						|
    animation: zoomIn .3s @ease-out-back;
 | 
						|
    .iconfont-font("");
 | 
						|
    z-index: 1;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.has-success {
 | 
						|
  &.has-feedback .@{form-prefix-cls}-item-children:after {
 | 
						|
    animation-name: diffZoomIn1 !important;
 | 
						|
    content: '\e630';
 | 
						|
    color: @success-color;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.has-warning {
 | 
						|
  .form-control-validation(@warning-color; @warning-color;);
 | 
						|
 | 
						|
  &.has-feedback .@{form-prefix-cls}-item-children:after {
 | 
						|
    content: '\e62c';
 | 
						|
    color: @warning-color;
 | 
						|
    animation-name: diffZoomIn3 !important;
 | 
						|
  }
 | 
						|
 | 
						|
  //select
 | 
						|
  .@{ant-prefix}-select {
 | 
						|
    &-selection {
 | 
						|
      border-color: @warning-color;
 | 
						|
    }
 | 
						|
    &-open .@{ant-prefix}-select-selection,
 | 
						|
    &-focused .@{ant-prefix}-select-selection {
 | 
						|
      .active(@warning-color);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  // arrow and icon
 | 
						|
  .@{ant-prefix}-calendar-picker-icon:after,
 | 
						|
  .@{ant-prefix}-time-picker-icon:after,
 | 
						|
  .@{ant-prefix}-picker-icon:after,
 | 
						|
  .@{ant-prefix}-select-arrow,
 | 
						|
  .@{ant-prefix}-cascader-picker-arrow {
 | 
						|
    color: @warning-color;
 | 
						|
  }
 | 
						|
 | 
						|
  //input-number, timepicker
 | 
						|
  .@{ant-prefix}-input-number,
 | 
						|
  .@{ant-prefix}-time-picker-input {
 | 
						|
    border-color: @warning-color;
 | 
						|
    &-focused,
 | 
						|
    &:focus {
 | 
						|
      .active(@warning-color);
 | 
						|
    }
 | 
						|
    &:not([disabled]):hover {
 | 
						|
      border-color: @warning-color;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-cascader-picker:focus .@{ant-prefix}-cascader-input {
 | 
						|
    .active(@warning-color);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.has-error {
 | 
						|
  .form-control-validation(@error-color; @error-color;);
 | 
						|
 | 
						|
  &.has-feedback .@{form-prefix-cls}-item-children:after {
 | 
						|
    content: '\e62e';
 | 
						|
    color: @error-color;
 | 
						|
    animation-name: diffZoomIn2 !important;
 | 
						|
  }
 | 
						|
 | 
						|
  //select
 | 
						|
  .@{ant-prefix}-select {
 | 
						|
    &-selection {
 | 
						|
      border-color: @error-color;
 | 
						|
    }
 | 
						|
    &-open .@{ant-prefix}-select-selection,
 | 
						|
    &-focused .@{ant-prefix}-select-selection {
 | 
						|
      .active(@error-color);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-select.@{ant-prefix}-select-auto-complete {
 | 
						|
    .@{ant-prefix}-input:focus {
 | 
						|
      border-color: @error-color;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-input-group-addon .@{ant-prefix}-select {
 | 
						|
    &-selection {
 | 
						|
      border-color: transparent;
 | 
						|
      box-shadow: none;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  // arrow and icon
 | 
						|
  .@{ant-prefix}-calendar-picker-icon:after,
 | 
						|
  .@{ant-prefix}-time-picker-icon:after,
 | 
						|
  .@{ant-prefix}-picker-icon:after,
 | 
						|
  .@{ant-prefix}-select-arrow,
 | 
						|
  .@{ant-prefix}-cascader-picker-arrow {
 | 
						|
    color: @error-color;
 | 
						|
  }
 | 
						|
 | 
						|
  //input-number, timepicker
 | 
						|
  .@{ant-prefix}-input-number,
 | 
						|
  .@{ant-prefix}-time-picker-input {
 | 
						|
    border-color: @error-color;
 | 
						|
    &-focused,
 | 
						|
    &:focus {
 | 
						|
      .active(@error-color);
 | 
						|
    }
 | 
						|
    &:not([disabled]):hover {
 | 
						|
      border-color: @error-color;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  .@{ant-prefix}-mention-wrapper {
 | 
						|
    .@{ant-prefix}-mention-editor {
 | 
						|
      &,
 | 
						|
      &:not([disabled]):hover {
 | 
						|
        border-color: @error-color;
 | 
						|
      }
 | 
						|
    }
 | 
						|
    &.@{ant-prefix}-mention-active:not([disabled]) .@{ant-prefix}-mention-editor,
 | 
						|
    .@{ant-prefix}-mention-editor:not([disabled]):focus {
 | 
						|
      .active(@error-color);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-cascader-picker:focus .@{ant-prefix}-cascader-input {
 | 
						|
    .active(@error-color);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.is-validating {
 | 
						|
  &.has-feedback .@{form-prefix-cls}-item-children:after {
 | 
						|
    display: inline-block;
 | 
						|
    animation: loadingCircle 1s infinite linear;
 | 
						|
    content: "\e64d";
 | 
						|
    color: @primary-color;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.@{ant-prefix}-advanced-search-form {
 | 
						|
  .@{form-prefix-cls}-item {
 | 
						|
    margin-bottom: @form-item-margin-bottom;
 | 
						|
 | 
						|
    &-with-help {
 | 
						|
      margin-bottom: @form-item-margin-bottom - @font-size-base * @line-height-base - @form-help-margin-top;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.show-help-motion(@className, @keyframeName, @duration: @animation-duration-slow) {
 | 
						|
  .make-motion(@className, @keyframeName, @duration);
 | 
						|
  .@{className}-enter,
 | 
						|
  .@{className}-appear {
 | 
						|
    opacity: 0;
 | 
						|
    animation-timing-function: @ease-in-out;
 | 
						|
  }
 | 
						|
  .@{className}-leave {
 | 
						|
    animation-timing-function: @ease-in-out;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.show-help-motion(show-help, antShowHelp, 0.15s);
 | 
						|
 | 
						|
@keyframes antShowHelpIn {
 | 
						|
  0% {
 | 
						|
    opacity: 0;
 | 
						|
    transform: translateY(-5px);
 | 
						|
  }
 | 
						|
  100% {
 | 
						|
    opacity: 1;
 | 
						|
    transform: translateY(0);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@keyframes antShowHelpOut {
 | 
						|
  to {
 | 
						|
    opacity: 0;
 | 
						|
    transform: translateY(-5px);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// need there different zoom animation
 | 
						|
// otherwise won't trigger anim
 | 
						|
@keyframes diffZoomIn1 {
 | 
						|
  0% {
 | 
						|
    transform: scale(0);
 | 
						|
  }
 | 
						|
  100% {
 | 
						|
    transform: scale(1);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@keyframes diffZoomIn2 {
 | 
						|
  0% {
 | 
						|
    transform: scale(0);
 | 
						|
  }
 | 
						|
  100% {
 | 
						|
    transform: scale(1);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@keyframes diffZoomIn3 {
 | 
						|
  0% {
 | 
						|
    transform: scale(0);
 | 
						|
  }
 | 
						|
  100% {
 | 
						|
    transform: scale(1);
 | 
						|
  }
 | 
						|
}
 |