mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
54 lines
825 B
Text
54 lines
825 B
Text
|
|
.legend {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin-bottom: @baseLineHeight;
|
|
font-size: @baseFontSize * 1.5;
|
|
line-height: @baseLineHeight * 1.5;
|
|
color: @grayDark;
|
|
border: 0;
|
|
border-bottom: 1px solid @dropdownDividerTop;
|
|
}
|
|
|
|
.btn-small.btn-small-small {
|
|
font-size: 11px;
|
|
line-height: 11px;
|
|
}
|
|
|
|
.btn.btn-thin {
|
|
padding: 4px 9px;
|
|
}
|
|
|
|
.btn.btn-thin-2 {
|
|
padding: 4px 7px;
|
|
}
|
|
|
|
.alert a:not(.close) {
|
|
text-decoration: underline;
|
|
color: @warningText;
|
|
}
|
|
|
|
.alert.alert-info a:not(.close) {
|
|
color: @infoText;
|
|
}
|
|
|
|
.alert.alert-error a:not(.close) {
|
|
color: @errorText;
|
|
}
|
|
|
|
/* mobile and tablet */
|
|
@media screen and (max-width: 999px) {
|
|
.form-horizontal {
|
|
.control-group {
|
|
> label {
|
|
text-align: left;
|
|
}
|
|
|
|
// Move over all input controls and content
|
|
> *:not(label) {
|
|
margin-left: 20px;
|
|
}
|
|
}
|
|
}
|
|
}
|