Browse Source

Remove border-bottom from the last input of an input-group.

pull/482/head
XhmikosR 11 years ago
parent
commit
cc46080f83
  1. 4
      dist/css/ratchet.css
  2. 2
      dist/css/ratchet.min.css
  3. 4
      docs/dist/css/ratchet.css
  4. 2
      docs/dist/css/ratchet.min.css
  5. 3
      sass/forms.scss

4
dist/css/ratchet.css vendored

@ -896,6 +896,10 @@ select {
box-shadow: none;
}
.input-group input:last-child {
border-bottom: 0;
}
.input-row {
overflow: hidden;
border-bottom: 1px solid #ddd;

2
dist/css/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

4
docs/dist/css/ratchet.css vendored

@ -896,6 +896,10 @@ select {
box-shadow: none;
}
.input-group input:last-child {
border-bottom: 0;
}
.input-row {
overflow: hidden;
border-bottom: 1px solid #ddd;

2
docs/dist/css/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

3
sass/forms.scss

@ -85,6 +85,9 @@ select {
border-radius: 0;
@include box-shadow(none);
}
.input-group input:last-child {
border-bottom: 0;
}
// Input groups with labels
// --------------------------------------------------

Loading…
Cancel
Save