

/* Filename: /var/www/allinn-connect/public/complains/less/0.base.less */

html, body {
	font-family: Verdana, sans-serif;
	font-size: 13px;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

*:focus {
    outline: none;
}


/* Filename: /var/www/allinn-connect/public/complains/less/1.color.less */

@input-color-border: #ccc;
@input-color-background: #fff;
@input-color-text: #555;
@input-color-fault-border: red;

@button-color-background: #337ab7;
@button-color-border: #2e6da4;

@button-not-promoted-color-background: #c1c1c1;
@button-not-promoted-color-border: #bfbfbf;
@button-not-promoted-color-text: #efeeee;

@tip-color-border: #ccc;
@tip-color-background: white;
@tip-color-outline: #ffb1b1;


/* Filename: /var/www/allinn-connect/public/complains/less/2.components.less */

.container {
    max-width: 1024px;
}
.hidden {
    display: none;
}

table {
    width: 100%;

    tr {
        padding: 2px;

        td {
            padding: 6px 0px;
            text-align: left;
            font-size: 13px;

            &.first {
                font-weight: bold;
                width: 270px;
                padding-right: 30px;
            }
        }
    }
}

input, select, textarea {
    padding-right: 5px;
    padding-left: 5px;
    margin: 0;
    width: 100%;
    height: 38px;
    font-size: 14px;
    border-style: solid;
    padding: 2px 2px 1px;
    vertical-align: left;
    color: @input-color-text;
    background-color: @input-color-background;
    background-image: none;
    border: 1px solid @input-color-border;
    border-radius: 4px;

    &.fault {
        border: 1px solid @input-color-fault-border;
    }
}

input[type=text], select, textarea {

    &:focus {
        border-color: @tip-color-outline;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px @tip-color-outline;
    }

}

input[type=checkbox] {
    height: 20px;
    width: 20px;
}

textarea {
    height: 160px;
}

button {
    color: #fff;
    background-color: @button-color-background;
    border-color: @button-color-border;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;

    &.not-promoted {
        background-color: @button-not-promoted-color-background;
        border-color: @button-not-promoted-color-border;
        color: @button-not-promoted-color-text;
    }
}

p {

    &.tip {
        border: 1px solid @tip-color-border;
        padding: 10px;
        border-radius: 3px;
        background-color: @tip-color-background;
    }

}
