-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
message for input error black label for all inputs 10 px spacing between label and input no padding for vertical form labels
- Loading branch information
1 parent
a31115b
commit 41fa777
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// | ||
// Orange forms | ||
// | ||
|
||
.form-group { | ||
|
||
&.row { | ||
.form-control-label { | ||
padding: .625rem; | ||
} | ||
} | ||
|
||
.form-control-label { | ||
padding: .625rem 0; | ||
} | ||
|
||
&.has-danger, | ||
&.has-warning, | ||
&.has-success { | ||
.form-control-label { | ||
color: #000; | ||
} | ||
} | ||
|
||
&.has-danger { | ||
.form-control-message { | ||
color: $brand-danger; | ||
padding: .625rem 0; | ||
display: inline-block; | ||
font-size: $font-size-sm; | ||
font-weight: bold; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters