One of my pet peeves is no underlines on links in body text. I wish there was a way in customizer (on GetBootstrap.com) to just exclude components from getting underlined, but the rest is underlined. Or a prefix that can be targeted. In Bootstrap, if I am not touching the css, I'm usually doing the following in another style sheet.
Any better ideas?
/* ---- everything has an underline by default */
a {
text-decoration:underline;
}
/* ---- removing underlines on bootstrap components */
a.btn,
.nav a:not(:hover),
.navbar a:not(:hover),
.pagination a:not(:hover),
.pager a:not(:hover),
.list-group a:not(:hover),
.breadcrumb a:not(:hover) {
text-decoration:none;
}
.nav a:hover,
.navbar a:hover,
.list-group a:hover,
.breadcrumb a:hover {
text-decoration:underline;
}