mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Fixes #12674
* The problem with #12674 is that it reassigns the same variable, but the color values were purposely different. * This uses Less's color functions to generate the proper darker colors. * Why darker colors? Because those CSS carets render lighter than their solid border counterparts. Consider it a design hack.
This commit is contained in:
parent
4973bfd5d7
commit
9427310a09
3 changed files with 4 additions and 4 deletions
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.css.map
vendored
2
docs/dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
|
@ -525,9 +525,9 @@
|
||||||
//** Popover outer arrow width
|
//** Popover outer arrow width
|
||||||
@popover-arrow-outer-width: (@popover-arrow-width + 1);
|
@popover-arrow-outer-width: (@popover-arrow-width + 1);
|
||||||
//** Popover outer arrow color
|
//** Popover outer arrow color
|
||||||
@popover-arrow-outer-color: rgba(0,0,0,.25);
|
@popover-arrow-outer-color: fadein(@popover-border-color, 5%);
|
||||||
//** Popover outer arrow fallback color
|
//** Popover outer arrow fallback color
|
||||||
@popover-arrow-outer-fallback-color: #999;
|
@popover-arrow-outer-fallback-color: darken(@popover-fallback-border-color, 20%);
|
||||||
|
|
||||||
|
|
||||||
//== Labels
|
//== Labels
|
||||||
|
|
Loading…
Reference in a new issue