提交 f3b2f0d4 编写于 作者: J John Berberich

Apply form validation state colors to help blocks

上级 bd61a3b6
......@@ -33,6 +33,9 @@
border-color: @green;
box-shadow: none;
}
.help-block {
color: @green;
}
}
&.has-warning {
......@@ -43,6 +46,9 @@
border-color: @yellow;
box-shadow: none;
}
.help-block {
color: @yellow;
}
}
&.has-error {
......@@ -53,6 +59,9 @@
border-color: @red;
box-shadow: none;
}
.help-block {
color: @red;
}
}
}
......
......@@ -1260,6 +1260,9 @@ a:focus {
border-color: #00a65a;
box-shadow: none;
}
.form-group.has-success .help-block {
color: #00a65a;
}
.form-group.has-warning label {
color: #f39c12;
}
......@@ -1267,6 +1270,9 @@ a:focus {
border-color: #f39c12;
box-shadow: none;
}
.form-group.has-warning .help-block {
color: #f39c12;
}
.form-group.has-error label {
color: #dd4b39;
}
......@@ -1274,6 +1280,9 @@ a:focus {
border-color: #dd4b39;
box-shadow: none;
}
.form-group.has-error .help-block {
color: #dd4b39;
}
/* Input group */
.input-group .input-group-addon {
border-radius: 0;
......
此差异已折叠。
......@@ -746,16 +746,19 @@
<div class="form-group has-success">
<label class="control-label" for="inputSuccess"><i class="fa fa-check"></i> Input with success</label>
<input type="text" class="form-control" id="inputSuccess" placeholder="Enter ...">
<span class="help-block">Help block with success</span>
</div>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning"><i class="fa fa-bell-o"></i> Input with
warning</label>
<input type="text" class="form-control" id="inputWarning" placeholder="Enter ...">
<span class="help-block">Help block with warning</span>
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError"><i class="fa fa-times-circle-o"></i> Input with
error</label>
<input type="text" class="form-control" id="inputError" placeholder="Enter ...">
<span class="help-block">Help block with error</span>
</div>
<!-- checkbox -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册