﻿textarea {
    -moz-resize: verticale;
    -ms-resize: vertical;
    -o-resize: vertical;
    resize: vertical;
}
*::-ms-clear {
    display: none;
}

.input .text input[type='text'],
.b.form .item .f input[type='password'],
.b.form .item .f input[type='text'] {
    width: 100%;
    word-break: normal;
    /*Не удалять !*/
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    /*Не удалять !*/
    box-shadow: initial;
}
.b.form .item .f input[type='password'],
.b.form .item .f input[type='text'] {
    height: 34px;   
}
.b.form .item .f select {
    width: 100%;
}
.b.form .item .f textarea {
    width: 100%;
    height: 50px;
}

/* Input text with fixed-width button or anchor (.picker)

    Use markup

    <div class="input">
        <button class="btn">Найти</button>
        <!-- Or
        <a href="#" class="btn">Добавить</a>
        -->        
        <div class="text">
          <input type="text"/>
        </div>
    </div>

*/
.input{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 34px;
    display: inline-block;	
}
.input .text{
    position: absolute;
    right: 78px;
    left: 0;
    top: 0;
    bottom: 0;
}
.input button.picker + .text {
    right: 90px;
}

.input .text input{
    height: 100%;
}
.b.app .input .picker{
	position: absolute;
	right: 0;
	padding: 6px 0;
}

/****************************************/