diff mbox series

[qemu-web,2/4] css: Improve the hover effect of the buttons

Message ID 20210616110720.880586-3-thuth@redhat.com
State New
Headers show
Series Improve the download information on the website | expand

Commit Message

Thomas Huth June 16, 2021, 11:07 a.m. UTC
The hover effect of buttons was hardly visible since the color did
not change much. Use a brighter color to make it clear that the
button can be pressed.

Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/1
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 assets/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/assets/css/style.css b/assets/css/style.css
index 6ee82c4..bed0bf4 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -304,7 +304,7 @@ 
 
 	.button:hover
 	{
-		background: #F01111;
+		background: #F68811;
 		text-decoration: none;
 	}