snappymail/dev/Styles/_BootstrapFix.less

55 lines
843 B
Text
Raw Normal View History

.legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: @baseLineHeight;
font-size: @baseFontSize * 1.5;
2021-11-15 19:16:02 +08:00
line-height: @baseLineHeight * 1.5;
color: @grayDark;
border: 0;
2021-07-21 02:29:47 +08:00
border-bottom: 1px solid @dropdownDividerTop;
}
2022-01-29 07:20:31 +08:00
summary.legend {
display: list-item;
cursor: pointer;
}
.btn-small.btn-small-small {
font-size: 11px;
line-height: 11px;
}
.btn.btn-thin {
2015-02-21 22:08:09 +08:00
padding: 4px 9px;
}
.alert a:not(.close) {
2013-11-19 06:37:57 +08:00
text-decoration: underline;
2021-07-21 02:29:47 +08:00
color: @warningText;
2014-10-24 01:59:21 +08:00
}
.alert.alert-info a:not(.close) {
2021-07-21 02:29:47 +08:00
color: @infoText;
2014-10-24 01:59:21 +08:00
}
.alert.alert-error a:not(.close) {
2021-07-21 02:29:47 +08:00
color: @errorText;
}
2021-02-08 04:10:05 +08:00
/* mobile and tablet */
@media screen and (max-width: 999px) {
2016-05-01 09:07:10 +08:00
.form-horizontal {
.control-group {
> label {
2016-05-01 09:07:10 +08:00
text-align: left;
}
// Move over all input controls and content
> *:not(label) {
margin-left: 20px;
2016-05-01 09:07:10 +08:00
}
}
}
2016-05-03 04:42:29 +08:00
}