Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   Component: Button Styles
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
// Tool Button
Kite 8c766d
// -----------------------------------------------------------------------------
Kite 8c766d

Kite 8c766d
.button-tool {
Kite 8c766d
  background-color: @toolbutton-bg-color;
Kite 8c766d
  border: 1 solid @toolbutton-border-color;
Kite 8c766d
  border-radius: 2;
Kite 8c766d
  color: @toolbutton-text-color;
Kite 8c766d
  &:hover {
Kite 8c766d
    background-color: @toolbutton-bg-color-hover;
Kite 8c766d
    border-color: @toolbutton-border-color-hover;
Kite 8c766d
    color: @toolbutton-text-color-hover;
Kite 8c766d
  }
Kite 8c766d
  &:pressed {
Kite 8c766d
    background-color: @toolbutton-bg-color-pressed;
Kite 8c766d
    border-color: @toolbutton-border-color-pressed;
Kite 8c766d
    color: @toolbutton-text-color-pressed;
Kite 8c766d
  }
Kite 8c766d
  &:checked {
Kite 8c766d
    background-color: @toolbutton-bg-color-checked;
Kite 8c766d
    border-color: @toolbutton-border-color-checked;
Kite 8c766d
    color: @toolbutton-text-color-checked;
Kite 8c766d
    &:hover {
Kite 8c766d
      background-color: @toolbutton-bg-color-checked-hover;
Kite 8c766d
      border-color: @toolbutton-border-color-checked-hover;
Kite 8c766d
    }
Kite 8c766d
  }
Kite 8c766d
  &:disabled {
Kite 8c766d
    color: @text-color-disabled;
Kite 521c84
    &:checked {
Kite 521c84
      background-color: @toolbutton-bg-color-disabled;
Kite 521c84
      border-color: @toolbutton-border-color-disabled;
Kite 521c84
    }
Kite 8c766d
  }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
// Flat Button
Kite 8c766d
// -----------------------------------------------------------------------------
Kite 521c84
// This is a flat style with no border and no margin, for use in tight areas.
Kite 8c766d

Kite 8c766d
.button-flat {
Kite 8c766d
  background-color: none;
Kite 8c766d
  border: 0;
Kite 8c766d
  border-radius: 0;
Kite 8c766d
  margin: 0;
Kite 8c766d
  &:hover {
Kite 8c766d
    background-color: @toolbutton-bg-color-hover;
Kite 8c766d
  }
Kite 8c766d
  &:pressed {
Kite 8c766d
    background-color: @accent;
Kite 8c766d
  }
Kite 8c766d
}