diff options
author | Muto <muto.lachen@tuta.io> | 2020-01-20 11:33:35 -0700 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2020-04-02 13:57:16 +1100 |
commit | 5252ef9f1741b3822be437888f063d6d5ea23ecb (patch) | |
tree | 63e7897a1abb56a2a445db90a3b384c696914450 /mediagoblin | |
parent | 1038aea822fdc8a84745bd44cc96ed97d66bbc28 (diff) | |
download | mediagoblin-5252ef9f1741b3822be437888f063d6d5ea23ecb.tar.lz mediagoblin-5252ef9f1741b3822be437888f063d6d5ea23ecb.tar.xz mediagoblin-5252ef9f1741b3822be437888f063d6d5ea23ecb.zip |
Add visual feedback on link hover
Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/static/css/base.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 11558fe5..af99c5f7 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -74,6 +74,10 @@ a { color: #86D4B1; } +a:hover { + text-decoration: underline +} + a.highlight { color: #fff; } @@ -278,12 +282,22 @@ footer { cursor: pointer; } +.button_action:hover, .button_form:hover { + text-decoration: none; + border-color: #252525 #2B2B2B #464646; +} + .button_action_highlight, .button_form { background-color: #86D4B1; border-color: #A2DEC3 #6CAA8E #5C9179; color: #283F35; } +.button_action_highlight:hover { + text-decoration: none; + border-color: #5C9179 #6CAA8E #A2DEC3; +} + .button_info { background-color: #508BB5; border-color: #5899C7 #437699 #427496; @@ -595,6 +609,9 @@ ul#action_to_resolve {list-style:none; margin-left:10px;} border-width: 1px 1px 2px; position: relative; } +.media_thumbnail:hover { + border-color: #0D0D0D #0D0D0D #378566 #0D0D0D; +} .media_thumbnail a { color: #eee; |