1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-25 14:30:46 +02:00

Remove underline hack for breadcrumbs

This commit is contained in:
Martijn Cuppens
2020-03-18 09:07:30 +01:00
committed by XhmikosR
parent 89d90d1f85
commit 910d481062

View File

@@ -17,17 +17,13 @@
padding-left: $breadcrumb-item-padding-x;
&::before {
display: inline-block; // Suppress underlining of the separator in modern browsers
display: inline-block; // Suppress underlining of the separator
padding-right: $breadcrumb-item-padding-x;
color: $breadcrumb-divider-color;
content: escape-svg($breadcrumb-divider);
}
}
+ .breadcrumb-item:hover::before {
text-decoration: none;
}
&.active {
color: $breadcrumb-active-color;
}