0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-13 01:08:58 +01:00
Bootstrap/docs/assets/less/anchor.less

25 lines
414 B
Plaintext
Raw Normal View History

2017-11-26 03:06:34 +01:00
/* stylelint-disable property-no-vendor-prefix */
2017-07-03 00:09:46 +02:00
.anchorjs-link {
color: inherit;
}
@media (max-width: 480px) {
.anchorjs-link {
display: none;
}
}
*:hover > .anchorjs-link {
opacity: .75;
-webkit-transition: color .16s linear;
2017-11-26 03:06:34 +01:00
-o-transition: color .16s linear;
transition: color .16s linear;
2017-07-03 00:09:46 +02:00
}
*:hover > .anchorjs-link:hover,
.anchorjs-link:focus {
text-decoration: none;
opacity: 1;
}