aa951801fe
- mise en commentaire des sauts de page print avant un h1 - correction d'anomalie sur les input (user-select: none) - correction d'erreur de compilation Sass
110 lines
1.8 KiB
Text
110 lines
1.8 KiB
Text
/* ----------------------------- */
|
|
/* ==forms */
|
|
/* ----------------------------- */
|
|
|
|
/* thanks to HTML5boilerplate,
|
|
* github.com/nathansmith/formalize and www.sitepen.com
|
|
*/
|
|
|
|
/* buttons */
|
|
.btn {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* forms items */
|
|
form,
|
|
fieldset {
|
|
border: none;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
select,
|
|
label,
|
|
.btn {
|
|
vertical-align: middle;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
optgroup,
|
|
select,
|
|
textarea {
|
|
color: @base-color;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
}
|
|
|
|
legend {
|
|
border: 0;
|
|
white-space: normal;
|
|
}
|
|
|
|
textarea {
|
|
min-height: 5em;
|
|
vertical-align: top;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
resize: vertical;
|
|
}
|
|
|
|
/* if select styling bugs on WebKit */
|
|
/* select { -webkit-appearance: none; } */
|
|
|
|
/* 'x' appears on right of search input when text is entered. This removes it */
|
|
input[type="search"]::-webkit-search-decoration,
|
|
input[type="search"]::-webkit-search-cancel-button,
|
|
input[type="search"]::-webkit-search-results-button,
|
|
input[type="search"]::-webkit-search-results-decoration {
|
|
display: none;
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
color: #777;
|
|
}
|
|
|
|
input:-moz-placeholder,
|
|
textarea:-moz-placeholder {
|
|
color: #777;
|
|
}
|
|
|
|
.btn:focus,
|
|
input[type="button"]:focus,
|
|
button:focus {
|
|
outline: 0;
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
/* unstyled forms */
|
|
.unstyled {
|
|
button&,
|
|
input[type="button"]&,
|
|
input[type="submit"]&,
|
|
input[type="reset"]& {
|
|
padding: 0;
|
|
border: none;
|
|
line-height: 1;
|
|
text-align: left;
|
|
background: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|