Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dist/css/ratchet.css
Original file line number Diff line number Diff line change
Expand Up @@ -896,14 +896,15 @@ select {
}

.input-row {
height: 35px;
overflow: hidden;
border-bottom: 1px solid #ddd;
}

.input-row label {
float: left;
width: 35%;
padding: 10px 15px;
padding: 8px 15px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
line-height: 1.1;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/ratchet.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/dist/css/ratchet.css
Original file line number Diff line number Diff line change
Expand Up @@ -896,14 +896,15 @@ select {
}

.input-row {
height: 35px;
overflow: hidden;
border-bottom: 1px solid #ddd;
}

.input-row label {
float: left;
width: 35%;
padding: 10px 15px;
padding: 8px 15px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
line-height: 1.1;
}
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/ratchet.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion sass/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,15 @@ select {
// To use labels with input groups, wrap a label and an input in an .input-row
.input-row {
overflow: hidden;
height: 35px; // Matches the height of inputs.
border-bottom: $border-default;
}

// Labels get floated left with a set percentage width
.input-row label {
float: left;
width: 35%;
padding: 10px 15px;
padding: 8px 15px;
font-family: $font-family-default;
line-height: 1.1; // Put the text on the baseline.
}
Expand Down