mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
83 lines
1.1 KiB
Text
83 lines
1.1 KiB
Text
|
|
label.inline, span.inline {
|
|
display: inline-block;
|
|
}
|
|
|
|
.legend {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin-bottom: @baseLineHeight;
|
|
font-size: @baseFontSize * 1.5;
|
|
line-height: @baseLineHeight * 2;
|
|
color: @grayDark;
|
|
border: 0;
|
|
border-bottom: 1px solid @dropdownDividerTop;
|
|
}
|
|
|
|
.legend + .control-group {
|
|
margin-top: @baseLineHeight;
|
|
-webkit-margin-top-collapse: separate;
|
|
}
|
|
|
|
.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 {
|
|
text-decoration: underline;
|
|
color: @warningText;
|
|
}
|
|
|
|
.alert.alert-info a {
|
|
color: @infoText;
|
|
}
|
|
|
|
.alert.alert-error a {
|
|
color: @errorText;
|
|
}
|
|
|
|
/* mobile and tablet */
|
|
@media screen and (max-width: 999px) {
|
|
.form-horizontal {
|
|
.control-group {
|
|
.control-label {
|
|
text-align: left;
|
|
}
|
|
.controls {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.close-input-wrp {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
input {
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 5px;
|
|
margin: 0 7px;
|
|
z-index: 100;
|
|
vertical-align: middle;
|
|
opacity: .4;
|
|
&:hover {
|
|
opacity: .6;
|
|
}
|
|
}
|
|
}
|