mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
27824ec586
- Remove IE10 background hack - Ability to change the pseudo element - Ability to change the z-index - Remove pointer events, just inherit this
15 lines
223 B
SCSS
15 lines
223 B
SCSS
//
|
|
// Stretched link
|
|
//
|
|
|
|
.stretched-link {
|
|
&::#{$stretched-link-pseudo-element} {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: $stretched-link-z-index;
|
|
content: "";
|
|
}
|
|
}
|