From c5b973a7b1a47a45b70ce400a6710d0734a9d51c Mon Sep 17 00:00:00 2001 From: Vivek Agrawal Date: Sat, 19 Oct 2019 04:18:56 +0530 Subject: [PATCH] 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 --- client/src/components/layouts/global.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/src/components/layouts/global.css b/client/src/components/layouts/global.css index 1e167c9882..6d9bd6e807 100644 --- a/client/src/components/layouts/global.css +++ b/client/src/components/layouts/global.css @@ -223,13 +223,18 @@ fieldset[disabled] .btn-primary.focus { background-image: none; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3); } -.btn-link { +.btn-link, +.btn-link:focus, +.btn-link:active { color: inherit; border: none; text-decoration: underline; background: transparent; + padding: 0; + outline: 0; } -.btn-link:hover { +.btn-link:hover, +.btn-link:focus:active { background: var(--tertiary-background); text-decoration: none; color: inherit;