//
// Component: Button
//
// ========================================================================


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

@button-line-height:                         @global-control-height;

@button-padding-horizontal:                  26px;

@button-large-padding-horizontal:            32px;

@button-default-background:                  rgba(255, 255, 255, 0);
@button-default-color:                       @global-primary-background;

@button-primary-hover-background:            @global-secondary-background;
@button-primary-active-background:           @global-secondary-background;

@button-secondary-hover-background:          @global-primary-background;

@button-link-hover-text-decoration:          none;

//
// Master
//

@button-border-width:                        2px;
@button-font-weight:                         @global-secondary-font-weight;

@button-default-border:                      @global-primary-background;
@button-default-hover-border:                @global-secondary-background;
@button-default-active-border:               @global-secondary-background;

@button-text-mode:                           arrow;


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

.hook-button() {}

.hook-button-hover() {}

.hook-button-focus() {}

.hook-button-active() {}


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

.hook-button-default() {}

.hook-button-default-hover() {}

.hook-button-default-active() {}

//
// Primary
//

.hook-button-primary() {}

.hook-button-primary-hover() {}

.hook-button-primary-active() {}

//
// Secondary
//

.hook-button-secondary() {}

.hook-button-secondary-hover() {}

.hook-button-secondary-active() {}

//
// Danger
//

.hook-button-danger() {}

.hook-button-danger-hover() {}

.hook-button-danger-active() {}


// Disabled
// ========================================================================

.hook-button-disabled() {}


// Size modifiers
// ========================================================================

.hook-button-small() {}

.hook-button-large() {}


// Text modifier
// ========================================================================

.hook-button-text() {}

.hook-button-text-hover() {}

.hook-button-text-disabled() {}


// Link modifier
// ========================================================================

.hook-button-link() {}


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

.hook-button-misc() {}


// Inverse
// ========================================================================

.hook-inverse-button-default() {}
.hook-inverse-button-default-hover() {}
.hook-inverse-button-default-active() {}

.hook-inverse-button-primary() {}
.hook-inverse-button-primary-hover() {}
.hook-inverse-button-primary-active() {}

.hook-inverse-button-secondary() {}
.hook-inverse-button-secondary-hover() {}
.hook-inverse-button-secondary-active() {}

.hook-inverse-button-text() {}
.hook-inverse-button-text-hover() {}
.hook-inverse-button-text-disabled() {}

.hook-inverse-button-link() {}
