//
// Component: Form
//
// ========================================================================


// Variables
// ========================================================================

@form-height:                                   @global-height;
@form-border:                                   @global-border;
@form-background:                               @global-background;
@form-color:                                    @global-color;

@form-focus-border:                             @global-primary-background;
@form-focus-background:                         @global-background;
@form-focus-color:                              @global-color;

@form-disabled-border:                          @global-border;
@form-disabled-background:                      #fafafa;
@form-disabled-color:                           @global-muted-color;

@form-placeholder-color:                        @global-muted-color;

@form-gutter:                                   @global-margin;

@form-legend-border:                            @global-border;
@form-legend-font-size:                         round((@global-font-size * 1.28)); // 18px / 20px
@form-legend-line-height:                       round((@form-legend-font-size * 1.68)); // 30px / 34px

@form-small-height:                             @global-height-small;
@form-large-height:                             @global-height-large;
@form-small-font-size:                          @global-font-size; // 14px / 16px
@form-large-font-size:                          round((@global-font-size * 1.14)); // 16px / 18px

@form-danger-border:                            @global-danger-background;
@form-danger-background:                        @global-background;
@form-danger-color:                             @global-color;

@form-success-border:                           @global-success-background;
@form-success-background:                       @global-background;
@form-success-color:                            @global-color;

@form-blank-border:                             @global-border;
@form-blank-border-style:                       solid;

@form-large-width:                              400px;

@form-controls-condensed-margin-vertical:       10px;

@form-stacked-font-weight:                      normal;

@form-horizontal-label-width:                   150px;
@form-horizontal-label-margin-top:              7px;
@form-horizontal-controls-margin-left:          180px;
@form-horizontal-controls-text-padding-top:     7px;

@form-icon-font-size:                           @global-font-size;
@form-icon-color:                               @global-muted-color;

//
// New
//

@form-stacked-font-size:                        round((@global-font-size * 0.85)); // 12px / 14px
@form-stacked-line-height:                      round((@form-stacked-font-size *  1.46)); // 18px / 20px


// Component
// ========================================================================

.hook-form() {
	border-radius: @global-border-radius;
	// Needed for WordPress
	box-shadow: none;
}

// Focus state
.hook-form-focus() {}

// Disabled state
.hook-form-disabled() {}

// Legend
.hook-form-legend() {}


// Validation states
// ========================================================================

//
// Error state
//

.hook-form-danger() {}

//
// Success state
//

.hook-form-success() {}


// Style modifiers
// ========================================================================

.hook-form-blank() {}

.hook-form-blank-focus() { background: @global-background !important; }


// Sub-object: `uk-form-label`
// ========================================================================

.hook-form-stacked-label() {
    font-size: @form-stacked-font-size;
    line-height: @form-stacked-line-height;
    text-transform: uppercase;
}

.hook-form-horizontal-label() {
    font-weight: bold;
    text-align: right;
}


// Miscellaneous
// ========================================================================

.hook-form-misc() {

    .uk-form-help-block {
        color: @global-muted-color;
        font-style: italic;
    }

}