From feb6786626a9b4e7ec825971cb471b3664e9bf19 Mon Sep 17 00:00:00 2001
From: Muto <muto.lachen@tuta.io>
Date: Mon, 20 Jan 2020 11:33:35 -0700
Subject: [PATCH 3/3] Add visual feedback on link hover
---
mediagoblin/static/css/base.css | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css
index 7b5775cf..5ad3c95a 100644
a
|
b
|
a {
|
74 | 74 | color: #86D4B1; |
75 | 75 | } |
76 | 76 | |
| 77 | a:hover { |
| 78 | text-decoration: underline |
| 79 | } |
| 80 | |
77 | 81 | a.highlight { |
78 | 82 | color: #fff; |
79 | 83 | } |
… |
… |
footer {
|
280 | 284 | cursor: pointer; |
281 | 285 | } |
282 | 286 | |
| 287 | .button_action:hover, .button_form:hover { |
| 288 | text-decoration: none; |
| 289 | border-color: #252525 #2B2B2B #464646; |
| 290 | } |
| 291 | |
283 | 292 | .button_action_highlight, .button_form { |
284 | 293 | background-color: #86D4B1; |
285 | 294 | border-color: #A2DEC3 #6CAA8E #5C9179; |
286 | 295 | color: #283F35; |
287 | 296 | } |
288 | 297 | |
| 298 | .button_action_highlight:hover { |
| 299 | text-decoration: none; |
| 300 | border-color: #5C9179 #6CAA8E #A2DEC3; |
| 301 | } |
| 302 | |
289 | 303 | .button_info { |
290 | 304 | background-color: #508BB5; |
291 | 305 | border-color: #5899C7 #437699 #427496; |
… |
… |
ul#action_to_resolve {list-style:none; margin-left:10px;}
|
597 | 611 | border-width: 1px 1px 2px; |
598 | 612 | position: relative; |
599 | 613 | } |
| 614 | .media_thumbnail:hover { |
| 615 | border-color: #0D0D0D #0D0D0D #378566 #0D0D0D; |
| 616 | } |
600 | 617 | |
601 | 618 | .media_thumbnail a { |
602 | 619 | color: #eee; |