fix(donate): other ways to donate btn styled as link (#37394)

* fix(donate): other ways to donate btn styled like link

* fix: minor style error
This commit is contained in:
Vivek Agrawal
2019-10-19 04:18:56 +05:30
committed by mrugesh
parent 54b45fb76e
commit c5b973a7b1

View File

@ -223,13 +223,18 @@ fieldset[disabled] .btn-primary.focus {
background-image: none; background-image: none;
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
} }
.btn-link { .btn-link,
.btn-link:focus,
.btn-link:active {
color: inherit; color: inherit;
border: none; border: none;
text-decoration: underline; text-decoration: underline;
background: transparent; background: transparent;
padding: 0;
outline: 0;
} }
.btn-link:hover { .btn-link:hover,
.btn-link:focus:active {
background: var(--tertiary-background); background: var(--tertiary-background);
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;