mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Some styling on it
This commit is contained in:
@@ -202,6 +202,10 @@ hide mdi-action-visibility mdi-action-visibility-off
|
|||||||
padding-top: 40px !important;
|
padding-top: 40px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#latest-commit a{
|
||||||
|
color: rgba(255,255,255,0.8);
|
||||||
|
}
|
||||||
|
|
||||||
/* INDEX PAGE */
|
/* INDEX PAGE */
|
||||||
|
|
||||||
#zicon{
|
#zicon{
|
||||||
|
|||||||
@@ -121,7 +121,12 @@ $(document).ready(function (){
|
|||||||
}).responseText;
|
}).responseText;
|
||||||
|
|
||||||
git_info = $.parseJSON(git_info);
|
git_info = $.parseJSON(git_info);
|
||||||
$("#latest-commit").html("Latest Commit: <br>" + git_info[0].commit.author.date.substring(0,10) + ": " + git_info[0].commit.author.name + "<br>" + git_info[0].sha.substring(0,10) + ": " + git_info[0].commit.message+"<br>");
|
$("#latest-commit").html("Latest Commit: <br>"
|
||||||
|
+ git_info[0].commit.author.date.substring(0,10)
|
||||||
|
+ ": " + git_info[0].commit.author.name
|
||||||
|
+ "<br><a href='"+git_info[0].html_url+"'>"
|
||||||
|
+ git_info[0].sha.substring(0,10) + "</a>: "
|
||||||
|
+ git_info[0].commit.message+"<br");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -135,8 +135,12 @@ $(document).ready(function()
|
|||||||
}).responseText;
|
}).responseText;
|
||||||
|
|
||||||
git_info = $.parseJSON(git_info);
|
git_info = $.parseJSON(git_info);
|
||||||
$("#latest-commit").html("Latest Commit: <br>" + git_info[0].commit.author.date.substring(0,10) + ": " + git_info[0].commit.author.name + "<br>" + git_info[0].sha.substring(0,10) + ": " + git_info[0].commit.message+"<br>");
|
$("#latest-commit").html("Latest Commit: <br>"
|
||||||
|
+ git_info[0].commit.author.date.substring(0,10)
|
||||||
|
+ ": " + git_info[0].commit.author.name
|
||||||
|
+ "<br><a href='"+git_info[0].html_url+"'>"
|
||||||
|
+ git_info[0].sha.substring(0,10) + "</a>: "
|
||||||
|
+ git_info[0].commit.message+"<br");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user