2013-11-16 06:21:12 +08:00
|
|
|
|
2015-04-25 21:50:10 +08:00
|
|
|
label.inline, span.inline {
|
2014-05-05 04:36:48 +08:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
.legend {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: @baseLineHeight;
|
|
|
|
font-size: @baseFontSize * 1.5;
|
|
|
|
line-height: @baseLineHeight * 2;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.legend + .control-group {
|
2021-02-19 04:06:19 +08:00
|
|
|
margin-top: @baseLineHeight;
|
|
|
|
-webkit-margin-top-collapse: separate;
|
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
|
|
|
}
|
|
|
|
|
2016-05-03 04:42:29 +08:00
|
|
|
.btn.btn-thin-2 {
|
|
|
|
padding: 4px 7px;
|
|
|
|
}
|
|
|
|
|
2013-11-19 06:37:57 +08:00
|
|
|
.alert a {
|
|
|
|
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 {
|
2021-07-21 02:29:47 +08:00
|
|
|
color: @infoText;
|
2014-10-24 01:59:21 +08:00
|
|
|
}
|
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
.alert.alert-error a {
|
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 {
|
|
|
|
.control-label {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.controls {
|
2021-02-19 04:06:19 +08:00
|
|
|
margin-left: 10px;
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-03 04:42:29 +08:00
|
|
|
}
|
2021-02-08 04:10:05 +08:00
|
|
|
|
2016-05-03 04:42:29 +08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
2020-08-19 17:30:31 +08:00
|
|
|
}
|