Merge pull request #482 from twbs/#475

Remove border-bottom from the last input of an input-group.
This commit is contained in:
XhmikosR 2014-03-12 19:29:23 +02:00
Родитель 415867d239 cc46080f83
Коммит b1959a3d52
5 изменённых файлов: 13 добавлений и 2 удалений

4
dist/css/ratchet.css поставляемый
Просмотреть файл

@ -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 поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

4
docs/dist/css/ratchet.css поставляемый
Просмотреть файл

@ -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 поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

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