mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
39 lines
809 B
SCSS
39 lines
809 B
SCSS
|
|
/******* INPUTS ***************************************************************/
|
|
input.input-button.hover {
|
|
color: $inputButtonHoverColor;
|
|
}
|
|
|
|
input.search {
|
|
padding-left: 25px;
|
|
background-image: url('#{$iconsPath}search.png');
|
|
background-repeat: no-repeat;
|
|
background-position: 3px center;
|
|
}
|
|
|
|
input, select, textarea {
|
|
margin: 2px;
|
|
padding: 2px;
|
|
*border: 1px solid $inputFallbackBorderColor;
|
|
font-family: verdana,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
}
|
|
|
|
input[type="radio"], input[type="checkbox"], .checkbox {
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
input.btn-mini {
|
|
margin: 0 2px;
|
|
height: 12px;
|
|
width: auto;
|
|
cursor: default;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.input-small {
|
|
height: 25px;
|
|
font-family: verdana,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 12px;
|
|
}
|