mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
71 lines
935 B
Text
71 lines
935 B
Text
@import-once "base/bootstrap/bootstrap";
|
|
|
|
.form-row {
|
|
margin-bottom: 10px;
|
|
|
|
.error {
|
|
.alert();
|
|
.alert-error();
|
|
|
|
display: none;
|
|
padding: 3px;
|
|
font-size: 8pt;
|
|
}
|
|
|
|
.alert {
|
|
padding: 3px;
|
|
font-size: 8pt;
|
|
}
|
|
}
|
|
|
|
.has-error {
|
|
label {
|
|
color: @red;
|
|
}
|
|
|
|
.error {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
label.strong {
|
|
font-size: 8pt;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"], input[type="password"], input[type="date"], textarea {
|
|
padding: 3px;
|
|
border: 1px solid;
|
|
border-color: #9c9c9c #9c9c9c #ccc #ccc;
|
|
}
|
|
|
|
input[type="text"], input[type="password"], input[type="date"], textarea, select {
|
|
.border-radius(0px);
|
|
.box-sizing(border-box);
|
|
|
|
display: block;
|
|
font-size: 12px;
|
|
width: 100%;
|
|
|
|
&:focus {
|
|
.box-shadow(none);
|
|
}
|
|
}
|
|
|
|
select {
|
|
height: auto;
|
|
line-height: normal;
|
|
padding: 0px;
|
|
}
|
|
|
|
label {
|
|
input[type="checkbox"] {
|
|
margin: 0px;
|
|
margin-top: -2px;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
height: 60px;
|
|
}
|