From 7e214cbab33282423f259b2da4d7653a3dc29ca9 Mon Sep 17 00:00:00 2001 From: "Chris.Watts90@outlook.com" Date: Tue, 29 May 2018 13:55:07 +0100 Subject: [PATCH] Fix cursor when hovering over any hyperlink. Made it a pointer (finger) #102 --- .../WindowsDataCenter/WindowsDataCenter/www/index.html | 2 +- .../WindowsDataCenter/WindowsDataCenter/www/spa.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/index.html b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/index.html index 3e2940d..c003136 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/index.html +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/index.html @@ -377,6 +377,6 @@ - + \ No newline at end of file diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/spa.css b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/spa.css index 1145424..9fba01a 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/spa.css +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/www/spa.css @@ -29,4 +29,8 @@ .footerBody { /* Margin bottom by footer height */ margin-bottom: 132px; +} +/*Make the cursor a pointer for all hyperlinks*/ +a:hover { + cursor: pointer; } \ No newline at end of file