18 lines
455 B
CSS
18 lines
455 B
CSS
|
|
||
|
/* Remove the inner border and padding in Firefox. */
|
||
|
button::-moz-focus-inner,
|
||
|
[type="button"]::-moz-focus-inner,
|
||
|
[type="reset"]::-moz-focus-inner,
|
||
|
[type="submit"]::-moz-focus-inner {
|
||
|
border-style: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/* Restore the focus styles unset by the previous rule.*/
|
||
|
button:-moz-focusring,
|
||
|
[type="button"]:-moz-focusring,
|
||
|
[type="reset"]:-moz-focusring,
|
||
|
[type="submit"]:-moz-focusring {
|
||
|
outline: 1px dotted ButtonText;
|
||
|
}
|