mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
fixes #9596: proper dropup caret colors
This commit is contained in:
parent
209d3af301
commit
06e6da0918
3 changed files with 17 additions and 15 deletions
12
dist/css/bootstrap.css
vendored
12
dist/css/bootstrap.css
vendored
|
@ -3634,15 +3634,15 @@ button.close {
|
||||||
border-top-color: #fff;
|
border-top-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-default .dropup .caret {
|
.dropup .btn-default .caret {
|
||||||
border-bottom-color: #333333;
|
border-bottom-color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary .dropup .caret,
|
.dropup .btn-primary .caret,
|
||||||
.btn-success .dropup .caret,
|
.dropup .btn-success .caret,
|
||||||
.btn-warning .dropup .caret,
|
.dropup .btn-warning .caret,
|
||||||
.btn-danger .dropup .caret,
|
.dropup .btn-danger .caret,
|
||||||
.btn-info .dropup .caret {
|
.dropup .btn-info .caret {
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -18,17 +18,19 @@
|
||||||
border-top-color: #fff;
|
border-top-color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.dropup .caret {
|
.dropup {
|
||||||
.btn-default & {
|
& .btn-default .caret {
|
||||||
border-bottom-color: @btn-default-color;
|
border-bottom-color: @btn-default-color;
|
||||||
}
|
}
|
||||||
.btn-primary &,
|
& .btn-primary,
|
||||||
.btn-success &,
|
& .btn-success,
|
||||||
.btn-warning &,
|
& .btn-warning,
|
||||||
.btn-danger &,
|
& .btn-danger,
|
||||||
.btn-info & {
|
& .btn-info {
|
||||||
|
.caret {
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: #fff;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make the div behave like a button
|
// Make the div behave like a button
|
||||||
|
|
Loading…
Add table
Reference in a new issue