2013-11-16 06:21:12 +08:00
|
|
|
|
|
|
|
.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;
|
2013-11-16 06:21:12 +08:00
|
|
|
color: @grayDark;
|
|
|
|
border: 0;
|
2021-07-21 02:29:47 +08:00
|
|
|
border-bottom: 1px solid @dropdownDividerTop;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
2022-01-29 07:20:31 +08:00
|
|
|
summary.legend {
|
|
|
|
display: list-item;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
|
|
|
.btn-small.btn-small-small {
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 11px;
|
|
|
|
}
|
|
|
|
|
2015-02-17 20:04:03 +08:00
|
|
|
.btn.btn-thin {
|
2015-02-21 22:08:09 +08:00
|
|
|
padding: 4px 9px;
|
2015-02-17 20:04:03 +08:00
|
|
|
}
|
|
|
|
|
2021-11-16 23:22:05 +08:00
|
|
|
.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
|
|
|
}
|
|
|
|
|
2021-11-16 23:22:05 +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
|
|
|
}
|
|
|
|
|
2021-11-16 23:22:05 +08:00
|
|
|
.alert.alert-error a:not(.close) {
|
2021-07-21 02:29:47 +08:00
|
|
|
color: @errorText;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
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 {
|
2021-11-16 23:22:05 +08:00
|
|
|
> label {
|
2016-05-01 09:07:10 +08:00
|
|
|
text-align: left;
|
|
|
|
}
|
2021-11-16 23:22:05 +08:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|