107 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
@import "../../input/style/mixin";
 | 
						|
 | 
						|
.form-control-validation(@text-color: @input-color; @border-color: @input-border-color; @background-color: @input-bg) {
 | 
						|
  .@{ant-prefix}-form-explain,
 | 
						|
  .@{ant-prefix}-form-split {
 | 
						|
    color: @text-color;
 | 
						|
  }
 | 
						|
  // čžĺ
ĽćĄçä¸ĺć ĄéŞçść
 | 
						|
  .@{ant-prefix}-input {
 | 
						|
    &,
 | 
						|
    &:hover {
 | 
						|
      border-color: @border-color;
 | 
						|
    }
 | 
						|
 | 
						|
    &:focus {
 | 
						|
      .active(@border-color);
 | 
						|
    }
 | 
						|
 | 
						|
    &:not([disabled]):hover {
 | 
						|
      border-color: @border-color;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-calendar-picker-open .@{ant-prefix}-calendar-picker-input {
 | 
						|
    .active(@border-color);
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-input-prefix {
 | 
						|
    color: @text-color;
 | 
						|
  }
 | 
						|
 | 
						|
  .@{ant-prefix}-input-group-addon {
 | 
						|
    color: @text-color;
 | 
						|
    border-color: @border-color;
 | 
						|
    background-color: @background-color;
 | 
						|
  }
 | 
						|
 | 
						|
  .has-feedback {
 | 
						|
    color: @text-color;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Reset form styles
 | 
						|
// -----------------------------
 | 
						|
// Based on Bootstrap framework
 | 
						|
.reset-form() {
 | 
						|
  legend {
 | 
						|
    display: block;
 | 
						|
    width: 100%;
 | 
						|
    padding: 0;
 | 
						|
    margin-bottom: 20px;
 | 
						|
    font-size: @font-size-lg;
 | 
						|
    line-height: inherit;
 | 
						|
    color: @text-color-secondary;
 | 
						|
    border: 0;
 | 
						|
    border-bottom: @border-width-base @border-style-base @border-color-base;
 | 
						|
  }
 | 
						|
 | 
						|
  label {
 | 
						|
    font-size: @font-size-base;
 | 
						|
  }
 | 
						|
 | 
						|
  input[type="search"] {
 | 
						|
    box-sizing: border-box;
 | 
						|
  }
 | 
						|
 | 
						|
  // Position radios and checkboxes better
 | 
						|
  input[type="radio"],
 | 
						|
  input[type="checkbox"] {
 | 
						|
    line-height: normal;
 | 
						|
  }
 | 
						|
 | 
						|
  input[type="file"] {
 | 
						|
    display: block;
 | 
						|
  }
 | 
						|
 | 
						|
  // Make range inputs behave like textual form controls
 | 
						|
  input[type="range"] {
 | 
						|
    display: block;
 | 
						|
    width: 100%;
 | 
						|
  }
 | 
						|
 | 
						|
  // Make multiple select elements height not fixed
 | 
						|
  select[multiple],
 | 
						|
  select[size] {
 | 
						|
    height: auto;
 | 
						|
  }
 | 
						|
 | 
						|
  // Focus for file, radio, and checkbox
 | 
						|
  input[type="file"]:focus,
 | 
						|
  input[type="radio"]:focus,
 | 
						|
  input[type="checkbox"]:focus {
 | 
						|
    outline: thin dotted;
 | 
						|
    outline: 5px auto -webkit-focus-ring-color; // lesshint duplicateProperty: false
 | 
						|
    outline-offset: -2px;
 | 
						|
  }
 | 
						|
 | 
						|
  // Adjust output element
 | 
						|
  output {
 | 
						|
    display: block;
 | 
						|
    padding-top: 15px;
 | 
						|
    font-size: @font-size-base;
 | 
						|
    line-height: @line-height-base;
 | 
						|
    color: @input-color;
 | 
						|
  }
 | 
						|
}
 |