diff options
| author | Suzy Mueller <suzmue@golang.org> | 2022-04-19 00:06:40 -0400 |
|---|---|---|
| committer | Suzy Mueller <suzmue@golang.org> | 2022-04-19 17:42:38 +0000 |
| commit | a7771c216c3644fb0629a54db706c941d5123532 (patch) | |
| tree | 2b8ea8dbe04dd4c3f455b12e410462f70b6ff708 /_content/css/styles.css | |
| parent | 39782d7cc00a757fe66d1ab168ac1203b75d512c (diff) | |
| download | go-x-website-a7771c216c3644fb0629a54db706c941d5123532.tar.xz | |
_content: fix colors for links in BackgroundQuotes
The colors for the link and the background color for the background
quotes are too similar, so the quotes do not appear. This change adds
style to the links in the background quotes so that they inherit the
colors.
Updates golang/go#52312
Change-Id: Ib7fa0b23ff194333f50c1346747ea06d25e09254
Reviewed-on: https://go-review.googlesource.com/c/website/+/400894
Run-TryBot: Suzy Mueller <suzmue@golang.org>
Reviewed-by: Nooras Saba <saba@golang.org>
Reviewed-by: Jamal Carvalho <jamal@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to '_content/css/styles.css')
| -rw-r--r-- | _content/css/styles.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/_content/css/styles.css b/_content/css/styles.css index 4e5bfeee..e6856c24 100644 --- a/_content/css/styles.css +++ b/_content/css/styles.css @@ -2888,6 +2888,9 @@ p.BackgroundQuote-body { margin-left: auto; margin-top: 1rem; } +a.BackgroundQuote-link { + color: inherit; +} .PullQuote-author { font-size: 0.875rem; } |
