mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
49 lines
773 B
Text
49 lines
773 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;
|
|
}
|
|
summary.legend {
|
|
display: list-item;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn.btn-thin {
|
|
padding: 4px 9px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|