This commit is contained in:
Chris Van 2011-12-15 00:42:26 -08:00
Родитель 28fe270bc1
Коммит f374a50cc4
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -191,15 +191,16 @@ button.bad, .button.developer, .button.scary { // Red
.button.selected,
.button.prominent:active,
.button.prominent.selected {
top: 2px;
&:before {
/* `top: 2px` creates a 2px "deadzone" making the link unclickable.
This effectively pushes the button down 2px. See bug 710284. */
This effectively fills the deadzone. See bug 710284. */
content: "";
display: block;
height: 2px;
position: absolute;
top: -2px;
left: 0;
position: absolute;
width: 100%;
}
}