﻿/*  x-editable-control.css

    
  */

/* This control is not visible by default. */
x-editable-control {
    display: none;
    margin-top: 7px;
}

/* Display this element when editing. */
x-editable-control[editing] {
    display: block;
}

x-editable-control button {
    display: inline-block;
    background-image: none;
    overflow: visible;
    cursor: pointer;

    padding: 1px 5px;
    margin-bottom: 0;
    margin-right: 7px;

    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1.5;

    border: 1px solid transparent;
    border-radius: 4px;

    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: button;
    
}

x-editable-control button.save {
    color: #fff;
    background-color: #88aab7;
    border-color: #2e6da4;
    cursor: default;
}

x-editable-control button.save[enabled] {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    cursor: pointer;
}

x-editable-control button.save[enabled]:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

x-editable-control button.cancel {
    /* white colored button */
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

x-editable-control button.cancel:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
}

x-editable-control[saving] {
    display: none;
}
 
@media (max-width: 767px) {
    x-editable-control button {
        font-size: 1.4em;
    }
}